@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Noto+Serif+SC:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   OWMap · Cinematic Earth Edition
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-prose);
  background: var(--cosmos-black);
  color: var(--moon-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   Theme: 深空 (default) — Deep Space cinema
───────────────────────────────────────────── */
:root, [data-theme="deep-space"] {
  --cosmos-black:    #02060f;
  --cosmos-deep:     #050b1a;
  --cosmos-blue:     #0a1426;
  --cosmos-mid:      #0e1d36;
  --moon-white:      #f4f1e8;
  --dawn-gray:       #8a9bb0;
  --dawn-dim:        #4d5a6e;
  --dawn-faint:      #2a3344;
  --story-gold:      #f5c842;
  --story-gold-soft: #ffe091;
  --story-gold-deep: #b8881a;
  --story-amber:     #d97a3c;
  --aurora-1:        #1f4f7a;
  --aurora-2:        #2d3a85;
  --aurora-3:        #5a2f6e;
  --line-soft:       rgba(180, 200, 230, 0.08);
  --line-medium:     rgba(180, 200, 230, 0.16);
  --line-gold:       rgba(245, 200, 66, 0.28);
  --bg-panel:        rgba(10, 18, 36, 0.55);
  --bg-card:         rgba(14, 22, 40, 0.7);
  --glow-gold:       0 0 32px rgba(245, 200, 66, 0.25);
  --glow-blue:       0 0 60px rgba(80, 140, 220, 0.18);
  --aurora-opacity:  0.55;
  --terminator-vis:  1;
}

/* 黎明 — Dawn theme */
[data-theme="dawn"] {
  --cosmos-black:    #0c0a14;
  --cosmos-deep:     #1a1422;
  --cosmos-blue:     #2a1f30;
  --cosmos-mid:      #3a2a3f;
  --moon-white:      #faf3e8;
  --dawn-gray:       #c2a890;
  --dawn-dim:        #8b7560;
  --dawn-faint:      #4a3d33;
  --story-gold:      #ffb866;
  --story-gold-soft: #ffd9a8;
  --story-gold-deep: #c47a2a;
  --story-amber:     #e8624a;
  --aurora-1:        #d97a3c;
  --aurora-2:        #c2406a;
  --aurora-3:        #6e2f5a;
  --aurora-opacity:  0.4;
  --terminator-vis:  0.5;
}

/* 午夜紫 — Midnight Violet */
[data-theme="violet"] {
  --cosmos-black:    #08040f;
  --cosmos-deep:     #110a22;
  --cosmos-blue:     #1c1240;
  --cosmos-mid:      #2a1d5a;
  --moon-white:      #f0e8ff;
  --dawn-gray:       #a89bcf;
  --dawn-dim:        #6a5e8e;
  --dawn-faint:      #3a335a;
  --story-gold:      #c896ff;
  --story-gold-soft: #e8d4ff;
  --story-gold-deep: #6a3fb8;
  --story-amber:     #ff7ab8;
  --aurora-1:        #4a2da8;
  --aurora-2:        #8a3dc2;
  --aurora-3:        #2a1a6e;
  --aurora-opacity:  0.7;
  --terminator-vis:  0.85;
}

/* ─────────────────────────────────────────────
   Type scale
───────────────────────────────────────────── */
:root {
  --font-display: 'Cormorant Garamond', 'Noto Serif SC', 'Songti SC', Georgia, serif;
  --font-prose:   'Inter', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --sp-4:  4px;   --sp-8:  8px;   --sp-12: 12px;
  --sp-16: 16px;  --sp-20: 20px;  --sp-24: 24px;
  --sp-32: 32px;  --sp-48: 48px;  --sp-64: 64px;
  --sp-96: 96px;  --sp-128:128px; --sp-160: 160px;

  --r-sm: 8px;   --r-md: 14px;   --r-lg: 22px;
  --r-xl: 30px;  --r-pill: 999px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinema: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    0.4s;
  --dur-mid:     0.9s;
  --dur-slow:    1.6s;
}

.display-xl  { font-family: var(--font-display); font-weight: 500; font-size: clamp(56px, 9vw, 132px); line-height: 1.02; letter-spacing: -0.025em; }
.display-lg  { font-family: var(--font-display); font-weight: 500; font-size: clamp(44px, 6vw, 88px);  line-height: 1.05; letter-spacing: -0.02em; }
.display-md  { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 4.5vw, 64px);line-height: 1.1;  letter-spacing: -0.015em; }
.display-sm  { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.5vw, 44px);line-height: 1.18; letter-spacing: -0.01em; }
.body-lg     { font-size: 19px; line-height: 1.7; color: var(--dawn-gray); font-weight: 300; }
.body-md     { font-size: 16px; line-height: 1.7; color: var(--dawn-gray); font-weight: 300; }
.body-sm     { font-size: 14px; line-height: 1.6; color: var(--dawn-gray); }
.mono        { font-family: var(--font-mono); letter-spacing: 0.04em; }
.eyebrow     { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--story-gold); }

em { font-style: italic; color: var(--story-gold); font-weight: 400; }
.c-gold { color: var(--story-gold); }
.c-moon { color: var(--moon-white); }
.c-gray { color: var(--dawn-gray); }
.c-dim  { color: var(--dawn-dim); }

