/* ════════════════════════════════════════════════════════════════════
   VYOM LABS — DESIGN SYSTEM v2026.2 "GRAND TOUR"

   Palette   : deep-space indigo · porcelain · Vyom gold (#FFCD3C)
   Type      : Outfit (display) · Inter (body) · IBM Plex Mono (telemetry)
   Voice     : mission control meets editorial
════════════════════════════════════════════════════════════════════ */

:root {
  /* Color */
  --void:       #04060b;
  --void-2:     #090d17;
  --void-3:     #101625;
  --bone:       #cfd2d9;
  --bone-dim:   #a8b0c0;
  --mute:       #6e7787;
  --ion:        #FFCD3C;
  --ion-hot:    #FFE082;
  --ion-deep:   #8a6a00;
  --ion-glow:   rgba(255, 205, 60, 0.30);
  --violet:     #F2B02E;
  --warn:       #ffb454;
  --line:       rgba(238, 241, 246, 0.16);
  --line-soft:  rgba(238, 241, 246, 0.08);
  --card:       rgba(238, 241, 246, 0.03);
  --card-hov:   rgba(255, 205, 60, 0.06);

  /* Type */
  --font-d: 'Outfit', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --font-m: 'IBM Plex Mono', 'Courier New', monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.7s;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --nav-h: 72px;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* the hidden attribute must always win over display: rules below */
[hidden] { display: none !important; }
/* visually hidden but available to screen readers + search engines */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* keyboard focus ring (only for keyboard users, never on mouse click) */
:focus-visible { outline: 2px solid var(--ion); outline-offset: 3px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }
/* skip-to-content link for keyboard + screen-reader users */
.skip-link {
  position: fixed; top: 0; left: 0; z-index: 999;
  transform: translateY(-120%);
  background: var(--ion); color: var(--void);
  font-family: var(--font-m); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.75rem 1.25rem;
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: none; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-b);
  background: var(--void);
  color: var(--bone);
  font-size: 15.5px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--ion); color: var(--void); }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--ion);
  outline-offset: 3px;
}

/* ─── Film grain ────────────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  z-index: 400;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(2%, -1.4%); }
  100% { transform: translate(-1.6%, 1%); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

/* ─── Utilities ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); }

.kicker {
  font-family: var(--font-m);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ion);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: '';
  width: 2rem; height: 1px;
  background: var(--ion);
  flex-shrink: 0;
}
.kicker.bare::before { display: none; }

.mono {
  font-family: var(--font-m);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--ion); }

.display-1 { font-size: clamp(2.5rem, 6.6vw, 5.75rem); text-transform: uppercase; }
.display-2 { font-size: clamp(1.8rem, 4vw, 3.3rem); }
.display-3 { font-size: clamp(1.35rem, 2.5vw, 2.05rem); }

.lead {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 300;
  color: var(--bone-dim);
  line-height: 1.75;
  max-width: 62ch;
}
p { color: var(--bone-dim); }
p strong { color: var(--bone); font-weight: 600; }

.rule { height: 1px; background: var(--line); border: none; }

/* Outlined ghost word */
.ghost-word {
  font-family: var(--font-d);
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 241, 246, 0.14);
  letter-spacing: -0.02em;
  user-select: none;
}

/* ─── Reveal-on-scroll ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.94); }

/* Line-mask headline reveal */
.ln { display: block; overflow: hidden; padding-block: 0.06em; margin-block: -0.06em; }
.ln .ln-in {
  display: block;
  transform: translateY(115%);
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--ld, 0s);
  will-change: transform;
}
.in .ln .ln-in, .ln.in .ln-in { transform: none; }

/* Cascading grids: children rise in one after another */
.cascade > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--ci, 0) * 80ms);
}
.cascade.in > * {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .ln .ln-in, .cascade > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.no-motion [data-reveal], .no-motion .ln .ln-in, .no-motion .cascade > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-m);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.45s var(--ease-out);
  white-space: nowrap;
}
.btn .arr { transition: transform 0.45s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }
.btn.down:hover .arr { transform: translateY(5px); }

.btn-fill {
  background: var(--ion);
  color: var(--void);
  border-color: var(--ion);
}
.btn-fill:hover {
  background: var(--ion-hot);
  border-color: var(--ion-hot);
  box-shadow: 0 8px 40px var(--ion-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: var(--ion);
  color: var(--ion-hot);
  transform: translateY(-2px);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ion);
  text-decoration: none;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}
.link-arrow:hover { color: var(--ion-hot); border-bottom-color: var(--ion-hot); gap: 1rem; }

