/* 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;
  align-items: center;
  gap: 28px;
}

.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__app {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 980px;
  color: var(--text) !important;
  background: rgba(15, 23, 42, 0.55);
}

.nav__app:hover {
  border-color: var(--border-strong);
  color: var(--cyan) !important;
}

.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: auto;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 24px 28px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.hero__sub {
  margin-top: 18px;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.6;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__actions .btn--ghost { margin-inline-start: 0; }

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero__chips li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cyan-soft);
  padding: 8px 12px;
  border-radius: 980px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(15, 23, 42, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1.15fr 1fr;
  gap: 10px;
  min-height: min(58vh, 520px);
  height: min(58vh, 520px);
}

.hero-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  text-decoration: none;
  color: var(--text);
  background: #071020;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s, box-shadow 0.35s, transform 0.35s;
}

.hero-tile:nth-child(1) {
  grid-row: span 2;
}

.hero-tile.is-active,
.hero-tile:hover {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.2), 0 22px 48px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(34, 211, 238, 0.18);
  transform: translateY(-2px);
  z-index: 2;
}

.hero-tile__media,
.hero-spot__media,
.showcase-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-tile__img,
.hero-spot__img,
.showcase-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform, object-position;
}

.media-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 24, 0.05) 0%, rgba(5, 10, 24, 0.2) 45%, rgba(5, 10, 24, 0.88) 100%);
  pointer-events: none;
}

.media-live {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 980px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(5, 10, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2;
}

.media-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

.hero-tile.is-active .media-live,
.hero-tile.is-motion .media-live,
.hero-spot.is-motion .media-live,
.showcase-card.is-motion .media-live,
.showcase-card:hover .media-live {
  opacity: 1;
  transform: none;
}

.hero-tile.is-active .media-live i,
.hero-tile.is-motion .media-live i,
.hero-spot.is-motion .media-live i,
.showcase-card.is-motion .media-live i,
.showcase-card:hover .media-live i {
  animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* Ken Burns motion — idle slow, hover/active faster “cinemagraph” feel */
.motion-1 .hero-tile__img,
.motion-1 .hero-spot__img,
.motion-1 .showcase-card__img {
  animation: kb1 18s ease-in-out infinite alternate;
}
.motion-2 .hero-tile__img,
.motion-2 .hero-spot__img,
.motion-2 .showcase-card__img {
  animation: kb2 20s ease-in-out infinite alternate;
}
.motion-3 .hero-tile__img,
.motion-3 .hero-spot__img,
.motion-3 .showcase-card__img {
  animation: kb3 16s ease-in-out infinite alternate;
}
.motion-4 .hero-tile__img,
.motion-4 .hero-spot__img,
.motion-4 .showcase-card__img {
  animation: kb4 22s ease-in-out infinite alternate;
}

.hero-tile.is-active .hero-tile__img,
.hero-tile.is-motion .hero-tile__img,
.hero-spot.is-motion .hero-spot__img,
.showcase-card.is-motion .showcase-card__img,
.showcase-card:hover .showcase-card__img {
  animation-duration: 3.5s;
}

@keyframes kb1 {
  from { transform: scale(1.08) translate(0, 0); object-position: 40% 45%; }
  to { transform: scale(1.28) translate(-3%, -2%); object-position: 60% 35%; }
}
@keyframes kb2 {
  from { transform: scale(1.1) translate(0, 0); object-position: 55% 50%; }
  to { transform: scale(1.3) translate(2%, -3%); object-position: 35% 40%; }
}
@keyframes kb3 {
  from { transform: scale(1.06) translate(0, 0); object-position: 50% 60%; }
  to { transform: scale(1.26) translate(-2%, 2%); object-position: 50% 30%; }
}
@keyframes kb4 {
  from { transform: scale(1.1) translate(0, 0); object-position: 30% 40%; }
  to { transform: scale(1.32) translate(3%, 1%); object-position: 70% 55%; }
}

.hero-tile__body,
.hero-spot__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 14px 14px 12px;
}

.spot-place {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  margin-bottom: 4px;
}

.spot-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-tile:nth-child(1) .spot-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.hero-mosaic__hint {
  margin-top: 12px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Immediate horizontal destinations under hero */
.hero-spots {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto 8px;
  padding: 0 24px 8px;
}

.hero-spots__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.hero-spots__track::-webkit-scrollbar { height: 4px; }
.hero-spots__track::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.35);
  border-radius: 4px;
}