/* ─────────────────────────────────────────────
   Layout primitives
───────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-32); position: relative; z-index: 2; }
.section { position: relative; padding: var(--sp-128) 0; overflow: hidden; }
.section--cosmos { background: linear-gradient(180deg, transparent 0%, var(--cosmos-deep) 50%, transparent 100%); }
.section--dark   { background: var(--cosmos-deep); }
.section__header { text-align: center; margin-bottom: var(--sp-64); position: relative; z-index: 2; }
.section__label  { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--story-gold); margin-bottom: var(--sp-16); }
.section__divider { width: 56px; height: 1px; background: linear-gradient(90deg, transparent, var(--story-gold), transparent); margin: 16px auto 24px; }

/* ─────────────────────────────────────────────
   Background ambience
───────────────────────────────────────────── */
#stars-canvas {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(20, 40, 70, 0.6), transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(30, 20, 60, 0.55), transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--cosmos-deep), var(--cosmos-black) 80%);
  will-change: transform;
}
.aurora {
  position: fixed; inset: -10vh -5vw 0 -5vw; z-index: 0; pointer-events: none;
  opacity: var(--aurora-opacity); will-change: transform;
  filter: blur(60px);
}
.aurora__band {
  position: absolute; left: 0; right: 0; height: 50vh;
  background: linear-gradient(120deg, transparent 0%, var(--aurora-1) 30%, var(--aurora-2) 55%, var(--aurora-3) 80%, transparent 100%);
  animation: auroraFlow 24s ease-in-out infinite;
  mix-blend-mode: screen;
}
.aurora__band:nth-child(1) { top: 5vh; transform: rotate(-8deg); animation-delay: 0s; }
.aurora__band:nth-child(2) { top: 30vh; transform: rotate(6deg); animation-delay: -12s; opacity: 0.7; }
@keyframes auroraFlow {
  0%, 100% { transform: translateX(-12%) rotate(-8deg) scaleY(1); opacity: 0.55; }
  50%      { transform: translateX(8%)   rotate(-5deg) scaleY(1.15); opacity: 0.85; }
}

/* Vignette over everything */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.65) 100%);
}

/* ─────────────────────────────────────────────
   Reveal motion
───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(8px); transition: opacity var(--dur-mid) var(--ease-cinema), transform var(--dur-mid) var(--ease-cinema), filter var(--dur-mid) var(--ease-cinema); }
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; }
  .aurora__band { animation: none; }
}

/* ─────────────────────────────────────────────
   Buttons
───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 44px; padding: 0 22px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  font-family: var(--font-prose);
  transition: all 0.35s var(--ease-cinema);
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--story-gold) 0%, var(--story-gold-soft) 50%, var(--story-gold) 100%);
  background-size: 200% 100%;
  color: var(--cosmos-black);
  box-shadow: 0 4px 20px rgba(245, 200, 66, 0.25), inset 0 1px 0 rgba(255,255,255,0.4);
  font-weight: 600;
}
.btn--gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,200,66,0.4), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn--gold-lg { background: linear-gradient(135deg, var(--story-gold), var(--story-gold-soft)); color: var(--cosmos-black); height: 52px; padding: 0 28px; font-size: 15px; font-weight: 600; box-shadow: 0 6px 28px rgba(245,200,66,0.3); }
.btn--gold-lg:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(245,200,66,0.45); }
.btn--gold-xl { background: linear-gradient(135deg, var(--story-gold), var(--story-gold-soft)); color: var(--cosmos-black); height: 60px; padding: 0 36px; font-size: 17px; font-weight: 600; box-shadow: 0 8px 36px rgba(245,200,66,0.35); }
.btn--gold-xl:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(245,200,66,0.5); }
.btn--ghost { background: transparent; color: var(--moon-white); border: 1px solid var(--line-medium); }
.btn--ghost:hover { border-color: var(--story-gold); color: var(--story-gold); background: rgba(245,200,66,0.04); }
.btn--outline { background: transparent; color: var(--moon-white); border: 1px solid var(--line-gold); }
.btn--outline:hover { background: rgba(245,200,66,0.06); color: var(--story-gold); }
.btn--disabled { opacity: 0.4; cursor: not-allowed; }
.btn .icon { width: 16px; height: 16px; }

/* ─────────────────────────────────────────────
   Navigation
───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: all 0.4s var(--ease-cinema);
}
.nav.scrolled {
  background: rgba(2, 6, 15, 0.7);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 32px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: 0.02em; }
.nav__logo-mark { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.nav__logo-mark svg { width: 100%; height: 100%; }
.nav__logo-text { color: var(--moon-white); position: relative; }
/* owmap.com micro-domain label beneath logo text */
.nav__logo-text::after {
  content: 'owmap.com';
  position: absolute; left: 0; top: calc(100% + 1px);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em;
  color: var(--story-gold); opacity: 0.45; white-space: nowrap;
  pointer-events: none;
}
.nav__links { display: flex; gap: 32px; }
.nav__link { font-size: 14px; color: var(--dawn-gray); transition: color 0.3s; position: relative; padding: 4px 0; }
.nav__link::after { content: ''; position: absolute; left: 50%; bottom: -2px; width: 0; height: 1px; background: var(--story-gold); transition: all 0.35s var(--ease-cinema); transform: translateX(-50%); }
.nav__link:hover { color: var(--moon-white); }
.nav__link:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__lang { font-family: var(--font-mono); font-size: 11px; color: var(--dawn-gray); padding: 6px 10px; border: 1px solid var(--line-soft); border-radius: 6px; transition: all 0.3s; }
.nav__lang:hover { border-color: var(--story-gold); color: var(--story-gold); }
.nav__login { font-size: 13px; color: var(--moon-white); padding: 8px 12px; }
.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--moon-white); transition: all 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.nav__drawer { display: none; }

