/* Globwalk — brand board: deep navy · blue → cyan → lime */

:root {
  --bg: #050A18;
  --bg-elevated: #0A1228;
  --bg-card: rgba(10, 18, 40, 0.78);
  --text: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --blue: #2563EB;
  --cyan: #22D3EE;
  --cyan-soft: #67E8F9;
  --lime: #A3E635;
  --lime-soft: #BEF264;
  --grad: linear-gradient(135deg, #1D4ED8 0%, #06B6D4 42%, #22D3EE 70%, #A3E635 100%);
  --grad-text: linear-gradient(90deg, #22D3EE 0%, #67E8F9 45%, #A3E635 100%);
  --grad-walk: linear-gradient(90deg, #06B6D4 0%, #22D3EE 40%, #84CC16 100%);
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(34, 211, 238, 0.32);
  --glass: rgba(10, 18, 40, 0.6);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --glow: 0 0 48px rgba(34, 211, 238, 0.22), 0 0 80px rgba(163, 230, 53, 0.08);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --max: 1180px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(34, 211, 238, 0.35);
  color: #fff;
}

/* Ambient space */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 72% 0%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 40% at 8% 78%, rgba(34, 211, 238, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 30% at 85% 70%, rgba(163, 230, 53, 0.06), transparent 50%),
    #050A18;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.ambient-orb--1 {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -80px;
  background: radial-gradient(circle, #2563EB 0%, transparent 70%);
  animation: float 22s ease-in-out infinite;
}

.ambient-orb--2 {
  width: 420px;
  height: 420px;
  bottom: 5%;
  left: -120px;
  background: radial-gradient(circle, #22D3EE 0%, transparent 70%);
  animation: float 28s ease-in-out infinite reverse;
}

.ambient-orb--3 {
  width: 340px;
  height: 340px;
  bottom: 18%;
  right: 8%;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.55) 0%, transparent 70%);
  animation: float 26s ease-in-out infinite;
  opacity: 0.28;
}

.globe-wire {
  position: absolute;
  top: 45%;
  left: 55%;
  width: 720px;
  height: 720px;
  margin: -360px 0 0 -360px;
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  animation: globeSpin 140s linear infinite;
}

.globe-wire::before,
.globe-wire::after {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(59, 130, 246, 0.05);
  border-radius: 50%;
}

.globe-wire::after { inset: 34%; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -18px); }
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(5, 10, 24, 0.78);
  backdrop-filter: saturate(160%) blur(22px);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.nav__mark {
  width: 42px;
  height: 42px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.45)) drop-shadow(0 0 24px rgba(163, 230, 53, 0.18));
}

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__wordmark {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1;
  color: #fff;
}

.nav__wordmark .wm-walk {
  background: var(--grad-walk);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav__tagline::before,
.nav__tagline::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  border-radius: 1px;
}

.nav__tagline::before {
  background: linear-gradient(90deg, transparent, #2563EB);
}

.nav__tagline::after {
  background: linear-gradient(90deg, #A3E635, transparent);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--cyan); }

.nav__end {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__login {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 980px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.nav__login:hover {
  color: var(--text);
  background: rgba(148, 163, 184, 0.08);
}

.nav__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--grad);
  color: #04101f;
  text-decoration: none;
  border-radius: 980px;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.28), 0 0 40px rgba(163, 230, 53, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta--btn {
  appearance: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.2;
}

.nav__cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.4), 0 0 48px rgba(163, 230, 53, 0.2);
}

.nav__session {
  position: relative;
}

.nav__user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 4px 12px 4px 4px;
  border: 1px solid var(--border);
  border-radius: 980px;
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav__user:hover,
.nav__user[aria-expanded='true'] {
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 0.95);
}

.nav__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #04101f;
  font-size: 0.75rem;
  font-weight: 700;
}

.nav__user-name {
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 6px;
  background: rgba(12, 18, 32, 0.92);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.nav__user-item {
  width: 100%;
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: start;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.nav__user-item:hover {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
}

/* Auth modal — Clerk / Stripe style */
body.auth-open {
  overflow: hidden;
}

.auth {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth[hidden] {
  display: none !important;
}

.auth__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth__dialog {
  position: relative;
  width: min(100%, 420px);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  padding: 28px 28px 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(120% 80% at 10% -20%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(90% 70% at 100% 0%, rgba(163, 230, 53, 0.12), transparent 50%),
    rgba(10, 16, 32, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  animation: auth-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes auth-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.auth__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.auth__close svg { width: 18px; height: 18px; }

.auth__close:hover {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text);
}

.auth__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.auth__mark {
  width: 32px;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.4));
}

.auth__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.auth__lead {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 22px;
}

.auth__social {
  display: grid;
  gap: 10px;
}

.auth__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.auth__social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(34, 211, 238, 0.35);
}

.auth__social-btn.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.auth__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth__divider::before,
.auth__divider::after {
  content: '';
  height: 1px;
  background: rgba(148, 163, 184, 0.18);
}

.auth__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border);
}