.hero-spot {
  position: relative;
  display: block;
  min-height: 128px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  scroll-snap-align: start;
  background: #071020;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.hero-spot:hover,
.hero-spot.is-motion {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

@media (prefers-reduced-motion: reduce) {
  .hero-tile__img,
  .hero-spot__img,
  .showcase-card__img {
    animation: none !important;
  }
}

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

.section + .section {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

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

.section__head--left {
  text-align: left;
  margin-left: 0;
  max-width: 560px;
}

.section__step {
  margin-bottom: 12px;
}

.section__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 980px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #04101f;
  background: var(--grad);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

.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(200px, 240px);
  gap: 12px;
  margin-bottom: 28px;
}

.dest-panel {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(10, 18, 40, 0.72));
  padding: 22px 22px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.dest-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.dest-panel__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.dest-panel__lead {
  margin-top: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 42ch;
}

.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-sheen {
  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%);
}

.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: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.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 — compact card aligned with products / dest-panel */
.guide-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    radial-gradient(80% 70% at 8% 20%, rgba(37, 99, 235, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(10, 18, 40, 0.72));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.guide-persona {
  position: relative;
  margin: 0;
  width: 200px;
}

.guide-persona__photo {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.4);
}

.guide-persona__meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-persona__status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  flex-shrink: 0;
}

.guide-persona__meta strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
}

.guide-persona__meta small {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.guide-card__body {
  min-width: 0;
}

.guide-feats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.guide-feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(5, 10, 24, 0.4);
  transition: border-color 0.2s, background 0.2s;
}

.guide-feats li:hover {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.06);
}

.guide-feats__icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #04101f;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
}

.guide-feats strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.guide-feats span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.guide__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.guide__stats > div {
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.5);
  text-align: center;
}

.guide__stats strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.guide__stats span {
  display: block;
  margin-top: 2px;
  font-size: 0.625rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Creators (legacy map styles kept for app.html reuse if needed) */
.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: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  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.14), rgba(15, 23, 42, 0.88));
  border-color: var(--border-strong);
}

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

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

.product-plans {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 18px 0 16px;
}

.product-plans__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(5, 10, 24, 0.45);
}

.product-plans__item--best {
  position: relative;
  grid-template-columns: 1fr auto;
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: inset 0 0 0 1px rgba(163, 230, 53, 0.12);
}

.product-plans__badge {
  position: absolute;
  top: -9px;
  right: 12px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04101f;
  padding: 3px 8px;
  border-radius: 980px;
  background: var(--grad);
}

.product-plans__label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.product-plans__price {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.product-price--tag {
  font-size: 1.125rem;
}

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

.product-card__cta {
  margin-top: 20px;
  width: 100%;
  padding: 14px 20px;
}

.product-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.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(190px, 220px);
  }
  .showcase-card--wide { grid-column: span 2; }
  .showcase-card--tall { grid-row: span 1; }
  .explorer__layout { grid-template-columns: 1fr; }
  .explorer-preview { position: static; }
  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-bottom: 20px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__chips { justify-content: center; }
  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
    min-height: 0;
    height: auto;
  }
  .hero-tile:nth-child(1) { grid-row: auto; }
  .hero-tile:nth-child(1) .spot-title { font-size: 1rem; }
  .hero-spots__track { grid-auto-columns: minmax(140px, 42vw); }
  .section__head--left { text-align: center; margin-left: auto; margin-right: auto; }
  .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-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    text-align: center;
  }
  .guide-persona {
    width: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .guide-persona__meta { justify-content: center; }
  .guide-feats { grid-template-columns: 1fr; text-align: left; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .showcase-card--wide,
  .showcase-card--tall {
    grid-column: auto;
    grid-row: auto;
  }
  .dest-panel { padding: 16px; }
  .dest-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .explorer__grid { grid-template-columns: repeat(2, 1fr); }
  .explorer__grid--attractions { grid-template-columns: 1fr; }
  .explorer__steps { gap: 4px; }
  .explorer__step-line { width: 16px; }
  .guide__stats { grid-template-columns: 1fr; }
}


/* —— Layout v2: ordered sections —— */
.intro {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 28px);
  padding-bottom: 72px;
}

.intro__stage {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.intro__brand {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 8px 0 6px;
}

.intro__slogan {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  margin-bottom: 28px;
}

.intro__title {
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 auto 16px;
}

.intro__lead {
  max-width: 42rem;
  margin: 0 auto 28px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.intro__pills {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.intro__pills li {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(10, 18, 40, 0.55);
  backdrop-filter: blur(12px);
}

.intro__pills strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro__pills span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto 28px;
  padding: 0 24px;
}

.catalog-stat {
  text-align: center;
  padding: 22px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.catalog-stat strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.catalog-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.catalog-stat--grow strong {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.history-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.history-compare__pane {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 3 / 2;
}

.history-compare__pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s ease;
}

.history-compare__pane:hover img {
  transform: scale(1.04);
}

.history-compare__pane figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px 18px;
  background: linear-gradient(transparent, rgba(5, 10, 24, 0.92));
}

.history-compare__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}

.history-compare__pane--then .history-compare__tag {
  color: var(--lime);
}

.history-compare__pane figcaption strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.history__note {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  padding: 0 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.product-grid--solo {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.creator-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.creator-card__copy h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.creator-card__copy p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.creator-card__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.creator-card__list li {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.55);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.creator-card__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--grad);
}

@media (max-width: 860px) {
  .intro__pills,
  .catalog-stats,
  .history-compare,
  .creator-card {
    grid-template-columns: 1fr;
  }
  .intro__title { max-width: none; }
}

/* Hide legacy hero layout if residual markup appears */
.hero,
.hero-spots { display: none; }