/* ─────────────────────────────────────────────
   HERO — fullscreen cinematic
───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 1100px;
  display: flex; align-items: center;
  overflow: visible;
  padding-top: 100px;
  /* Prevent any drag-selection of text while spinning globe */
  user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
}
/* Re-enable selection only for explicit interactive elements in hero */
.hero a, .hero button { user-select: auto; -webkit-user-select: auto; }
.hero .container { display: flex; align-items: center; min-height: auto; height: 100%; }
.hero__globe-wrap {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center;
  justify-content: flex-end;
  padding-right: 6vw;
  /* Push globe down to match hero's visual center (offset by nav padding-top) */
  padding-top: 80px;
  pointer-events: none;
  user-select: none; -webkit-user-select: none;
}
#globe-canvas {
  display: block;
  /* Match BSL1 pattern: vh-based so globe scales with screen height, never clips */
  width:  72vh;
  height: 72vh;
  max-width:  620px;
  max-height: 620px;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: grab;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}
.hero__globe-wrap .story-popup { pointer-events: auto; }
#globe-canvas:active { cursor: grabbing; }
.hero__globe-glow {
  position: absolute; right: 6vw; top: calc(50% + 40px);
  width:  560px;
  height: 560px;
  transform: translateY(-50%);
  background: radial-gradient(circle at 50% 50%,
    rgba(80,140,220,0.18) 0%,
    rgba(120,80,200,0.09) 38%,
    transparent 65%);
  pointer-events: none; z-index: 0;
  animation: globeGlowPulse 6s ease-in-out infinite;
}
@keyframes globeGlowPulse {
  0%, 100% { opacity: 0.85; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;    transform: translateY(-50%) scale(1.06); }
}
.hero__content {
  position: relative; z-index: 3;
  max-width: 640px;
  pointer-events: none;
}
.hero__content > * { pointer-events: auto; }
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--story-gold); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; border: 1px solid var(--line-gold); border-radius: var(--r-pill);
  background: rgba(245, 200, 66, 0.04);
  backdrop-filter: blur(8px);
  animation: eyebrowFade 1.4s var(--ease-cinema) both;
}
.hero__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--story-gold);
  box-shadow: 0 0 10px var(--story-gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; transform: scale(0.8); } }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6.4vw, 88px); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--moon-white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.85), 0 0 60px rgba(0,0,0,0.6);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic; color: var(--story-gold);
  text-shadow: 0 0 28px rgba(245,200,66,0.5);
}
.hero__title .hero-line {
  display: block;
  animation: heroLineRise 1.2s var(--ease-cinema) both;
}
.hero__title .hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero__title .hero-line:nth-child(2) { animation-delay: 0.45s; }
.hero__title .hero-line:nth-child(3) { animation-delay: 0.7s; }
@keyframes heroLineRise {
  from { opacity: 0; transform: translateY(40px); filter: blur(14px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes eyebrowFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.hero__subtitle {
  font-size: 18px; line-height: 1.75; color: var(--dawn-gray); font-weight: 300;
  max-width: 520px; margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
  animation: heroLineRise 1.2s var(--ease-cinema) both;
  animation-delay: 0.95s;
}
.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: heroLineRise 1.2s var(--ease-cinema) both;
  animation-delay: 1.15s;
}
.hero__scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dawn-dim); pointer-events: none; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: hintFade 2s var(--ease-cinema) 2s forwards;
}
.hero__scroll-hint .arrow {
  width: 1px; height: 32px; background: linear-gradient(180deg, var(--story-gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes hintFade { to { opacity: 1; } }
@keyframes scrollPulse { 50% { opacity: 0.3; transform: scaleY(0.6); } }

/* Hero CTAs above globe */
.hero__play-random {
  position: absolute !important; bottom: 32px; right: 32px; z-index: 4;
  font-size: 12px; height: 38px; padding: 0 16px;
  width: auto; left: auto; margin: 0;
}

/* Story popup */
.story-popup {
  position: absolute; z-index: 5;
  width: 320px;
  background: rgba(8, 14, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,200,66,0.1);
  opacity: 0; transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: all 0.4s var(--ease-cinema);
}
.story-popup.active { opacity: 1; transform: none; pointer-events: auto; }
.story-popup__close {
  position: absolute; top: 10px; right: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dawn-gray); font-size: 16px; line-height: 1;
}
.story-popup__close:hover { color: var(--story-gold); background: rgba(245,200,66,0.1); }
.story-popup__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--moon-white); margin-bottom: 4px; }
.story-popup__coord { font-family: var(--font-mono); font-size: 11px; color: var(--story-gold); margin-bottom: 12px; letter-spacing: 0.05em; }
.story-popup__excerpt { font-size: 13px; line-height: 1.65; color: var(--dawn-gray); margin-bottom: 14px; }
.story-popup__cta { font-size: 12px; color: var(--story-gold); font-weight: 500; transition: all 0.3s; }
.story-popup__cta:hover { color: var(--story-gold-soft); }