.auth__tab {
  appearance: none;
  border: none;
  border-radius: 9px;
  min-height: 36px;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.auth__tab.is-active {
  background: rgba(34, 211, 238, 0.12);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.25);
}

.auth__form {
  display: grid;
  gap: 8px;
}

.auth__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.auth__phone {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px;
}

.auth__phone.is-shake,
.auth__input.is-shake {
  animation: auth-shake 0.4s ease;
}

@keyframes auth-shake {
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
}

.auth__dial,
.auth__input {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(5, 10, 24, 0.65);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth__dial {
  padding-right: 8px;
  cursor: pointer;
}

.auth__input--block { width: 100%; }

.auth__input--otp {
  width: 100%;
  text-align: center;
  letter-spacing: 0.35em;
  font-weight: 700;
  font-size: 1.25rem;
}

.auth__dial:focus,
.auth__input:focus {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.auth__submit {
  appearance: none;
  border: none;
  margin-top: 8px;
  min-height: 48px;
  border-radius: 12px;
  background: var(--grad);
  color: #04101f;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.22);
  transition: transform 0.15s, box-shadow 0.2s;
}

.auth__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
}

.auth__otp-hint {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.auth__back {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--cyan);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  padding: 0;
}

.auth__back:hover { color: var(--lime-soft); }

.auth__switch {
  margin-top: 18px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.auth__switch-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--cyan);
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0 0 0 6px;
}

.auth__switch-btn:hover { color: var(--lime-soft); }

.auth__legal {
  margin-top: 14px;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.auth__legal a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth__note {
  margin-top: 10px;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(148, 163, 184, 0.55);
}

/* Language — Apple/Google style picker */
.lang { position: relative; }

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--border);
  border-radius: 980px;
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.lang__btn:hover,
.lang__btn[aria-expanded='true'] {
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 0.95);
}

.lang__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang__flag--btn {
  font-size: 1rem;
}

.lang__current {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lang__chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  max-height: min(70vh, 440px);
  overflow-y: auto;
  padding: 6px;
  background: rgba(12, 18, 32, 0.92);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

html[dir='rtl'] .lang__menu {
  right: auto;
  left: 0;
}

.lang__option {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  text-align: start;
  cursor: pointer;
  transition: background 0.15s;
}

.lang__option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lang__option.is-active,
.lang__option[aria-selected='true'] {
  background: rgba(34, 211, 238, 0.12);
}

.lang__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.lang__name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
}

.lang__region {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.3;
}

.lang__check {
  width: 16px;
  height: 16px;
  opacity: 0;
  background: no-repeat center / 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5 6.5 11.5 12.5 4.5' stroke='%2322D3EE' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lang__option.is-active .lang__check,
.lang__option[aria-selected='true'] .lang__check {
  opacity: 1;
}

/* Type */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 980px;
  transition: all 0.25s ease;
}

.btn--primary {
  background: var(--grad);
  color: #04101f;
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.3), 0 0 48px rgba(163, 230, 53, 0.12);
}

.btn--primary:hover {
  box-shadow: 0 0 48px rgba(34, 211, 238, 0.45), 0 0 64px rgba(163, 230, 53, 0.18);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--cyan-soft);
  border: 1px solid var(--border-strong);
  margin-inline-start: 12px;
  background: rgba(15, 23, 42, 0.4);
}

.btn--ghost:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: var(--cyan);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 72px) 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero__sub {
  margin-top: 22px;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.55;
}

.hero__actions { margin-top: 36px; }

.hero__stage {
  position: relative;
  aspect-ratio: 1;
  max-width: 540px;
  margin: 0 auto;
}

.spatial-layer {
  position: absolute;
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.spatial-layer--map {
  inset: 4% 8% 48% 4%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), transparent 65%);
  border: 1px solid rgba(34, 211, 238, 0.12);
  animation: layerFloat 8s ease-in-out infinite;
}

.map-svg { width: 100%; height: 100%; padding: 20px; }

.spatial-layer--mountains {
  inset: 34% 4% 24% 14%;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.08));
  clip-path: polygon(0 100%, 25% 40%, 50% 70%, 75% 30%, 100% 60%, 100% 100%);
  animation: layerFloat 10s ease-in-out infinite 1s;
}

.spatial-layer--city {
  inset: 18% 14% 52% 24%;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 8px,
    rgba(34, 211, 238, 0.05) 8px, rgba(34, 211, 238, 0.05) 9px
  );
  animation: layerFloat 12s ease-in-out infinite 0.5s;
}

