.dsh-header {
  position: relative;
  z-index: var(--z-nav);
}
.dsh-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.dsh-nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.dsh-nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dsh-nav-item {
  margin: 0;
}
.dsh-nav-cta {
  flex-shrink: 0;
}
.dsh-nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(10, 12, 17, 0.9);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.dsh-nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.dsh-nav-toggle-bar {
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-text);
  position: relative;
}
.dsh-nav-toggle-bar::before,
.dsh-nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-text);
}
.dsh-nav-toggle-bar::before {
  top: -5px;
}
.dsh-nav-toggle-bar::after {
  top: 5px;
}
.dsh-nav-menu.is-collapsed {
  display: flex;
}
@media (max-width: 991px) {
  .dsh-nav {
    width: auto;
    margin-left: auto;
  }
  .dsh-nav-toggle {
    display: inline-flex;
  }
  .dsh-nav-menu {
    position: fixed;
    inset: var(--nav-height) var(--space-md) auto var(--space-md);
    padding: var(--space-md);
    border-radius: 22px;
    background: rgba(5, 6, 8, 0.98);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - var(--nav-height) - 2 * var(--space-md));
    overflow-y: auto;
  }
  .dsh-nav-menu.is-collapsed {
    display: none;
  }
  .dsh-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .dsh-nav-item {
    width: 100%;
  }
  .dsh-nav-item .nav-link {
    width: 100%;
    justify-content: flex-start;
  }
  .dsh-nav-cta {
    margin-top: 0.4rem;
  }
}
@media (max-width: 479px) {
  .dsh-nav-menu {
    inset: var(--nav-height) var(--space-sm) auto var(--space-sm);
  }
}