@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
  --font-family: "Quicksand", sans-serif;
}

body {
  font-family: var(--font-family);
  overflow-x: clip; /* prevent horizontal scroll from layout-viewport expansion */
}

html::-webkit-scrollbar {
  display: none;
}

/* ── Gradient bar ─────────────────────────────────────────── */

#gradientbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9333ea, #ec4899, #eab308, #9333ea);
  background-size: 300% 100%;
  animation: gradientShift 8s linear infinite;
  z-index: 9999;
}

@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  100% { background-position: 100% 50%; }
}

/* ── Site navigation bar ────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: rgba(10, 11, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

html:not(.dark) .site-nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.07);
}

.avocloud-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.15em;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
  line-height: 1;
}

.avocloud-logo__slot {
  display: inline-grid;
  flex-shrink: 0;
}

.avocloud-logo__icon,
.avocloud-logo__av {
  grid-area: 1/1;
  display: flex;
  align-items: center;
}

.avocloud-logo__icon svg {
  height: 1.5rem;
  width: auto;
}

.avocloud-logo__av {
  font-weight: 800;
}

.avocloud-logo__rest-wrap {
  display: inline-flex;
  align-items: center;
}

.avocloud-logo__dot {
  opacity: 0.45;
}

/* ── Theme toggle ─────────────────────────────────────────── */