.spatial-layer--ocean {
  inset: 56% 6% 6% 6%;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.14), rgba(59, 130, 246, 0.04));
  border-radius: 50% 50% 20% 20% / 30% 30% 70% 70%;
  animation: layerFloat 9s ease-in-out infinite 2s;
}

.spatial-layer--monument {
  inset: 38% 34% 34% 40%;
  border-left: 2px solid rgba(34, 211, 238, 0.18);
  border-right: 2px solid rgba(34, 211, 238, 0.18);
  opacity: 0.5;
}

@keyframes layerFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

.product-hero {
  position: absolute;
  inset: 18% 8% 18% 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-hero__glow {
  position: absolute;
  width: 90%;
  height: 70%;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(ellipse at 70% 55%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(ellipse at 85% 60%, rgba(163, 230, 53, 0.15), transparent 55%);
  filter: blur(36px);
}

.headset {
  position: relative;
  width: min(100%, 360px);
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(34, 211, 238, 0.15));
  animation: glassesHover 6s ease-in-out infinite;
}

@keyframes glassesHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.glasses-caption {
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hud {
  position: absolute;
  padding: 10px 14px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--glow);
  font-size: 0.75rem;
  z-index: 3;
  animation: hudPulse 4s ease-in-out infinite;
}

.hud span { display: block; font-weight: 600; color: var(--text); }
.hud small { color: var(--cyan); font-size: 0.625rem; letter-spacing: 0.04em; }

.hud--1 { top: 6%; right: 0; }
.hud--2 { top: 40%; left: -4%; animation-delay: 1.2s; }
.hud--3 { bottom: 10%; right: 6%; animation-delay: 2.4s; }

@keyframes hudPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}

/* Pill features under hero */
.feature-strip {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: -40px auto 0;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-pill:hover {
  border-color: var(--border-strong);
  box-shadow: var(--glow);
}

.feature-pill__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  box-shadow: inset 0 0 20px rgba(34, 211, 238, 0.12);
  flex-shrink: 0;
}

.feature-pill__icon svg { width: 24px; height: 24px; }

.feature-pill strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-pill span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 24px;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__lead {
  margin-top: 16px;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Featured destination showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, 28vh);
  gap: 14px;
}

.showcase-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  min-height: 220px;
  background: #071020;
  box-shadow: var(--shadow);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s;
}

.showcase-card--wide {
  grid-column: span 2;
}

.showcase-card--tall {
  grid-row: span 2;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.showcase-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.showcase-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
  will-change: transform;
}

.showcase-card:hover .showcase-card__img,
.showcase-card:focus-visible .showcase-card__img {
  transform: scale(1.14);
}

.showcase-card__sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 24, 0.08) 0%, rgba(5, 10, 24, 0.15) 40%, rgba(5, 10, 24, 0.88) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(34, 211, 238, 0.12), transparent 55%);
  pointer-events: none;
}

.showcase-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px 18px 16px;
}

.showcase-card__place {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  margin-bottom: 6px;
}

.showcase-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.showcase-card--wide .showcase-card__title,
.showcase-card--tall .showcase-card__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.showcase-card__sub {
  margin-top: 6px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 36ch;
}

/* Destinations */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s;
}

.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 18, 0.85) 100%);
}

.dest-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-strong);
}

.dest-card__glass {
  position: absolute;
  inset: auto 10px 10px 10px;
  padding: 16px;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 14px;
  z-index: 1;
}

.dest-card__glass h3 {
  font-size: 0.9375rem;
  font-weight: 600;
}

.dest-card__glass p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Region explorer */
.explorer {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}

.explorer__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.explorer__step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s;
}

.explorer__step.is-active {
  color: var(--text-primary);
  background: rgba(34, 211, 238, 0.08);
}

.explorer__step.is-done {
  color: var(--cyan);
}

.explorer__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.explorer__step.is-active .explorer__step-num,
.explorer__step.is-done .explorer__step-num {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
}

.explorer__step-line {
  width: 32px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.explorer__crumb {
  text-align: center;
  font-size: 0.875rem;
  color: var(--cyan);
  margin-bottom: 28px;
  min-height: 1.25em;
}

.explorer__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.explorer__panel-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.explorer__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 12px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.explorer__back:hover {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.35);
}

.explorer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.explorer__grid--attractions {
  grid-template-columns: repeat(2, 1fr);
}

.explorer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px;
  text-align: left;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s, box-shadow 0.3s;
}

.explorer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.08);
}

.explorer-card__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.explorer-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.explorer-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.explorer-card--photo {
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  min-height: 88px;
}

.explorer-card__photo {
  flex: 0 0 96px;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
}

.explorer-card--photo .explorer-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 12px 14px;
}

.explorer-preview {
  position: sticky;
  top: 96px;
  opacity: 0.45;
  transform: translateY(8px);
  transition: opacity 0.45s, transform 0.45s;
  pointer-events: none;
}