/* ─────────────────────────────────────────────
   Value section
───────────────────────────────────────────── */
.constellation-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.5; }
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: var(--sp-48);
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-cinema);
  backdrop-filter: blur(8px);
}
.value-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,200,66,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.value-card:hover { border-color: var(--line-gold); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow-gold); }
.value-card:hover::before { opacity: 1; }
.value-card .value-icon-wrap {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(245,200,66,0.02));
  border: 1px solid var(--line-gold);
  position: relative; z-index: 1;
}
.value-card .value-icon-wrap svg { width: 28px; height: 28px; color: var(--story-gold); }
.value-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  color: var(--moon-white); margin-bottom: 14px; letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.value-card p { font-size: 14px; line-height: 1.75; color: var(--dawn-gray); position: relative; z-index: 1; }

/* ─────────────────────────────────────────────
   Featured Stories carousel
───────────────────────────────────────────── */
.featured-section { padding: var(--sp-128) 0; }
.featured-track-wrap { position: relative; margin-top: var(--sp-48); }
.featured-track {
  display: flex; gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Horizontal padding ensures first/last cards get breathing room and don't clip */
  padding: 32px var(--sp-32) 48px;
  scrollbar-width: none;
}
.featured-track::-webkit-scrollbar { display: none; }
/* Correct snap origin to account for horizontal padding */
.featured-track { scroll-padding-inline: var(--sp-32); }
.featured-card {
  flex: 0 0 380px;
  scroll-snap-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: all 0.6s var(--ease-cinema);
  cursor: pointer;
  min-height: 380px;
  display: flex; flex-direction: column;
}
.featured-card__bg {
  position: absolute; inset: 0; opacity: 0.15;
  transition: opacity 0.5s;
  background-size: cover; background-position: center;
}
.featured-card:hover { transform: translateY(-8px); border-color: var(--line-gold); box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--glow-gold); }
.featured-card:hover .featured-card__bg { opacity: 0.3; }
.featured-card__top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.featured-card__num { font-family: var(--font-mono); font-size: 36px; color: var(--story-gold); font-weight: 300; line-height: 1; opacity: 0.5; }
.featured-card__region {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--story-gold);
  padding: 6px 12px; border: 1px solid var(--line-gold); border-radius: var(--r-pill);
  background: rgba(245,200,66,0.05);
}
.featured-card__title { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--moon-white); line-height: 1.15; margin-bottom: 8px; position: relative; z-index: 1; }
.featured-card__coord { font-family: var(--font-mono); font-size: 11px; color: var(--story-gold); margin-bottom: 18px; letter-spacing: 0.04em; position: relative; z-index: 1; }
.featured-card__excerpt { font-size: 14px; line-height: 1.75; color: var(--dawn-gray); flex: 1; position: relative; z-index: 1; font-family: var(--font-display); font-style: italic; font-weight: 400; }
.featured-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line-soft); position: relative; z-index: 1; }
.featured-card__meta { font-family: var(--font-mono); font-size: 11px; color: var(--dawn-dim); display: flex; gap: 12px; align-items: center; }
.featured-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dawn-dim); }
.featured-card__play {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--story-gold), var(--story-gold-soft));
  color: var(--cosmos-black);
  transition: transform 0.3s;
}
.featured-card:hover .featured-card__play { transform: scale(1.12); }
.featured-card__play svg { width: 14px; height: 14px; margin-left: 2px; }

.featured-controls { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 24px; }
.featured-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  color: var(--moon-white);
  transition: all 0.3s;
}
.featured-arrow:hover { border-color: var(--story-gold); color: var(--story-gold); transform: scale(1.08); }
.featured-arrow svg { width: 16px; height: 16px; }
.featured-dots { display: flex; gap: 8px; }
.featured-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dawn-dim); transition: all 0.3s; }
.featured-dot.active { background: var(--story-gold); width: 24px; border-radius: 3px; }