/* ─── Preloader ─────────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease-io), visibility 1s;
}
#preloader.done { transform: translateY(-101%); visibility: hidden; }
.pl-core { text-align: center; }
.pl-brand {
  font-family: var(--font-m);
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  color: var(--bone-dim);
  margin-bottom: 1.25rem;
}
.pl-count {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(3.25rem, 9.5vw, 6.5rem);
  line-height: 1;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.pl-count .pct { color: var(--ion); font-size: 0.4em; vertical-align: super; }
.pl-status {
  font-family: var(--font-m);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 1.25rem;
  min-height: 1em;
}
.pl-bar {
  width: min(280px, 60vw);
  height: 1px;
  background: var(--line-soft);
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.pl-bar i {
  display: block; height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ion), var(--violet));
  transition: width 0.25s linear;
}

/* ─── Progress hairline ─────────────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 2px;
  z-index: 300; pointer-events: none;
}
.progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--ion-deep), var(--ion), var(--violet));
}

/* ─── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 250;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  transition: background 0.5s ease, border-color 0.5s ease, transform 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 6, 11, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
}
.nav.hidden-up { transform: translateY(-100%); }

.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-brand img { height: 40px; width: auto; }

.nav-links { display: flex; gap: 2.4rem; }
.nav-links a {
  font-family: var(--font-m);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--ion);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* Nav dropdowns */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop-btn {
  font-family: var(--font-m);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  transition: color 0.3s;
}
.nav-drop-btn .chev {
  font-size: 0.42rem;
  opacity: 0.5;
  position: relative;
  top: 1px;
  transition: opacity 0.3s;
}
.nav-drop-btn::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--ion);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-drop:hover .nav-drop-btn, .nav-drop.open .nav-drop-btn, .nav-drop-btn.active { color: var(--bone); }
.nav-drop:hover .nav-drop-btn::after, .nav-drop.open .nav-drop-btn::after, .nav-drop-btn.active::after { transform: scaleX(1); transform-origin: left; }
.nav-drop:hover .chev, .nav-drop.open .chev { opacity: 1; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -1.1rem;
  min-width: 230px;
  background: rgba(6, 9, 16, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.3s var(--ease-out), visibility 0.25s;
}
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;   /* keeps hover alive across the gap */
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu, .nav-drop.open .nav-drop-menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav-links .nav-drop-menu a { display: block; padding: 0.6rem 1.15rem; letter-spacing: 0.18em; }
.nav-links .nav-drop-menu a::after { display: none; }
.nav-links .nav-drop-menu a:hover, .nav-links .nav-drop-menu a.active { background: var(--card-hov); color: var(--ion-hot); }

.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.nav-cta {
  font-family: var(--font-m);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--void);
  background: var(--bone);
  padding: 0.68rem 1.3rem;
  transition: all 0.4s var(--ease-out);
}
.nav-cta:hover { background: var(--ion); color: var(--void); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  align-items: center;
  z-index: 260;
}
.burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--bone);
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Full-screen menu */
.menu {
  position: fixed; inset: 0;
  z-index: 240;
  background: var(--void-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.8s var(--ease-io), visibility 0.8s;
}
.menu.open { clip-path: inset(0 0 0% 0); visibility: visible; }
.menu-links { list-style: none; }
.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  font-family: var(--font-d);
  font-size: clamp(1.7rem, 6vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--bone);
  padding: 0.35rem 0;
  transition: color 0.3s, transform 0.5s var(--ease-out);
}
.menu-links a .idx {
  font-family: var(--font-m);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--mute);
}
.menu-links a:hover { color: var(--ion); transform: translateX(12px); }
.menu-links a { opacity: 0; transform: translateY(24px); }
.menu.open .menu-links a {
  opacity: 1; transform: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s;
}
.menu.open .menu-links li:nth-child(1) a { transition-delay: 0.18s; }
.menu.open .menu-links li:nth-child(2) a { transition-delay: 0.24s; }
.menu.open .menu-links li:nth-child(3) a { transition-delay: 0.30s; }
.menu.open .menu-links li:nth-child(4) a { transition-delay: 0.36s; }
.menu.open .menu-links li:nth-child(5) a { transition-delay: 0.42s; }
.menu.open .menu-links li:nth-child(6) a { transition-delay: 0.48s; }
.menu.open .menu-links li:nth-child(7) a { transition-delay: 0.54s; }
.menu-meta {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.menu-meta a { color: var(--bone-dim); text-decoration: none; }
.menu-meta a:hover { color: var(--ion); }

/* ─── 3D stage & atmospheric punch-through ──────────────────────── */
#stage {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
}
#stage canvas { display: block; width: 100%; height: 100%; }

#haze {
  position: fixed; inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  /* atmospheric punch-through: a bright cloud wash that masks the
     scene swap from the orbital dive to the Mustang terrain */
  background:
    radial-gradient(ellipse at 50% 55%, rgba(255, 255, 255, 0.96), rgba(200, 216, 238, 0.94) 45%, rgba(120, 146, 188, 0.96) 100%);
}

/* Static fallback backdrop (no WebGL / reduced motion) */
.no-webgl #stage, .no-motion #stage { display: none; }
.no-webgl #haze, .no-motion #haze { display: none; }
.backdrop-static {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 78% 6%, rgba(255, 205, 60, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 12% 96%, rgba(246, 178, 27, 0.08), transparent 60%),
    var(--void);
  display: none;
}
.no-webgl .backdrop-static, .no-motion .backdrop-static, .static-page .backdrop-static { display: block; }

/* ─── Telemetry HUD ─────────────────────────────────────────────── */
.hud {
  position: fixed;
  left: var(--gutter);
  bottom: 2rem;
  z-index: 90;
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  text-transform: uppercase;
}
.hud.on { opacity: 1; }
.hud.on.dim { opacity: 0.4; }
.hud-row { display: flex; gap: 0.9rem; padding: 0.14rem 0; }
.hud-row .k { color: var(--mute); width: 4em; }
.hud-row .v { color: var(--bone); font-variant-numeric: tabular-nums; min-width: 12ch; }
.hud-row .v.hot { color: var(--warn); }
.hud-status { margin-top: 0.5rem; color: var(--ion); }
.hud-status::before { content: '● '; animation: blink 1.6s step-end infinite; }
@keyframes blink { 50% { opacity: 0.15; } }