.explorer-preview.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.explorer-preview__frame {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--bg-elevated);
}

.explorer-preview__content {
  padding: 24px 20px;
}

.explorer-preview__loc {
  font-size: 0.75rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.explorer-preview__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.explorer-preview__sub {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

.explorer-preview__meta {
  display: flex;
  gap: 24px;
  margin: 20px 0;
}

.explorer-preview__meta small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.explorer-preview__meta strong {
  font-size: 1rem;
  font-weight: 600;
}

.explorer-preview__cta {
  width: 100%;
  justify-content: center;
}

.explorer__reset {
  display: block;
  margin: 24px auto 0;
  padding: 8px 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.explorer__reset:hover {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.35);
}

/* Guide */
.guide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}

.ai-avatar {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}

.ai-avatar__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
    var(--grad) border-box;
  animation: ringRotate 14s linear infinite;
  box-shadow: var(--glow);
}

.ai-avatar__face {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.ai-avatar__eyes {
  width: 44px;
  height: 7px;
  background: var(--grad);
  border-radius: 4px;
  margin-bottom: 18px;
  opacity: 0.85;
}

.ai-avatar__smile {
  width: 28px;
  height: 14px;
  border: 2px solid var(--cyan);
  border-top: none;
  border-radius: 0 0 28px 28px;
  opacity: 0.5;
}

.ai-avatar__pulse {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.25);
  animation: pulse 3s ease-out infinite;
}

@keyframes ringRotate { to { transform: rotate(360deg); } }
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.55; }
  100% { transform: scale(1.18); opacity: 0; }
}

.feature-list { list-style: none; margin-top: 28px; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* Creators */
.creator-map {
  position: relative;
  padding: 44px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.world-map { width: 100%; height: auto; }

.map-line {
  fill: none;
  stroke: url(#mapGrad);
  stroke-width: 1.5;
  stroke-dasharray: 8 6;
  animation: dash 20s linear infinite;
}

.map-node {
  fill: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.7));
}

.map-node:nth-of-type(odd) {
  fill: var(--lime);
  filter: drop-shadow(0 0 6px rgba(163, 230, 53, 0.55));
}

.creator-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.creator-stats strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.creator-stats span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@keyframes dash { to { stroke-dashoffset: -200; } }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.product-card {
  padding: 36px 30px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--glow);
}

.product-card--featured {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0.8));
  border-color: var(--border-strong);
}

.product-card__icon {
  width: 48px;
  height: 48px;
  color: var(--cyan);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.35));
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-price {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 8px 0 14px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.product-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
}

.product-link:hover { color: var(--cyan-soft); }

/* Lifestyle banner */
.lifestyle {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto 40px;
  padding: 0 24px;
}

.lifestyle__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21/9;
  background:
    linear-gradient(120deg, rgba(3, 7, 18, 0.55), rgba(3, 7, 18, 0.15)),
    url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1400&q=80') center/cover;
  box-shadow: var(--shadow);
}

.lifestyle__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(5, 10, 24, 0.62);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.lifestyle__badge img,
.lifestyle__badge .nav__mark {
  width: 30px;
  height: 30px;
}

.lifestyle__badge .nav__wordmark {
  font-size: 0.95rem;
}

.lifestyle__badge .nav__tagline { display: none; }

.lifestyle__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.85);
  max-width: 420px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand .nav__wordmark { font-size: 1.125rem; }

.footer__brand p,
.footer__slogan {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

.footer__brand .nav__wordmark {
  font-size: 1.25rem;
}

.footer__legal {
  font-size: 0.6875rem;
  color: var(--text-muted);
  max-width: 360px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

/* Responsive */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, 30vh);
  }
  .showcase-card--tall { grid-row: span 1; }
  .explorer__layout { grid-template-columns: 1fr; }
  .explorer-preview { position: static; }
  .product-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .btn--ghost { margin-inline-start: 0; }
  .nav__links { display: none; }
  .nav__tagline { display: none; }
  .nav__end { gap: 8px; }
  .nav__login { padding: 8px 8px; }
  .nav__cta { padding: 9px 14px; }
  .nav__user-name { display: none; }
  .auth__dialog { padding: 24px 20px 18px; }
  .auth__phone { grid-template-columns: 96px 1fr; }
  .guide__inner { grid-template-columns: 1fr; padding: 28px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .showcase-card--wide,
  .showcase-card--tall {
    grid-column: auto;
    grid-row: auto;
  }
  .explorer { padding: 20px; }
  .explorer__grid { grid-template-columns: repeat(2, 1fr); }
  .explorer__grid--attractions { grid-template-columns: 1fr; }
  .explorer__steps { gap: 4px; }
  .explorer__step-line { width: 16px; }
  .lifestyle__frame { aspect-ratio: 16/10; }
}