/* ─────────────────────────────────────────────
   Product showcase
───────────────────────────────────────────── */
.product-section { background: linear-gradient(180deg, transparent, rgba(5, 11, 26, 0.6), transparent); }
.product-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.product-mockup-stack {
  position: relative;
  height: 540px;
  display: flex; align-items: center; justify-content: center;
}
.mockup-phone {
  position: absolute;
  width: 220px; height: 460px;
  background: linear-gradient(180deg, #050d18, #0a1929);
  border: 1px solid var(--line-medium);
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.6s var(--ease-cinema);
}
.mockup-phone.main {
  z-index: 3; transform: translate(0, 0) scale(1);
  border-color: var(--line-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,200,66,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}
.mockup-phone.side-1 { z-index: 1; transform: translate(-180px, 30px) rotate(-8deg) scale(0.85); opacity: 0.7; }
.mockup-phone.side-2 { z-index: 2; transform: translate(180px, 30px) rotate(8deg) scale(0.85); opacity: 0.7; }
.product-mockup-stack:hover .mockup-phone.side-1 { transform: translate(-200px, 20px) rotate(-10deg) scale(0.86); }
.product-mockup-stack:hover .mockup-phone.side-2 { transform: translate(200px, 20px) rotate(10deg) scale(0.86); }
.mockup-screen { width: 100%; height: 100%; background: radial-gradient(ellipse at top, #0a1929, #050d18); border-radius: 22px; padding: 18px 14px; display: flex; flex-direction: column; gap: 8px; position: relative; overflow: hidden; }
.mockup-screen__globe { width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #1E3A5F, #050D18); border: 1px solid rgba(245,200,66,0.3); margin-bottom: 4px; }
.mockup-screen__title { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--moon-white); }
.mockup-screen__bar { width: 100%; height: 2px; background: linear-gradient(90deg, var(--story-gold), transparent); margin: 4px 0; }
.mockup-screen__line { width: 100%; height: 1px; background: var(--line-soft); }
.mockup-screen__text { font-size: 8px; color: var(--dawn-gray); line-height: 1.5; }

.product-features { display: flex; flex-direction: column; gap: 8px; }
.product-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid transparent;
  opacity: 0; transform: translateX(-20px);
  transition: all 0.7s var(--ease-cinema);
}
.product-feature.visible { opacity: 1; transform: none; }
.product-feature:hover { background: var(--bg-card); border-color: var(--line-soft); }
.product-feature__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(245,200,66,0.02));
  border: 1px solid var(--line-gold);
  flex-shrink: 0;
}
.product-feature__icon svg { width: 18px; height: 18px; color: var(--story-gold); }
.product-feature h4 { font-size: 14px; font-weight: 600; color: var(--moon-white); margin-bottom: 2px; }
.product-feature p { font-size: 12px; color: var(--dawn-gray); line-height: 1.5; }

.data-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px; padding: 24px 0;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.data-item { text-align: center; }
.data-item__num { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--story-gold); line-height: 1; }
.data-item__label { font-size: 11px; color: var(--dawn-gray); margin-top: 6px; letter-spacing: 0.04em; }

/* ─────────────────────────────────────────────
   Feature blocks (alternating)
───────────────────────────────────────────── */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 64px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feature-block:last-child { border-bottom: none; }
.feature-block.reverse .feature-visual { order: 2; }
.feature-block.reverse .feature-copy   { order: 1; }
.feature-visual { position: relative; }
.feature-visual__inner {
  width: 100%; aspect-ratio: 1.2/1; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(14,29,54,0.6), rgba(5,11,26,0.4));
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.feature-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--story-gold);
  padding: 6px 12px; border: 1px solid var(--line-gold); border-radius: var(--r-pill);
  background: rgba(245,200,66,0.04); margin-bottom: 18px;
}
.feature-copy h3 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 600; color: var(--moon-white); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.01em; }
.feature-copy p { font-size: 16px; line-height: 1.75; color: var(--dawn-gray); }

/* ─────────────────────────────────────────────
   Earth Passport — badges preview
───────────────────────────────────────────── */
.passport-section { padding: var(--sp-128) 0; }
.passport-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; margin-top: var(--sp-48); }
.passport-cover {
  position: relative;
  aspect-ratio: 0.72/1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(245,200,66,0.18), transparent 55%),
    linear-gradient(150deg, #1a1208, #0a0a14 60%, #050813);
  border: 1px solid var(--line-gold);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.passport-cover::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 14px;
  pointer-events: none;
}
.passport-cover::after {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,200,66,0.18), transparent 70%);
  pointer-events: none;
}
.passport-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; position: relative; z-index: 1; }
.passport-title { font-family: var(--font-display); color: var(--story-gold); }
.passport-title__zh { font-size: 22px; font-weight: 600; letter-spacing: 0.08em; }
.passport-title__en { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--story-gold); opacity: 0.7; margin-top: 4px; }
.passport-no { font-family: var(--font-mono); font-size: 10px; color: var(--story-gold); opacity: 0.7; letter-spacing: 0.1em; }

.passport-globe {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(245,200,66,0.4), transparent 50%),
    radial-gradient(circle at 65% 70%, rgba(80,140,220,0.3), transparent 60%),
    radial-gradient(circle at center, #0a1426, #050813);
  border: 1px solid var(--line-gold);
  position: relative; z-index: 1;
  margin: 0 auto 24px; max-width: 220px;
  box-shadow: 0 0 60px rgba(245,200,66,0.15), inset 0 0 40px rgba(0,0,0,0.6);
}
.passport-globe svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.passport-stamps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; z-index: 1; margin-top: auto; }
.passport-stamp {
  aspect-ratio: 1/1;
  border: 1px dashed rgba(245,200,66,0.4);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 9px; color: var(--story-gold);
  text-align: center; padding: 6px; line-height: 1.3;
  background: rgba(245,200,66,0.03);
  transition: all 0.4s var(--ease-cinema);
  position: relative;
}
.passport-stamp.active {
  border-style: solid; border-color: var(--story-gold);
  color: var(--story-gold-soft);
  background: rgba(245,200,66,0.08);
  box-shadow: 0 0 20px rgba(245,200,66,0.15);
}
.passport-stamp.locked { opacity: 0.35; }
.passport-stamp svg { width: 22px; height: 22px; margin-bottom: 4px; }