.scene-tag {
  position: fixed;
  right: var(--gutter);
  bottom: 2rem;
  z-index: 90;
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.scene-tag.on { opacity: 1; }
.scene-tag .num { color: var(--bone); }

@media (max-width: 760px) { .hud, .scene-tag { display: none; } }

/* ─── Scroll cue ────────────────────────────────────────────────── */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-m);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mute);
}
.scroll-cue .line {
  width: 1px; height: 52px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--ion);
  animation: cueDrop 2s var(--ease-io) infinite;
}
@keyframes cueDrop { 0% { top: -50%; } 70%, 100% { top: 110%; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue .line::after { animation: none; } }

/* ─── Planet dossier (hero easter egg) ──────────────────────────── */
.planet-card {
  position: fixed;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  z-index: 95;
  width: min(360px, 86vw);
  background: rgba(6, 9, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--ion-deep);
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), visibility 0.5s;
}
.planet-card.on { opacity: 1; visibility: visible; transform: translateY(-50%); }
.planet-card .kicker { margin-bottom: 1rem; }
.planet-card h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.planet-card .rows { border-top: 1px solid var(--line-soft); }
.planet-card .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.planet-card .row .k { color: var(--mute); }
.planet-card .row .v { color: var(--bone); text-align: right; }
.planet-card .note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--bone-dim);
  line-height: 1.6;
}
.planet-card .close {
  margin-top: 1.4rem;
  width: 100%;
  justify-content: center;
}
@media (max-width: 760px) {
  .planet-card { right: 50%; transform: translate(50%, -50%) translateY(30px); }
  .planet-card.on { transform: translate(50%, -50%); }
}

/* Hover name chip for clickable planets */
.planet-hint {
  position: fixed;
  z-index: 96;
  pointer-events: none;
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ion);
  padding: 0.3rem 0.7rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.planet-hint.on { opacity: 1; }

/* Geo attribution (required by imagery providers, shown over real terrain) */
.geo-credit {
  position: fixed;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  z-index: 90;
  font-family: var(--font-m);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 241, 246, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  white-space: nowrap;
}
.geo-credit.on { opacity: 1; }

.hero-tip {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-tip::before { content: '◈'; color: var(--ion); }

/* ════════════════════════════════════════════════════════════════
   LANDING — ACTS
════════════════════════════════════════════════════════════════ */
.act { position: relative; z-index: 10; }

/* Scrims: uniform light veil — the JS canvas dimmer does the heavy
   lifting, so the live backdrop stays consistently visible behind
   every reading section instead of popping in and out */
.act-why, .act-academy { background: rgba(4, 6, 11, 0.62); }
.act-roadmap { background: linear-gradient(180deg, rgba(4, 6, 11, 0.62), rgba(4, 6, 11, 0.38)); }
.act-night { background: transparent; }
.act-cta { background: linear-gradient(180deg, rgba(4, 6, 11, 0.2), rgba(4, 6, 11, 0.8) 60%); }

/* Hero entrance (fires when the preloader lifts) */
.hero-inner > *:not(h1) {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-inner.in > *:not(h1) { opacity: 1; transform: none; }
.hero-inner.in .hero-badge { transition-delay: 0.05s; }
.hero-inner.in .hero-kicker { transition-delay: 0.15s; }
.hero-inner.in .hero-sub { transition-delay: 0.55s; }
.hero-inner.in .hero-actions { transition-delay: 0.7s; }
.hero-inner.in .ln:nth-child(1) .ln-in { transition-delay: 0.2s; }
.hero-inner.in .ln:nth-child(2) .ln-in { transition-delay: 0.32s; }
.hero-inner.in .ln:nth-child(3) .ln-in { transition-delay: 0.44s; }
.no-motion .hero-inner > *, .no-webgl .hero-inner > * {
  opacity: 1 !important; transform: none !important;
}
.no-webgl .ln .ln-in { transform: none !important; transition: none !important; }

/* ACT 1 · HERO */
.act-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 6rem;
  position: relative;
}
.hero-kicker { margin-bottom: 1.75rem; }
.hero-title { max-width: 14ch; font-size: clamp(2.1rem, 5.2vw, 4.7rem); }
.hero-sub {
  margin-top: 2rem;
  max-width: 54ch;
}
/* clarity strip: the "what we run" lands in the first second */
.hero-pillars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin-top: 1.5rem;
  max-width: 60ch;
}
.hero-pillars li a {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-decoration: none;
  padding: 0.42rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.hero-pillars li a:hover {
  color: var(--void);
  background: var(--ion);
  border-color: var(--ion);
}
.hero-inner.in .hero-pillars { transition-delay: 0.62s; }
.hero-actions { margin-top: 2rem; }
.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 2.25rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}

@media (max-width: 760px) {
  .hero-meta { display: none; }
  .act-hero { padding-bottom: 8rem; }
  /* Scrim so the headline stays readable over the scene on portrait */
  .act-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(4, 6, 11, 0.2), rgba(4, 6, 11, 0.6) 45%, rgba(4, 6, 11, 0.85));
    pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 1; }
  .hero-title, .hero-sub { text-shadow: 0 2px 30px rgba(4, 6, 11, 0.9); }
}