.theme-toggle {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(128, 128, 128, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.theme-toggle:hover {
  border-color: #9333ea;
  background: rgba(147, 51, 234, 0.1);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Navigation button group (floating) ──────────────────── */

.local-button-group {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0;
}

.local-button-group button {
  background: transparent;
  border: none;
  box-shadow: none;
}

.local-button-group button:first-child {
  cursor: default;
  pointer-events: none;
}

.local-button-group hr {
  margin: 0;
}

.local-button-group .user-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
}

.local-button-group .user-label__welcome {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  line-height: 1;
}

.local-button-group .user-label__name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Section label ────────────────────────────────────────── */

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(.5 0 0);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #9333ea, #ec4899);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Lucide SVG icons ─────────────────────────────────────── */

.lucide {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── Card variants ────────────────────────────────────────── */

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-featured {
  border-top: 2px solid #9333ea;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.07) 0%, transparent 60%);
}

/* ── Typography helpers ───────────────────────────────────── */

.text-muted {
  color: oklch(.5 0 0);
}

.accent-link {
  color: #9333ea;
  text-decoration: none;
  transition: color 0.2s;
}

.accent-link:hover {
  color: #ec4899;
  text-decoration: underline;
}

h2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Hero (full-screen, for standalone pages) ─────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Page header (compact, for dashboard pages) ───────────── */

.page-header {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

/* ── Dashboard sticky section nav ────────────────────────── */

.dash-nav {
  position: sticky;
  top: 56px;           /* just below the site-nav */
  z-index: 500;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  background: rgba(10, 11, 11, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(128, 128, 128, 0.1);
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  /* bleed to container edges */
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
}

html:not(.dark) .dash-nav {
  background: rgba(255, 255, 255, 0.92);
}

.dash-nav::-webkit-scrollbar { display: none; }

.dash-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: oklch(.5 0 0);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.dash-nav-item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.dash-nav-item:hover { color: #9333ea; }

.dash-nav-item.active {
  color: #9333ea;
  border-bottom-color: #9333ea;
}

/* offset anchor scroll targets so they don't hide under the sticky nav */
.dash-section {
  scroll-margin-top: 5.5rem;
}

/* ── Scroll indicator ─────────────────────────────────────── */

.scroll-indicator {
  margin-top: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.5;
  transition: opacity 0.2s;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40%  { transform: translateY(-10px); }
  60%  { transform: translateY(-5px); }
}

/* ── Feature adoption badge ───────────────────────────────── */

.adoption-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: rgba(147, 51, 234, 0.15);
  color: rgb(192, 132, 252);
  border: 1px solid rgba(147, 51, 234, 0.25);
  white-space: nowrap;
  pointer-events: none;
}

html:not(.dark) .adoption-badge {
  background-color: rgba(147, 51, 234, 0.1);
  color: rgb(109, 40, 217);
  border-color: rgba(147, 51, 234, 0.2);
}

/* ── Highlight badges ─────────────────────────────────────── */

.highlight-purple {
  background-color: rgba(147, 51, 234, 0.2);
  padding: 2px 8px;
  color: rgb(216, 180, 254);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.highlight-purple:hover {
  background-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-2px);
  cursor: pointer;
}

.highlight-purple:active {
  background-color: rgba(147, 51, 234, 0.6);
}

.highlight-yellow {
  background-color: rgba(234, 179, 8, 0.2);
  padding: 2px 8px;
  color: rgb(253, 224, 71);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.highlight-yellow:hover {
  background-color: rgba(234, 179, 8, 0.4);
  transform: translateY(-2px);
}

html:not(.dark) .highlight-yellow {
  color: rgb(133, 77, 14);
  background-color: rgba(234, 179, 8, 0.15);
}

html:not(.dark) .highlight-purple {
  color: rgb(88, 28, 135);
  background-color: rgba(147, 51, 234, 0.15);
}

/* ── Radio / option label ────────────────────────────────── */

.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.15s;
}

.radio-label:hover {
  background: rgba(128, 128, 128, 0.1);
}

/* ── Site footer ──────────────────────────────────────────── */

.site-footer {
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem 0;
  color: oklch(.5 0 0);
  border-top: 1px solid rgba(128, 128, 128, 0.15);
  margin-top: 4rem;
}

/* ── Popup / modal overlay ────────────────────────────────── */

.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  padding: 2rem;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.popup-inner {
  max-width: 520px;
  width: 100%;
  margin: auto;
}

.popup.fade-out {
  animation: fadeOut 1s forwards;
}

/* ── Misc ─────────────────────────────────────────────────── */

main {
  position: relative;
  z-index: 2;
}

.hidden {
  display: none !important;
}

@keyframes fadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.container.fade-in {
  animation: fadeIn 1s forwards;
}

/* ── Tag input ────────────────────────────────────────────── */

.tag-input-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.375rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(147, 51, 234, 0.15);
  color: rgb(216, 180, 254);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.8rem;
}

.remove-tag {
  cursor: pointer;
  opacity: 0.7;
  margin-left: 2px;
}

.remove-tag:hover {
  opacity: 1;
}

/* ── Channel permission feedback ─────────────────────────── */

.channel-perm-feedback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  margin-top: 0.375rem;
  background: rgba(0, 200, 83, 0.1);
  color: #00C853;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.channel-perm-feedback.error {
  background: rgba(255, 82, 82, 0.1);
  color: #FF5252;
  border-color: rgba(255, 82, 82, 0.3);
}

/* ── General: btn-link text wrapping ─────────────────────── */

/* buttons default to white-space: nowrap -  override so long link text wraps */
.btn-link {
  white-space: normal;
  word-break: break-word;
  text-align: left;
}

/* fieldsets default to min-width: min-content which breaks CSS Grid sizing */
fieldset {
  min-width: 0;
}

/* ── Hamburger nav toggle (mobile only) ──────────────────── */

.dash-nav-toggle {
  display: none; /* hidden on desktop */
}

/* ── Mobile overrides ─────────────────────────────────────── */

@media (max-width: 639px) {

  /* ── Hamburger toggle: sits inside site-nav between logo and theme toggle ── */
  .dash-nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: inherit;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
    justify-content: center;
    margin: 0 0.5rem;
    max-width: 45vw;
  }

  .dash-nav-toggle svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .dash-nav-toggle__chevron {
    opacity: 0.5;
    transition: transform 0.2s;
  }

  .dash-nav-toggle[aria-expanded="true"] .dash-nav-toggle__chevron {
    transform: rotate(180deg);
  }

  /* ── Dash nav: full-screen overlay on mobile ── */
  .dash-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9500;
    flex-direction: column;
    flex-wrap: nowrap;
    background: var(--color-bg, #0f0f0f);
    padding: 5rem 1rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    gap: 0.15rem;
    margin: 0;
    border-top: none;
    border-bottom: none;
    margin-bottom: 0;
    display: none;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  html:not(.dark) .dash-nav {
    background: #fff;
  }

  .dash-nav.open {
    display: flex;
  }

  /* Nav items: full-width rows in the overlay */
  .dash-nav-item {
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    border-bottom: none !important;
    font-size: 0.9rem;
    width: 100%;
  }

  .dash-nav-item svg {
    width: 1rem;
    height: 1rem;
  }

  .dash-nav-item:hover,
  .dash-nav-item.active {
    background: rgba(147, 51, 234, 0.1);
  }

  /* Nav group labels: section dividers inside the mobile overlay */
  .dash-nav-group-label {
    padding: 0.9rem 1rem 0.2rem;
    border-left: none;
    margin-left: 0;
    border-top: 1px solid rgba(128, 128, 128, 0.12);
    margin-top: 0.4rem;
    width: 100%;
    font-size: 0.6rem;
    flex-direction: row;
    align-items: center;
  }

  /* Push main content below the toggle pill */
  main {
    padding-top: 3.5rem;
  }

  /* Increase scroll-margin so anchor links land below the toggle pill */
  .dash-section {
    scroll-margin-top: 7rem;
  }

  /* ── Button group: compact icon-only pill at bottom center ── */
  .local-button-group {
    bottom: 1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row !important;
    align-items: center;
    background: var(--color-card, rgba(28, 28, 28, 0.95));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(128, 128, 128, 0.25);
    border-radius: 3rem;
    padding: 0.3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    gap: 0.15rem;
  }

  html:not(.dark) .local-button-group {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  }

  /* Hide the HR divider -  not needed in horizontal pill layout */
  .local-button-group hr {
    display: none;
  }

  /* Shrink all buttons to icon-only square pills, centered */
  .local-button-group button {
    width: 2.75rem !important;
    height: 2.75rem !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    line-height: 0;
    min-width: 0 !important;
    flex: 0 0 2.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    overflow: hidden;
  }

  /* Icon sizes inside the shrunken buttons */
  .local-button-group button svg {
    width: 1.15rem !important;
    height: 1.15rem !important;
    flex-shrink: 0;
  }

  .local-button-group button img {
    width: 1.75rem !important;
    height: 1.75rem !important;
    flex-shrink: 0;
    border-radius: 50%;
  }
}

/* ── Dashboard nav group labels ─────────────────────────────── */

.dash-nav-group-label {
  display: inline-flex;
  align-items: flex-end;
  padding: 0.5rem 0.5rem 0.3rem 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(.38 0 0);
  white-space: nowrap;
  border-left: 1px solid rgba(128, 128, 128, 0.2);
  margin-left: 0.2rem;
  line-height: 1;
  align-self: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
}

/* ── Dashboard category headers in main content ─────────────── */

.dash-category-header {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(.45 0 0);
  padding: 2rem 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(128, 128, 128, 0.1);
  margin-top: 0.5rem;
}

.dash-category-header::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #9333ea, #ec4899);
  border-radius: 2px;
  flex-shrink: 0;
}

.dash-category-header:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* ── Avocloud logo animation ────────────────────────────────── */

.avo-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

/* Icon + AV text share same grid cell */
.avo-icon {
  display: inline-grid;
  flex-shrink: 0;
  transition: opacity .32s ease,
              transform .32s cubic-bezier(.77,0,.18,1);
}
.avo-icon > * { grid-area: 1/1; display: flex; align-items: center; }

.avo-av {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .32s ease,
              transform .32s cubic-bezier(.77,0,.18,1);
}

.avo-text-wrap {
  overflow: hidden;
  max-width: 0;
  display: flex;
  align-items: baseline;
  transition: max-width .4s cubic-bezier(.77,0,.18,1);
}

.avo-text {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: transform .4s cubic-bezier(.77,0,.18,1),
              opacity .3s ease .05s;
}

.avo-dot { opacity: .55; }

.avo-path {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

/* ── Desktop sidebar (≥ 900px) ───────────────────────────────── */

@media (min-width: 900px) {

  /* Sidebar: fixed left panel */
  .dash-nav {
    position: fixed;
    left: 0;
    top: 56px;
    bottom: 0;
    width: 220px;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    margin: 0;
    padding: 0.5rem 0 195px; /* bottom padding leaves room for button group */
    border-right: 1px solid rgba(128, 128, 128, 0.1);
    border-top: none;
    border-bottom: none;
    margin-bottom: 0;
  }

  html:not(.dark) .dash-nav {
    border-right-color: rgba(0, 0, 0, 0.07);
  }

  /* Nav items: left-border indicator instead of bottom-border */
  .dash-nav-item {
    width: 100%;
    border-bottom: none;
    border-left: 2px solid transparent;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    border-radius: 0;
    white-space: nowrap;
  }

  .dash-nav-item svg {
    width: 14px;
    height: 14px;
  }

  .dash-nav-item:hover {
    color: #9333ea;
    background: rgba(147, 51, 234, 0.07);
  }

  .dash-nav-item.active {
    border-left-color: #9333ea;
    border-bottom-color: transparent;
    background: rgba(147, 51, 234, 0.08);
    color: #9333ea;
  }

  /* Group labels: horizontal dividers in sidebar */
  .dash-nav-group-label {
    flex-direction: row;
    align-items: center;
    border-left: none;
    margin-left: 0;
    align-self: auto;
    padding: 1rem 1rem 0.3rem;
    width: 100%;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
    margin-top: 0.35rem;
    font-size: 0.58rem;
    justify-content: flex-start;
  }

  /* Button group: pinned at the bottom of the sidebar */
  .local-button-group {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 220px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
    border-right: 1px solid rgba(128, 128, 128, 0.1);
    background: rgba(10, 11, 11, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.35rem 0;
    gap: 0;
    box-shadow: none;
    transform: none;
  }

  html:not(.dark) .local-button-group {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
  }

  .local-button-group hr {
    display: block;
    margin: 0.2rem 0.75rem;
  }

  /* Restore full-width buttons with text + icon */
  .local-button-group button {
    width: 100%;
    height: auto;
    padding: 0.55rem 1rem;
    border-radius: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    flex: none;
    justify-content: flex-start;
    gap: 0.5rem;
    overflow: visible;
    border: none;
    background: transparent;
    min-width: 0;
  }

  .local-button-group button:hover {
    background: rgba(147, 51, 234, 0.07);
    color: #9333ea;
  }

  .local-button-group button:first-child:hover {
    background: transparent;
    color: inherit;
  }

  .local-button-group button svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .local-button-group button img {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    border-radius: 50%;
  }

  /* Shift page content right so mx-auto centers within the remaining space */
  body {
    padding-left: 220px;
  }

  /* Hamburger toggle stays hidden on desktop */
  .dash-nav-toggle {
    display: none;
  }
}