.passport-bottom { margin-top: 18px; font-family: var(--font-mono); font-size: 9px; color: var(--story-gold); opacity: 0.6; letter-spacing: 0.18em; text-align: center; position: relative; z-index: 1; padding-top: 12px; border-top: 1px solid rgba(245,200,66,0.2); }

.passport-info h3 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 500; color: var(--moon-white); line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.015em; }
.passport-info > p { font-size: 17px; line-height: 1.75; color: var(--dawn-gray); margin-bottom: 32px; }
.passport-features { display: flex; flex-direction: column; gap: 16px; }
.passport-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
}
.passport-feat__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(245,200,66,0.02));
  border: 1px solid var(--line-gold);
  flex-shrink: 0;
}
.passport-feat__icon svg { width: 18px; height: 18px; color: var(--story-gold); }
.passport-feat h5 { font-size: 14px; font-weight: 600; color: var(--moon-white); margin-bottom: 4px; }
.passport-feat p  { font-size: 13px; color: var(--dawn-gray); line-height: 1.55; }

/* ─────────────────────────────────────────────
   Roadmap — orbital timeline
───────────────────────────────────────────── */
.roadmap-section { background: linear-gradient(180deg, transparent, rgba(8,12,28,0.5), transparent); }
.roadmap-orbit {
  position: relative; max-width: 1100px; margin: 0 auto;
  padding: 24px 0;
}
.roadmap-line {
  position: absolute; left: 56px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--story-gold) 10%, var(--story-gold) 70%, transparent);
  opacity: 0.3;
}
.roadmap-line::before {
  content: ''; position: absolute; left: -1px; top: 0; right: -1px; height: 30%;
  background: linear-gradient(180deg, var(--story-gold), transparent);
  filter: blur(2px);
}
.roadmap-item {
  display: grid; grid-template-columns: 112px 1fr; gap: 24px;
  padding: 18px 0; align-items: center;
  opacity: 0; transform: translateX(40px); filter: blur(6px);
  transition: all 0.8s var(--ease-cinema);
}
.roadmap-item.visible { opacity: 1; transform: none; filter: none; }
.roadmap-item__node {
  position: relative; width: 112px; height: 88px;
  display: flex; align-items: center; justify-content: center;
}
.roadmap-item__dot {
  position: absolute; left: 48px; top: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--cosmos-black);
  border: 2px solid var(--story-gold);
  box-shadow: 0 0 20px rgba(245,200,66,0.5);
}
.roadmap-item.active .roadmap-item__dot {
  background: var(--story-gold);
  animation: nodePulse 2s ease-in-out infinite;
}
@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245,200,66,0.5); }
  50%      { box-shadow: 0 0 36px rgba(245,200,66,0.9), 0 0 60px rgba(245,200,66,0.3); }
}
.roadmap-item__num {
  font-family: var(--font-mono); font-size: 11px; color: var(--story-gold);
  letter-spacing: 0.2em; padding-left: 64px;
  white-space: nowrap;
}
.roadmap-item__card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  transition: all 0.4s;
}
.roadmap-item:hover .roadmap-item__card { border-color: var(--line-gold); transform: translateX(6px); }
.roadmap-item__badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; padding: 6px 12px; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.badge--active  { background: rgba(85, 200, 130, 0.1); color: #5fcf90; border: 1px solid rgba(95, 207, 144, 0.3); }
.badge--soon    { background: rgba(245, 200, 66, 0.1); color: var(--story-gold); border: 1px solid var(--line-gold); }
.badge--planned { background: rgba(140, 180, 230, 0.08); color: var(--dawn-gray); border: 1px solid var(--line-soft); }
.badge--future  { background: rgba(180, 130, 230, 0.1); color: #c89aff; border: 1px solid rgba(200, 150, 255, 0.25); }
.roadmap-item__badge svg { width: 11px; height: 11px; }
.roadmap-item__info h4 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--moon-white); margin-bottom: 4px; }
.roadmap-item__info p { font-size: 13px; color: var(--dawn-gray); line-height: 1.5; }
.roadmap-item__layer {
  font-family: var(--font-display); font-size: 48px; font-weight: 300;
  color: var(--story-gold); opacity: 0.25; line-height: 1;
}

/* ─────────────────────────────────────────────
   Stats + worldmap
───────────────────────────────────────────── */
.stats-section { padding: var(--sp-128) 0; }
.stats-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  margin-bottom: var(--sp-64);
}
.stat-item { text-align: center; padding: 24px; }
.stat-num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); font-weight: 500; color: var(--story-gold); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 12px; color: var(--dawn-gray); margin-top: 10px; letter-spacing: 0.04em; }
.worldmap-container {
  height: 400px; border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,14,28,0.6), rgba(5,11,26,0.4));
  position: relative;
}
#worldmap-canvas { width: 100%; height: 100%; }