/* ACT 2 · THE GRAND TOUR (sticky scrubbed journey) */
.act-journey { height: 340vh; }
.journey-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.stop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  /* extra bottom padding lifts the centred card clear of the corner HUD */
  padding: calc(var(--nav-h) + 1rem) var(--gutter) clamp(6rem, 20vh, 15rem);
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}
.stop[data-side="left"] { justify-content: flex-start; }
.stop[data-side="right"] { justify-content: flex-end; }
.stop[data-side="center"] { justify-content: center; text-align: center; }
.stop-card {
  max-width: 470px;
  /* solid panel, no backdrop-filter: live blur over a WebGL canvas
     forces per-scroll repaints that read as flicker on many GPUs */
  background: rgba(6, 9, 16, 0.82);
  border: 1px solid var(--line-soft);
  padding: clamp(1.5rem, 2.6vw, 2.5rem);
}
.stop[data-side="center"] .stop-card { max-width: 620px; }
.stop-card .snum {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 241, 246, 0.3);
  margin-bottom: 1.25rem;
}
.stop[data-side="center"] .stop-card .snum { margin-inline: auto; }
.stop-card .kicker { margin-bottom: 0.9rem; }
.stop[data-side="center"] .stop-card .kicker { justify-content: center; }
.stop-card h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 0.9rem; }
.stop-card p { font-size: 0.9rem; line-height: 1.7; }
.stop-card .sfeats {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.25rem;
}
.stop[data-side="center"] .stop-card .sfeats { justify-content: center; }
.stop-card .sfeats span {
  font-family: var(--font-m);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line-soft);
  padding: 0.38rem 0.75rem;
}
.stop-card .link-arrow { margin-top: 1.5rem; }

@media (max-width: 760px) {
  .stop { justify-content: center !important; }
  .stop-card { max-width: 92vw; }
}

/* Static fallback: stops stack as normal sections */
.no-motion .act-journey, .no-webgl .act-journey { height: auto; }
.no-motion .journey-pin, .no-webgl .journey-pin { position: static; height: auto; overflow: visible; }
.no-motion .stop, .no-webgl .stop {
  position: static; opacity: 1 !important; transform: none !important;
  pointer-events: auto; padding: 3rem var(--gutter);
}

