.land-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .land-nav {
  background: rgba(10, 18, 33, 0.82);
}

.land-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.land-logo {
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 130;
}

.land-nav-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0;
}

.nav-links a {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text2);
  text-decoration: none;
  transition: color .15s ease, opacity .15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.land-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.nav-login-btn,
.nav-cta-btn {
  min-height: 40px;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 700;
}

.nav-cta-btn {
  box-shadow: 0 8px 20px rgba(24, 95, 165, 0.16);
}

/* ── BURGER ─────────────────────────────────────────────── */
.land-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  color: var(--text2);
  cursor: pointer;
  position: relative;
  z-index: 130;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.land-mobile-controls {
  display: none;
  align-items: center;
  gap: 10px;
  justify-self: end;
  position: relative;
  z-index: 130;
}

.land-mobile-header-theme {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.humburger {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.humburger .burger {
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: 0.35s ease;
  border-radius: 999px;
}

.humburger .burger::before,
.humburger .burger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: 0.35s ease;
  border-radius: 999px;
}

.humburger .burger::before {
  top: -7px;
}

.humburger .burger::after {
  top: 7px;
}

.humburger.active .burger {
  background: transparent;
}

.humburger.active .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.humburger.active .burger::after {
  top: 0;
  transform: rotate(135deg);
}

/* ── MOBILE MENU OVERLAY ────────────────────────────────── */
.land-mobile-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 125;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;
  padding: 0 16px 16px;
}

.land-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.land-mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  z-index: -1;
}

[data-theme="dark"] .land-mobile-menu::before {
  background: rgba(10,18,33,.96);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.land-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 10px;
}

.land-mobile-menu__links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  padding: 0 12px;
}

.land-mobile-menu__links a:hover {
  background: var(--surface);
}

.land-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 4px;
}

.land-mobile-login {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}

.land-mobile-cta {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

/* ── BREAKPOINTS ────────────────────────────────────────── */
@media (max-width: 900px) {
  .land-nav-center,
  .land-nav-actions {
    display: none;
  }

  .land-mobile-controls {
    display: inline-flex;
  }

  .land-burger {
    display: inline-flex;
  }

  .land-nav-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 901px) {
  .land-mobile-menu {
    display: none !important;
  }
}