/* ─────────────────────────────────────────────
   Audience cards
───────────────────────────────────────────── */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: var(--sp-48); }
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: all 0.5s var(--ease-cinema);
}
.audience-card:hover { transform: translateY(-6px); border-color: var(--line-gold); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.audience-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(245,200,66,0.02));
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.audience-icon svg { width: 28px; height: 28px; color: var(--story-gold); }
.audience-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--moon-white); line-height: 1.25; }
.audience-card p { font-size: 13px; color: var(--dawn-gray); line-height: 1.65; flex: 1; }
.audience-card .btn { align-self: flex-start; height: 38px; font-size: 13px; }

/* ─────────────────────────────────────────────
   Pricing
───────────────────────────────────────────── */
.pricing-section { padding: var(--sp-128) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 880px; margin: var(--sp-48) auto 0; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-cinema);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: var(--line-gold); background: linear-gradient(135deg, rgba(245,200,66,0.05), var(--bg-card)); box-shadow: var(--glow-gold); }
.price-card__badge { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 10px; padding: 5px 10px; background: var(--story-gold); color: var(--cosmos-black); border-radius: var(--r-pill); font-weight: 600; }
.price-card__tier { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--story-gold); }
.price-card__amount { font-family: var(--font-display); font-size: 56px; font-weight: 500; color: var(--moon-white); line-height: 1; }
.price-card__period { font-size: 13px; color: var(--dawn-gray); margin-top: 6px; }
.price-divider { height: 1px; background: var(--line-soft); }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--moon-white); }
.feature-item.off { color: var(--dawn-dim); }
.feature-check { font-family: var(--font-mono); width: 16px; flex-shrink: 0; color: var(--story-gold); }
.feature-item.off .feature-check { color: var(--dawn-dim); }
.price-note { font-size: 11px; color: var(--dawn-dim); text-align: center; margin-top: 4px; }

/* ─────────────────────────────────────────────
   Press
───────────────────────────────────────────── */
.press-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: var(--sp-48); }
.press-card { background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 28px; }
.press-card blockquote { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--moon-white); line-height: 1.6; margin-bottom: 16px; font-weight: 400; }
.press-card__source { font-family: var(--font-mono); font-size: 11px; color: var(--story-gold); letter-spacing: 0.05em; }
.partner-row {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: center;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line-soft);
  opacity: 0.6;
}
.partner-logo { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; color: var(--dawn-gray); }

/* ─────────────────────────────────────────────
   CTA
───────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-160) 0;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(14,29,54,0.6), transparent 70%);
}
.cta-globe-wrap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 360px; height: 360px; opacity: 0.5; pointer-events: none; }
#cta-globe-canvas { width: 100%; height: 100%; }
.cta-particles { position: absolute; inset: 0; }
.cta-section h2 {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 84px); font-weight: 500;
  color: var(--moon-white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.cta-section p { font-size: 18px; color: var(--dawn-gray); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */
.footer { padding: var(--sp-96) 0 var(--sp-48); border-top: 1px solid var(--line-soft); position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line-soft); }
.footer__brand p { font-size: 13px; color: var(--dawn-gray); line-height: 1.7; margin: 16px 0 20px; max-width: 320px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px;
  border: 1px solid var(--line-soft); color: var(--dawn-gray);
  transition: all 0.3s;
}
.footer__social a:hover { border-color: var(--story-gold); color: var(--story-gold); }
.footer__col h5 { font-size: 13px; font-weight: 600; color: var(--moon-white); margin-bottom: 16px; letter-spacing: 0.03em; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13px; color: var(--dawn-gray); transition: color 0.3s; }
.footer__col a:hover { color: var(--story-gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: flex-start; padding-top: 28px; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--dawn-dim); }
.footer__icp { display: flex; flex-direction: column; gap: 4px; font-size: 11px; color: var(--dawn-dim); opacity: 0.7; line-height: 1.6; }
.footer__icp a { color: inherit; text-decoration: none; }
.footer__icp a:hover { color: var(--story-gold); opacity: 1; }
.footer__domain { font-family: var(--font-mono); font-size: 11px; color: var(--story-gold); opacity: 0.6; letter-spacing: 0.08em; }