/* ACT 3 · WHY (editorial + comparison) */
.act-why { padding: 8rem var(--gutter); }
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.why-sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
.why-copy p + p { margin-top: 1.4rem; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-sticky { position: static; }
}
.compare-stack { margin-top: 3rem; display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.compare-row {
  background: var(--void);
  padding: 1.6rem 1.9rem;
  display: grid;
  grid-template-columns: minmax(140px, 0.75fr) 1.25fr;
  gap: 1.5rem;
  align-items: baseline;
  transition: background 0.4s ease;
}
.compare-row h4 { font-size: 1rem; letter-spacing: 0; }
.compare-row p { font-size: 0.86rem; margin: 0; }
.compare-row .mono { display: block; margin-bottom: 0.4rem; }
.compare-row.us {
  background: linear-gradient(90deg, rgba(255, 205, 60, 0.12), rgba(246, 178, 27, 0.04));
  border-left: 2px solid var(--ion);
}
.compare-row.us h4 { color: var(--ion-hot); }
@media (max-width: 640px) { .compare-row { grid-template-columns: 1fr; gap: 0.4rem; } }

/* Stat band */
.stat-band {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat-cell {
  padding: 1.8rem 1.8rem 2.1rem 0;
  border-right: 1px solid var(--line-soft);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .num {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.stat-cell .num .suffix { color: var(--ion); font-size: 0.55em; }
.stat-cell .lbl {
  margin-top: 0.8rem;
  font-family: var(--font-m);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 1.5rem 1.2rem 1.7rem 0; }
  .stat-cell:nth-child(2) { border-right: none; }
}

/* ACT 4 · ACADEMY LADDER */
.act-academy { padding: 8rem var(--gutter); }
.ladder { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.rung {
  display: grid;
  grid-template-columns: 120px 1.1fr 0.8fr 1.1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.7rem 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  transition: background 0.4s ease, padding-left 0.4s var(--ease-out);
  position: relative;
}
.rung:hover { background: var(--card-hov); padding-left: 1.25rem; }
.rung .lv {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ion);
  letter-spacing: -0.02em;
}
.rung .nm { font-family: var(--font-d); font-weight: 700; font-size: 1.05rem; color: var(--bone); }
.rung .du, .rung .earn { font-size: 0.82rem; color: var(--bone-dim); }
.rung .go {
  font-family: var(--font-m);
  color: var(--mute);
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.rung:hover .go { color: var(--ion); transform: translateX(6px); }
.rung.flagship::before {
  content: 'FLAGSHIP';
  position: absolute;
  top: 0.8rem; right: 0.5rem;
  font-family: var(--font-m);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--ion);
}
@media (max-width: 900px) {
  .rung { grid-template-columns: 90px 1fr auto; }
  .rung .du, .rung .earn { display: none; }
}
.price-strip {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.price-cell {
  flex: 1 1 200px;
  background: var(--void);
  padding: 1.5rem 1.6rem;
  transition: background 0.4s;
}
.price-cell:hover { background: var(--card-hov); }
.price-cell .rg { display: block; margin-bottom: 0.6rem; color: var(--ion); }
.price-cell .am {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.price-cell .nt { font-size: 0.75rem; color: var(--mute); margin-top: 0.35rem; }

/* ACT 5 · ROADMAP */
.act-roadmap { padding: 8rem var(--gutter); }
.phases {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  position: relative;
}
.phases::before {
  content: '';
  position: absolute;
  top: 5px; left: 0;
  width: 100%; height: 1px;
  background: var(--line-soft);
}
.phase-col { position: relative; padding-top: 2.2rem; }
.phase-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 11px; height: 11px;
  background: var(--void);
  border: 1px solid var(--ion);
  transform: rotate(45deg);
}
.phase-col .ph-when { display: block; color: var(--ion); margin-bottom: 0.7rem; }
.phase-col h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.phase-col p { font-size: 0.83rem; line-height: 1.7; }
.phase-col .ph-fund {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: var(--font-m);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--line-soft);
  padding: 0.35rem 0.85rem;
}
@media (max-width: 980px) {
  .phases { grid-template-columns: 1fr 1fr; }
  .phases::before { display: none; }
  .phase-col { border-top: 1px solid var(--line-soft); }
}
@media (max-width: 560px) { .phases { grid-template-columns: 1fr; } }

/* ACT 6 · NIGHT */
.act-night {
  min-height: 120vh;
  display: flex;
  align-items: center;
  padding: 9rem var(--gutter);
}
.night-quote { max-width: 950px; margin-inline: auto; text-align: center; }
.night-quote .q {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.8vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 50px rgba(4, 6, 11, 0.9);
}
.night-quote .q em { color: var(--violet); font-style: normal; }
.night-quote .attr { margin-top: 2rem; }
.night-quote .link-arrow { margin-top: 2.5rem; }

/* ACT 7 · CTA */
.act-cta {
  padding: 10rem var(--gutter) 8rem;
  text-align: center;
}
.cta-title { max-width: 16ch; margin-inline: auto; }
.act-cta .lead { margin: 2rem auto 0; text-align: center; }
.act-cta .btn-group { justify-content: center; margin-top: 2.75rem; }
.cta-meta {
  margin-top: 4.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   SUB-PAGES
════════════════════════════════════════════════════════════════ */
.static-page { background: var(--void); }
#starfield {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.static-page main, .static-page .page-hero, .static-page .footer { position: relative; z-index: 10; }

.page-hero {
  padding: calc(var(--nav-h) + clamp(3.5rem, 9vh, 7rem)) var(--gutter) 3.5rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
/* Sub-page hero entrance on load */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.static-page .page-hero .kicker,
.static-page .page-hero h1,
.static-page .page-hero .lead,
.static-page .page-hero-meta {
  opacity: 0;
  animation: heroRise 0.9s var(--ease-out) forwards;
}
.static-page .page-hero .kicker { animation-delay: 0.05s; }
.static-page .page-hero h1 { animation-delay: 0.15s; }
.static-page .page-hero .lead { animation-delay: 0.3s; }
.static-page .page-hero-meta { animation-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
  .static-page .page-hero .kicker,
  .static-page .page-hero h1,
  .static-page .page-hero .lead,
  .static-page .page-hero-meta { animation: none; opacity: 1; }
}
.page-hero .kicker { margin-bottom: 1.6rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  text-transform: uppercase;
  max-width: 18ch;
}
.page-hero .lead { margin-top: 1.6rem; }
.page-hero-meta {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-section { padding: clamp(4rem, 8vh, 6.5rem) var(--gutter); }
.page-section + .page-section { border-top: 1px solid var(--line-soft); }
.page-section .kicker { margin-bottom: 1.4rem; }
.page-section h2.display-2, .page-section h2.display-3 { max-width: 26ch; }
.page-section .lead { margin-top: 1.4rem; }

/* Editorial split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.split.rev { grid-template-columns: 0.95fr 1.05fr; }
.split .side { position: sticky; top: calc(var(--nav-h) + 2rem); }
.split .copy p + p { margin-top: 1.3rem; }
@media (max-width: 860px) {
  .split, .split.rev { grid-template-columns: 1fr; }
  .split .side { position: static; }
}

/* Spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 2.75rem;
}
.spec {
  background: var(--void);
  padding: 1.8rem;
  transition: background 0.4s ease;
  position: relative;
}
.spec:hover { background: var(--card-hov); }
a.spec { text-decoration: none; color: inherit; display: block; }
a.spec:hover { background: var(--card-hov); }
.spec .link-arrow { margin-top: 1.1rem; }
.spec .sn { display: block; color: var(--ion); margin-bottom: 1rem; }
.spec h4 { font-size: 1.02rem; margin-bottom: 0.55rem; }
.spec p { font-size: 0.85rem; line-height: 1.7; margin: 0; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.chip {
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  padding: 0.48rem 0.95rem;
}
.chip.hot { color: var(--ion); border-color: var(--ion-deep); }

/* CMS image blocks */
.cms-figure { margin: 0; }
.cms-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  display: block;
}
.cms-figure.size-wide { max-width: 900px; }
.cms-figure.size-full { max-width: none; }
.cms-figure.align-center { margin-inline: auto; }
.cms-figure.align-right { margin-left: auto; }
.cms-figure figcaption {
  margin-top: 0.9rem;
  font-family: var(--font-m);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.cms-split-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  display: block;
}

/* Metric hero */
.metric {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.metric .big {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.9rem, 7.5vw, 5.25rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ion);
  font-variant-numeric: tabular-nums;
}
.metric .cap { max-width: 34ch; color: var(--bone-dim); font-size: 0.9rem; }

/* Data table */
.table-scroll { overflow-x: auto; margin-top: 2.75rem; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th, .data-table td {
  text-align: left;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.data-table thead th {
  font-family: var(--font-m);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ion);
  border-bottom: 1px solid var(--line);
}
.data-table tbody tr { transition: background 0.3s; }
.data-table tbody tr:hover { background: var(--card-hov); }
.data-table td strong { font-family: var(--font-d); color: var(--bone); font-size: 1rem; }
.data-table td { color: var(--bone-dim); }

/* Package cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.pkg {
  border: 1px solid var(--line-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: var(--card);
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
  position: relative;
}
.pkg:hover { transform: translateY(-6px); border-color: var(--line); }
.pkg.featured { border-color: var(--ion); background: linear-gradient(180deg, rgba(255, 205, 60, 0.08), transparent 55%); }
.pkg.featured::before {
  content: attr(data-flag);
  position: absolute;
  top: -1px; right: -1px;
  font-family: var(--font-m);
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--ion);
  color: var(--void);
  padding: 0.45rem 0.9rem;
}
.pkg .tier { color: var(--ion); display: block; margin-bottom: 1rem; }
.pkg .name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--bone);
  line-height: 1;
}
.pkg .sub { font-size: 0.78rem; color: var(--mute); margin-top: 0.5rem; }
.pkg .price {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ion);
  margin: 1.3rem 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-soft);
}
.pkg ul { list-style: none; margin-top: auto; }
.pkg ul li {
  font-size: 0.82rem;
  color: var(--bone-dim);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  line-height: 1.55;
}
.pkg ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--ion);
}

/* Bullet lists (editorial) */
.tick-list { list-style: none; }
.tick-list li {
  padding: 0.52rem 0 0.52rem 1.7rem;
  position: relative;
  color: var(--bone-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  border-bottom: 1px solid var(--line-soft);
}
.tick-list li:last-child { border-bottom: none; }
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.15em;
  width: 7px; height: 7px;
  background: transparent;
  border: 1px solid var(--ion);
  transform: rotate(45deg);
}

/* FAQ */
.faq { margin-top: 2.75rem; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0.25rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.02rem;
  transition: color 0.3s;
}
.faq-item summary:hover { color: var(--ion-hot); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-m);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ion);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0.25rem 1.5rem; font-size: 0.89rem; max-width: 70ch; }

/* Timeline (vertical, subpages) */
.vtimeline { margin-top: 2.75rem; border-left: 1px solid var(--line-soft); padding-left: 2.5rem; }
.vt-item { position: relative; padding-bottom: 2.75rem; }
.vt-item:last-child { padding-bottom: 0; }
.vt-item::before {
  content: '';
  position: absolute;
  left: calc(-2.5rem - 5px);
  top: 6px;
  width: 9px; height: 9px;
  background: var(--void);
  border: 1px solid var(--ion);
  transform: rotate(45deg);
}
.vt-item .when { color: var(--ion); display: block; margin-bottom: 0.5rem; }
.vt-item h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.vt-item p { font-size: 0.86rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.member {
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 1.8rem;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}
.member:hover { transform: translateY(-6px); border-color: var(--ion); }
.member .photo {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.6s ease;
  margin-bottom: 1.4rem;
}
.member:hover .photo { filter: grayscale(0%); }
.member .role { color: var(--ion); display: block; margin-bottom: 0.5rem; }
.member h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.member p { font-size: 0.82rem; color: var(--mute); margin: 0; line-height: 1.6; }

/* Careers */
.job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 0.25rem;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.4s var(--ease-out), background 0.4s;
}
.job:first-of-type { border-top: 1px solid var(--line-soft); }
.job:hover { background: var(--card-hov); padding-left: 1.25rem; }
.job h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.job .meta { font-family: var(--font-m); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }

/* Job cards: expandable description + apply */
.job-card { border-bottom: 1px solid var(--line-soft); }
.job-card:first-of-type { border-top: 1px solid var(--line-soft); }
.job-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0.25rem;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: padding-left 0.4s var(--ease-out), background 0.4s;
}
.job-head:hover, .job-card.open .job-head { background: var(--card-hov); padding-left: 1.25rem; }
.job-head h3 { font-family: var(--font-d); font-size: 1.15rem; margin-bottom: 0.4rem; }
.job-head .meta { font-size: 0.62rem; letter-spacing: 0.16em; color: var(--mute); }
.job-tgl {
  font-family: var(--font-m);
  font-size: 1.3rem;
  color: var(--ion);
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.3s;
}
.job-body {
  display: none;
  padding: 0.25rem 0.25rem 2rem;
}
.job-card.open .job-body { display: block; animation: jobIn 0.45s var(--ease-out); }
@keyframes jobIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.job-desc { max-width: 76ch; color: var(--bone-dim); }
.job-desc p { margin-bottom: 0.9rem; }
.job-desc strong { color: var(--bone); }
.job-body .job-apply { margin-top: 0.75rem; }

/* Application modal */
.apply-modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 1.25rem; }
.apply-backdrop { position: absolute; inset: 0; background: rgba(2, 3, 7, 0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.apply-card {
  position: relative;
  width: min(660px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--void-2);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.apply-card h3 { font-size: 1.5rem; margin: 0.7rem 0 1.5rem; }
.apply-x {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none; color: var(--bone-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.apply-x:hover { border-color: var(--ion); color: var(--ion); }
.af-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.apply-card label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.apply-card .af-full { margin-top: 1rem; }
.apply-card input, .apply-card select, .apply-card textarea {
  font-family: var(--font-b);
  font-size: 0.92rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--bone);
  background: rgba(238, 241, 246, 0.04);
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s;
  width: 100%;
}
.apply-card input:focus, .apply-card select:focus, .apply-card textarea:focus { outline: none; border-color: var(--ion); }
.apply-card select { appearance: none; }
.apply-card select option { background: var(--void-2); }
.apply-card textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.apply-card input[type="file"] { padding: 0.55rem 0.85rem; font-size: 0.8rem; color: var(--bone-dim); }
.af-actions { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.5rem; flex-wrap: wrap; }
.af-status { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--ion); }
.contact-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.form-status { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--ion); }
@media (max-width: 620px) { .af-grid { grid-template-columns: 1fr; } }

/* Transmission overlay after submit */
.apply-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(4, 6, 11, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: aoFade 0.4s var(--ease-out);
}
@keyframes aoFade { from { opacity: 0; } to { opacity: 1; } }
.ao-core { text-align: center; padding: 2rem; max-width: 30ch; }
.ao-ring {
  width: 62px; height: 62px;
  margin: 0 auto 1.75rem;
  border: 2px solid var(--line);
  border-top-color: var(--ion);
  border-right-color: var(--ion);
  border-radius: 50%;
  animation: aoSpin 0.8s linear infinite;
}
@keyframes aoSpin { to { transform: rotate(360deg); } }
.ao-text {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  line-height: 1.9;
  color: var(--bone);
}
.apply-overlay.done .ao-ring {
  animation: none;
  border-color: var(--ion);
  position: relative;
}
.apply-overlay.done .ao-ring::after {
  content: '';
  position: absolute;
  left: 20px; top: 10px;
  width: 14px; height: 28px;
  border: solid var(--ion);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  animation: aoCheck 0.4s var(--ease-out);
}
@keyframes aoCheck { from { opacity: 0; transform: rotate(45deg) scale(0.4); } to { opacity: 1; transform: rotate(45deg) scale(1); } }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block { margin-bottom: 2.1rem; }
.contact-block .mono { display: block; margin-bottom: 0.5rem; color: var(--ion); }
.contact-block p, .contact-block a { color: var(--bone-dim); font-size: 0.9rem; text-decoration: none; line-height: 1.7; }
.contact-block a:hover { color: var(--ion-hot); }

.form { display: grid; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0.1rem;
  color: var(--bone);
  font-family: var(--font-b);
  font-size: 0.95rem;
  border-radius: 0;
  transition: border-color 0.35s;
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--void-2); color: var(--bone); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--ion);
}
.field textarea { min-height: 140px; resize: vertical; }

/* Legal prose */
.prose { max-width: 76ch; }
.prose h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--line-soft);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose p { margin-bottom: 1.05rem; font-size: 0.9rem; }
.prose ul { margin: 0 0 1.2rem 1.4rem; color: var(--bone-dim); font-size: 0.9rem; }
.prose ul li { margin-bottom: 0.5rem; }

/* CTA banner (subpages) */
.banner {
  margin: clamp(3.5rem, 8vh, 6rem) var(--gutter);
  border: 1px solid var(--line-soft);
  padding: clamp(2.75rem, 6.5vw, 5.5rem) clamp(1.75rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 50% 115%, rgba(255, 205, 60, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% -15%, rgba(246, 178, 27, 0.09), transparent 65%),
    var(--card);
}
.banner h2 { font-size: clamp(1.65rem, 3.6vw, 2.8rem); max-width: 22ch; margin-inline: auto; text-transform: uppercase; }
.banner p { max-width: 52ch; margin: 1.4rem auto 0; }
.banner .btn-group { justify-content: center; margin-top: 2.25rem; }

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 20;
  background: var(--void);
  border-top: 1px solid var(--line-soft);
  padding: 4.5rem var(--gutter) 0;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.25rem;
}
.footer-brand img { height: 42px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.84rem; max-width: 30ch; }
.footer-brand .mono { display: block; margin-top: 1.2rem; }
.footer-brand a { color: var(--ion); text-decoration: none; }
.footer-brand a:hover { color: var(--ion-hot); }
.footer-col h4 {
  font-family: var(--font-m);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col a:hover { color: var(--ion-hot); padding-left: 4px; }
.footer-base {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-base .legal { display: flex; gap: 1.75rem; }
.footer-base a { color: var(--mute); text-decoration: none; }
.footer-base a:hover { color: var(--bone); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* The Big Footer brand mark — the real Vyom Labs logo, presented large */
.footer-biglogo {
  display: block;
  padding: 3.5rem 0 3rem;
  position: relative;
}
.footer-biglogo::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(560px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.footer-biglogo img {
  display: block;
  margin-inline: auto;
  width: min(400px, 52vw);
  height: auto;
  filter: drop-shadow(0 0 42px rgba(255, 205, 60, 0.24));
}
.footer-biglogo .mono {
  display: block;
  text-align: center;
  margin-top: 1.4rem;
  letter-spacing: 0.42em;
  color: var(--mute);
}

/* ─── Responsive: nav ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  .burger { display: flex; }
}
@media (min-width: 981px) {
  .menu { display: none; }
}

/* ─── Section heading rows ──────────────────────────────────────── */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.sec-head .kicker { margin-bottom: 1.25rem; }
.sec-head .idx {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--mute);
  white-space: nowrap;
  padding-bottom: 0.5rem;
}

/* ════════════════════════════════════════════════════════════════
   VYOM VIEW — real-time solar system simulator
════════════════════════════════════════════════════════════════ */
.vv-page { overflow: hidden; height: 100vh; background: #030409; }
.vv-stage { position: fixed; inset: 0; z-index: 1; }
.vv-stage canvas { display: block; }

.vv-clock-wrap {
  position: fixed;
  top: calc(var(--nav-h) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
}
.vv-clock {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--bone);
  background: none;
  border: none;
  border-bottom: 1px dashed transparent;
  cursor: pointer;
  pointer-events: auto;
  padding: 0.1rem 0.2rem;
  transition: color 0.25s, border-color 0.25s;
}
.vv-clock:hover { color: var(--ion); border-bottom-color: var(--ion-deep); }
.vv-live {
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--mute);
  transition: color 0.3s;
}
.vv-live.on { color: #46d38a; }
.vv-live.warp { color: var(--ion-hot); animation: vvWarpPulse 0.9s ease-in-out infinite; }
@keyframes vvWarpPulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* Time-travel console */
.vv-travel {
  position: fixed;
  top: calc(var(--nav-h) + 5.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  width: min(360px, 92vw);
  background: rgba(6, 9, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ion-deep);
  padding: 1.4rem;
  animation: vvTravelIn 0.35s var(--ease-out);
}
@keyframes vvTravelIn { from { opacity: 0; transform: translateX(-50%) translateY(-10px); } to { opacity: 1; transform: translateX(-50%); } }
.vv-travel .kicker { margin-bottom: 1rem; }
.vv-travel-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.vv-travel-fields label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-m);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: var(--mute);
}
.vv-travel-fields input {
  font-family: var(--font-m);
  font-size: 0.82rem;
  color: var(--bone);
  background: rgba(238, 241, 246, 0.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.55rem 0.6rem;
  color-scheme: dark;
}
.vv-travel-fields input:focus { outline: none; border-color: var(--ion); }
.vv-travel-actions { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.vv-travel-actions .btn { flex: 1; justify-content: center; }

/* Back to system: fixed top-left, just under the nav logo; appears only
   while a body is selected */
.vv-back {
  position: fixed;
  top: calc(var(--nav-h) + 0.9rem);
  left: var(--gutter);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
  background: rgba(6, 9, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.6rem 0.95rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out), visibility 0.3s, color 0.2s, border-color 0.2s;
}
.vv-back.on { opacity: 1; visibility: visible; transform: none; }
.vv-back:hover { color: var(--ion); border-color: var(--ion); }
.vv-range {
  font-size: 0.55rem;
  color: var(--warn);
  opacity: 0;
  transition: opacity 0.3s;
}
.vv-range.on { opacity: 1; }

.vv-panel {
  position: fixed;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  z-index: 60;
  width: min(340px, 86vw);
  background: rgba(6, 9, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--ion-deep);
  padding: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.4s;
}
.vv-panel.on { opacity: 1; visibility: visible; transform: translateY(-50%); }
/* collapsed: slide the whole panel off the right edge, leaving only the
   handle tab at the screen edge */
.vv-panel.on.collapsed { transform: translateY(-50%) translateX(calc(100% + var(--gutter))); }
.vv-panel h3 { font-size: 1.6rem; text-transform: uppercase; margin: 0.7rem 0 1rem; }

/* edge handle: sticks out on the panel's left; when the panel slides
   away it lands at the right screen edge as the expand tab */
.vv-handle {
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 76px;
  display: grid;
  place-items: center;
  background: rgba(6, 9, 18, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--ion-deep);
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: var(--bone-dim);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.vv-handle:hover { color: var(--ion); border-color: var(--ion); }
.vv-handle .chev { font-size: 0.85rem; line-height: 1; transition: transform 0.35s var(--ease-out); }
/* arrow points right (collapse →) when open, left (← expand) when collapsed */
.vv-panel.collapsed .vv-handle .chev { transform: rotate(180deg); }
.vv-rows { border-top: 1px solid var(--line-soft); }
.vv-rows .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-m);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vv-rows .row .k { color: var(--mute); }
.vv-rows .row .v { color: var(--ion); text-align: right; }
.vv-rows.static { margin-top: 0.6rem; border-top: none; }
.vv-rows.static .row .v { color: var(--bone); }
.vv-pov { width: 100%; justify-content: center; margin-top: 1.2rem; }
.vv-pov.active { background: var(--warn); border-color: var(--warn); }

.vv-deck {
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(6, 9, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
}
.vv-tbtn {
  font-size: 0.95rem;
  color: var(--bone);
  border: 1px solid var(--line);
  border-radius: 7px;
  width: 44px;
  height: 40px;
  transition: all 0.2s;
}
.vv-tbtn:hover { border-color: var(--ion); color: var(--ion); }
.vv-speed-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; min-width: 150px; }
.vv-speed { font-size: 0.66rem; letter-spacing: 0.2em; color: var(--ion); }
.vv-reset {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--mute);
  transition: color 0.2s;
}
.vv-reset:hover { color: var(--bone); }

.vv-hint {
  position: fixed;
  left: var(--gutter);
  bottom: 1.8rem;
  z-index: 55;
  font-size: 0.55rem;
  color: var(--mute);
  pointer-events: none;
}
.vv-credit {
  position: fixed;
  right: var(--gutter);
  bottom: 1.8rem;
  z-index: 55;
  font-size: 0.5rem;
  color: rgba(238, 241, 246, 0.32);
  pointer-events: none;
  text-align: right;
  max-width: 320px;
}
@media (max-width: 820px) {
  .vv-hint, .vv-credit { display: none; }
  .vv-panel { right: 50%; transform: translate(50%, -50%) translateY(30px); top: auto; bottom: 6.5rem; transform: translateX(50%); max-height: 46vh; overflow-y: auto; }
  .vv-panel.on { transform: translateX(50%); }
}

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
  background: var(--void);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee span::after { content: '◆'; color: var(--ion); font-size: 0.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