/* ─────────────────────────────────────────────
   Tweaks panel — theme switcher
───────────────────────────────────────────── */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  background: rgba(8, 14, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--glow-gold);
  width: 260px;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.5s var(--ease-cinema);
}
.tweaks-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.tweaks-panel__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.tweaks-panel__title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--story-gold); }
.tweaks-panel__close { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dawn-gray); }
.tweaks-panel__close:hover { color: var(--story-gold); }
.tweak-section { margin-bottom: 14px; }
.tweak-section__label { font-size: 11px; color: var(--dawn-gray); margin-bottom: 8px; letter-spacing: 0.04em; }
.tweak-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.tweak-theme {
  padding: 10px 6px; border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: all 0.3s;
}
.tweak-theme.active { border-color: var(--story-gold); background: rgba(245,200,66,0.08); }
.tweak-theme__swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.tweak-theme--space  .tweak-theme__swatch { background: radial-gradient(circle at 30% 30%, #1f4f7a, #02060f); }
.tweak-theme--dawn   .tweak-theme__swatch { background: radial-gradient(circle at 30% 30%, #ffb866, #2a1f30); }
.tweak-theme--violet .tweak-theme__swatch { background: radial-gradient(circle at 30% 30%, #c896ff, #08040f); }
.tweak-theme__name { font-size: 11px; color: var(--moon-white); }

.tweaks-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 79;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(8, 14, 28, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--story-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.3s;
}
.tweaks-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(0,0,0,0.6), var(--glow-gold); }
.tweaks-toggle svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────────────
   Responsive
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-layout, .passport-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse .feature-visual { order: 0; }
  .feature-block.reverse .feature-copy { order: 0; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .press-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__lang, .nav__login { display: none; }
  .hero__globe-wrap { padding-right: 3vw; }
  .hero__globe-glow { right: 3vw; }
  #globe-canvas { width: 60vh; height: 60vh; max-width: 500px; max-height: 500px; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: var(--sp-96) 0; }
  .nav { padding: 14px 20px; }
  .hero__title { font-size: clamp(40px, 12vw, 80px); }
  .hero__content { max-width: 100%; }
  /* Mobile: globe centered behind the stacked text */
  .hero__globe-wrap { justify-content: center; padding-right: 0; opacity: 0.6; }
  .hero__globe-glow { right: 50%; transform: translateX(50%) translateY(-50%); }
  #globe-canvas { width: 50vh; height: 50vh; max-width: 340px; max-height: 340px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .featured-card { flex: 0 0 85vw; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .data-strip { grid-template-columns: 1fr; gap: 12px; }
  .roadmap-item { grid-template-columns: 80px 1fr; }
  .roadmap-item__node { width: 80px; }
  .roadmap-item__dot { left: 32px; }
  .roadmap-item__num { padding-left: 48px; font-size: 10px; }
  .roadmap-line { left: 40px; }
  .roadmap-item__card { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .roadmap-item__layer { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   Ecosystem Partners footer block
   ═══════════════════════════════════════════════════════════════ */
.footer__partners {
  padding: 28px 0;
  border-top: 1px solid rgba(244,241,232,0.06);
  border-bottom: 1px solid rgba(244,241,232,0.06);
  margin-bottom: 28px;
}
.footer__partners-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--story-gold);
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  margin-bottom: 16px;
}
.footer__partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.footer__partner-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(244,241,232,0.03);
  border: 1px solid rgba(244,241,232,0.08);
  font-size: 0.8125rem;
  color: var(--dawn-dim);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer__partner-link:hover {
  background: rgba(197,162,97,0.08);
  border-color: rgba(197,162,97,0.25);
  color: var(--text-primary);
}
.footer__partner-name { font-weight: 600; }
.footer__partner-sub { font-size: 0.6875rem; opacity: 0.6; }

/* ═══════════════════════════════════════════════════════════════
   News Headlines Strip (index.html · #ns-headlines)
   ═══════════════════════════════════════════════════════════════ */
.ns-headlines {
  border: 1px solid rgba(244,241,232,0.08);
  border-radius: 16px;
  padding: 32px 36px;
  background: rgba(244,241,232,0.02);
}
.ns-hl__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.ns-hl__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--story-gold);
  text-transform: uppercase;
  opacity: 0.7;
}
.ns-hl__more {
  font-size: 12px;
  color: var(--story-gold);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.ns-hl__more:hover { opacity: 1; }
.ns-hl__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ns-hl__item { border-top: 1px solid rgba(244,241,232,0.06); }
.ns-hl__item:last-child { border-bottom: 1px solid rgba(244,241,232,0.06); }
.ns-hl__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  transition: background 0.15s;
}
.ns-hl__link:hover .ns-hl__title { color: var(--story-gold); }
.ns-hl__cat {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(197,162,97,0.12);
  color: var(--story-gold);
}
.ns-hl__cat.cat--news     { background: rgba(80,180,255,0.12); color: #50b4ff; }
.ns-hl__cat.cat--creative { background: rgba(180,120,255,0.12); color: #b478ff; }
.ns-hl__cat.cat--market   { background: rgba(80,220,160,0.12); color: #50dca0; }
.ns-hl__cat.cat--industry { background: rgba(255,200,80,0.12); color: #ffc850; }
.ns-hl__cat.cat--tech     { background: rgba(255,100,100,0.12); color: #ff6464; }
.ns-hl__cat.cat--consumer { background: rgba(255,160,80,0.12); color: #ffa050; }
.ns-hl__title {
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: color 0.2s;
  line-height: 1.35;
}
.ns-hl__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dawn-dim);
  opacity: 0.55;
  white-space: nowrap;
}
/* Nav active state */
.nav__link--active {
  color: var(--story-gold) !important;
  opacity: 1 !important;
}
@media (max-width: 720px) {
  .ns-headlines { padding: 24px 20px; }
  .ns-hl__link { grid-template-columns: auto 1fr; }
  .ns-hl__date { display: none; }
}
