/* ============================================================
   Batch Zero — site.css
   Dark, instrument-panel aesthetic. Space Grotesk + JetBrains Mono.
   ============================================================ */

:root {
  --bg: #07080a;
  --bg-2: #0c0e11;
  --surface: #101216;
  --surface-2: #15181d;
  --line: rgba(245, 245, 240, 0.09);
  --line-strong: rgba(245, 245, 240, 0.18);
  --ink: #f5f5f0;
  --muted: #8b9098;
  --muted-2: #5c626b;
  --accent: #3b6cff;
  --accent-2: #7aa0ff;
  --accent-dim: rgba(59, 108, 255, 0.16);
  --accent-glow: rgba(59, 108, 255, 0.45);
  --ok: #38d996;
  --font: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1240px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ---------- ambient layers ---------- */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 0%, transparent 100%);
  opacity: 0.55;
}
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.spot {
  position: fixed; z-index: 0; pointer-events: none; width: 700px; height: 700px; border-radius: 50%;
  left: 0; top: 0; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,108,255,0.10) 0%, rgba(59,108,255,0) 60%);
  transition: opacity .4s; opacity: 0;
}
body.has-mouse .spot { opacity: 1; }

/* ---------- type ---------- */
.mono { font-family: var(--mono); font-feature-settings: "zero" 1, "ss01" 1; }
.label {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 10px;
}
.label::before { content: "["; color: var(--accent); }
.label::after { content: "]"; color: var(--accent); }
.label.plain::before, .label.plain::after { content: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(42px, 6.2vw, 84px); }
h2 { font-size: clamp(32px, 4.2vw, 56px); }
h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.01em; }
p { margin: 0; }
.lede { font-size: clamp(17px, 1.4vw, 21px); color: var(--muted); max-width: 58ch; }
.accent { color: var(--accent-2); }
.dim { color: var(--muted); }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- layout ---------- */
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; z-index: 1; }
section { position: relative; z-index: 1; padding: clamp(72px, 9vw, 128px) 0; }
section + section { border-top: 1px solid var(--line); }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 5vw, 64px); max-width: 820px; }
.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } .wrap { width: calc(100% - 32px); } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled { background: rgba(7,8,10,0.72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.01em; }
.brand img { height: 26px; width: auto; }
.brand span { font-size: 15px; white-space: nowrap; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { padding: 8px 12px; border-radius: 999px; font-size: 14px; color: var(--muted); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.burger { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 8px; width: 40px; height: 40px; cursor: pointer; }
.burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); margin: 3px auto; transition: transform .25s, opacity .25s; }
.mobile-menu { display: none; position: fixed; inset: var(--nav-h) 0 0 0; background: rgba(7,8,10,0.96); z-index: 49; padding: 24px; }
.mobile-menu a { display: block; padding: 16px 8px; border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 600; }
body.menu-open .mobile-menu { display: block; }
body.menu-open .burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
@media (max-width: 860px) { .nav-links, .nav-cta .btn-ghost { display: none; } .burger { display: block; } }
@media (max-width: 480px) { .brand span { display: none; } .hud-tag.c { display: none; } .hud-tag { font-size: 10px; } }

/* ---------- buttons ---------- */
.btn {
  --pad: 14px 22px;
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad); border-radius: 10px; font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s, color .25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 0 0 0 var(--accent-glow); }
.btn-primary:hover { background: #4d7aff; box-shadow: 0 10px 40px -10px var(--accent-glow), 0 0 0 4px rgba(59,108,255,0.12); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.03); border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }
.btn-sm { --pad: 10px 16px; font-size: 14px; border-radius: 8px; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-bracket::before, .btn-bracket::after { font-family: var(--mono); color: var(--accent-2); opacity: 0; transition: opacity .2s, transform .2s; }
.btn-bracket::before { content: "["; transform: translateX(4px); }
.btn-bracket::after { content: "]"; transform: translateX(-4px); }
.btn-bracket:hover::before, .btn-bracket:hover::after { opacity: 1; transform: none; }

/* ---------- hero ---------- */
.hero { padding: calc(var(--nav-h) + clamp(56px, 9vw, 120px)) 0 clamp(56px, 7vw, 96px); overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-bg { position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none; }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; filter: blur(60px) saturate(160%); opacity: 0.32; transform: scale(1.1); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,8,10,0.2) 0%, rgba(7,8,10,0.6) 60%, var(--bg) 100%); }
.hero-copy { display: grid; gap: 26px; position: relative; z-index: 1; }
.hero-copy h1 { max-width: 11.5ch; text-wrap: balance; }
.hero-copy h1 .line { display: block; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--line); }
.hero-meta div { display: grid; gap: 4px; }
.hero-meta .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.hero-meta .v { font-family: var(--mono); font-size: 15px; color: var(--ink); }

.hero-visual { position: relative; z-index: 1; aspect-ratio: 16 / 9; align-self: center; }
.hero-visual::before { content: ""; position: absolute; inset: -30% -20%; background: radial-gradient(closest-side, rgba(59,108,255,0.22), transparent 70%); filter: blur(30px); z-index: 0; pointer-events: none; }
.hud {
  position: relative; width: 100%; height: 100%; border-radius: 18px; overflow: hidden;
  background: #04060c; border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 1px rgba(59,108,255,0.08), 0 40px 120px -40px rgba(59,108,255,0.55), inset 0 0 80px rgba(59,108,255,0.08);
}
.hud video { width: 100%; height: 100%; object-fit: cover; }
.hud::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.hud-corner { position: absolute; width: 22px; height: 22px; z-index: 3; border-color: var(--accent-2); border-style: solid; border-width: 0; opacity: .9; }
.hud-corner.tl { top: 12px; left: 12px; border-top-width: 1.5px; border-left-width: 1.5px; }
.hud-corner.tr { top: 12px; right: 12px; border-top-width: 1.5px; border-right-width: 1.5px; }
.hud-corner.bl { bottom: 12px; left: 12px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.hud-corner.br { bottom: 12px; right: 12px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.hud-tag { position: absolute; z-index: 3; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--accent-2); text-transform: uppercase; }
.hud-tag.a { top: 18px; left: 44px; }
.hud-tag.b { bottom: 18px; right: 44px; }
.hud-tag.c { bottom: 18px; left: 44px; color: var(--muted); }
.hud-tag .blink { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); margin-right: 8px; box-shadow: 0 0 10px var(--ok); animation: blink 1.6s infinite; vertical-align: middle; }
@keyframes blink { 50% { opacity: .25; } }
.hud-ring { position: absolute; inset: -1px; border-radius: 18px; pointer-events: none; z-index: 1;
  background: conic-gradient(from 0deg, transparent 0 70%, rgba(122,160,255,0.55) 85%, transparent 100%);
  animation: spin 9s linear infinite; mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000); -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  mask-composite: exclude; -webkit-mask-composite: xor; padding: 1px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 980px) {
  .hero { min-height: 0; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { max-width: 640px; width: 100%; margin: 0 auto; }
}

/* ---------- ticker ---------- */
.ticker { position: relative; z-index: 1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.015); overflow: hidden; padding: 14px 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 42s linear infinite; }
.ticker-track span { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 0 28px; white-space: nowrap; }
.ticker-track span i { color: var(--accent); font-style: normal; margin-right: 28px; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- cards ---------- */
.card {
  position: relative; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.card::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(59,108,255,0.14), transparent 40%); }
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: 0 30px 60px -40px rgba(0,0,0,0.8); }
.card:hover::before { opacity: 1; }
.card .idx { font-family: var(--mono); font-size: 12px; color: var(--accent-2); letter-spacing: .12em; margin-bottom: 18px; display: flex; justify-content: space-between; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .more { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.card .more .arr { color: var(--accent-2); transition: transform .25s var(--ease); }
.card:hover .more .arr { transform: translateX(4px); }
.card-lg { padding: 36px; }

/* ---------- steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.012); }
.step { padding: 32px 28px; border-right: 1px solid var(--line); position: relative; display: grid; gap: 14px; align-content: start; }
.step:last-child { border-right: 0; }
.step .n { font-family: var(--mono); font-size: 44px; font-weight: 700; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1px var(--line-strong); line-height: 1; }
.step h3 { font-size: 20px; }
.step p { color: var(--muted); font-size: 15px; }
.step .t { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--accent-2); text-transform: uppercase; }
.step::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.step:hover::after { transform: scaleX(1); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } .step:nth-child(2) { border-right: 0; } .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } .step { border-right: 0; border-bottom: 1px solid var(--line); } .step:last-child { border-bottom: 0; } }

/* ---------- timeline (program) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.tl-week { position: relative; padding-top: 22px; display: grid; gap: 8px; }
.tl-week::before { content: ""; position: absolute; top: 6px; left: 0; right: 0; height: 2px; background: var(--line-strong); }
.tl-week::after { content: ""; position: absolute; top: 2px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--bg); border: 2px solid var(--accent); box-shadow: 0 0 12px var(--accent-glow); }
.tl-week .w { font-family: var(--mono); font-size: 11px; color: var(--accent-2); letter-spacing: .1em; }
.tl-week .h { font-weight: 600; font-size: 15px; }
.tl-week .d { color: var(--muted); font-size: 13.5px; }
.tl-week.hot::before { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
@media (max-width: 980px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .timeline { grid-template-columns: repeat(2, 1fr); } }

/* ---------- doors (four funnels) ---------- */
.doors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.door { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 28px; min-height: 300px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color .3s, transform .3s var(--ease), background .3s; overflow: hidden; }
.door::after { content: ""; position: absolute; inset: auto -40% -60% auto; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(59,108,255,0.28), transparent 60%); opacity: 0; transition: opacity .4s; }
.door:hover { border-color: rgba(122,160,255,0.5); transform: translateY(-3px); background: var(--surface-2); }
.door:hover::after { opacity: 1; }
.door .who { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); }
.door h3 { font-size: 24px; }
.door p { color: var(--muted); font-size: 15px; }
.door .price { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: .06em; }
.door .go { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 14px; }
.door .go .arr { width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: background .25s, border-color .25s, transform .25s var(--ease); }
.door:hover .go .arr { background: var(--accent); border-color: var(--accent); transform: translateX(3px); }
@media (max-width: 980px) { .doors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .doors { grid-template-columns: 1fr; } }

/* ---------- scorecard (demo day) ---------- */
.demo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.scorecard { border: 1px solid var(--line-strong); border-radius: var(--radius); background: #0a0c10; padding: 22px; font-family: var(--mono); font-size: 13px; box-shadow: 0 40px 100px -40px rgba(59,108,255,0.4); }
.scorecard .hd { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px dashed var(--line-strong); }
.scorecard .row { display: grid; grid-template-columns: 1fr auto 60px; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.scorecard .bar { height: 6px; width: 140px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.scorecard .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 3px; transition: width 1.2s var(--ease); }
.scorecard.in .bar i { width: var(--w); }
.scorecard .val { text-align: right; color: var(--ink); }
.scorecard .total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; }
.scorecard .total b { font-size: 28px; color: var(--accent-2); }
.scorecard .tag { display: inline-block; padding: 3px 8px; border-radius: 4px; background: rgba(56,217,150,0.12); color: var(--ok); font-size: 11px; }
@media (max-width: 900px) { .demo { grid-template-columns: 1fr; } .scorecard .bar { width: 100px; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 28px; border-right: 1px solid var(--line); display: grid; gap: 6px; background: rgba(255,255,255,0.012); }
.stat:last-child { border-right: 0; }
.stat .v { font-family: var(--mono); font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.03em; }
.stat .k { color: var(--muted); font-size: 13.5px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* ---------- schedule table ---------- */
.sched { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 13.5px; }
.sched th, .sched td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); }
.sched th { font-weight: 500; color: var(--muted-2); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.sched tr.open td { color: var(--ink); }
.sched tr:not(.open) td { color: var(--muted); }
.sched .pill { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; border: 1px solid var(--line-strong); }
.sched .pill.live { border-color: rgba(56,217,150,0.5); color: var(--ok); }
.sched-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 12px; background: rgba(255,255,255,0.012); }

/* ---------- faq ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 22px 4px; font-weight: 600; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent-2); font-size: 22px; line-height: 1; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 24px; color: var(--muted); max-width: 70ch; }

/* ---------- cta band ---------- */
.cta-band { position: relative; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px; padding: clamp(40px, 6vw, 80px); text-align: center; display: grid; gap: 22px; justify-items: center; background: radial-gradient(1200px 500px at 50% 120%, rgba(59,108,255,0.28), transparent 60%), var(--surface); }
.cta-band h2 { max-width: 16ch; }
.cta-band .big-mark { position: absolute; right: -40px; bottom: -60px; width: 360px; opacity: 0.06; pointer-events: none; }

/* ---------- footer ---------- */
footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 56px 0 32px; color: var(--muted); font-size: 14px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; font-weight: 500; }
.foot a { display: block; padding: 5px 0; color: var(--muted); }
.foot a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
@media (max-width: 760px) { .foot { grid-template-columns: 1fr 1fr; } }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--nav-h) + 72px) 0 56px; display: grid; gap: 20px; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(38px, 5vw, 68px); max-width: 16ch; }

/* ---------- forms ---------- */
.form-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.form-aside { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 22px; }
.form-aside .req { display: grid; gap: 10px; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: rgba(255,255,255,0.012); }
.form-aside .req li { list-style: none; display: flex; gap: 10px; color: var(--muted); font-size: 15px; }
.form-aside .req ul { padding: 0; margin: 0; display: grid; gap: 8px; }
.form-aside .req li::before { content: "//"; font-family: var(--mono); color: var(--accent-2); }
form.app { display: grid; gap: 22px; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); background: var(--surface); }
.fieldset { display: grid; gap: 14px; }
.fieldset > .label { margin-bottom: 4px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; color: var(--muted); }
.field label b { color: var(--accent-2); font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; background: #0a0c10; border: 1px solid var(--line-strong); border-radius: 8px; color: var(--ink);
  padding: 12px 14px; font: inherit; font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.field.err input, .field.err textarea, .field.err select { border-color: #ff5a6a; }
.field .hint { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.field .msg { font-family: var(--mono); font-size: 11.5px; color: #ff8a95; display: none; }
.field.err .msg { display: block; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.check input { margin-top: 3px; accent-color: var(--accent); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip span { display: inline-block; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13.5px; color: var(--muted); transition: all .2s; }
.chip input:checked + span { background: var(--accent-dim); border-color: var(--accent); color: var(--ink); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-foot .note { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.form-done { display: none; text-align: center; padding: 48px 24px; border: 1px solid rgba(56,217,150,0.4); border-radius: var(--radius); background: rgba(56,217,150,0.05); }
.form-done .ok-mark { font-family: var(--mono); font-size: 40px; color: var(--ok); margin-bottom: 12px; }
form.app.sent { display: none; }
form.app.sent + .form-done { display: block; }
@media (max-width: 900px) { .form-layout { grid-template-columns: 1fr; } .form-aside { position: static; } }
@media (max-width: 560px) { .f-row { grid-template-columns: 1fr; } }

/* ---------- prose (about/legal) ---------- */
.prose { max-width: 72ch; display: grid; gap: 18px; color: var(--muted); font-size: 17px; }
.prose h2 { font-size: 28px; color: var(--ink); margin-top: 18px; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 20px; display: grid; gap: 8px; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s } .rv-d2 { transition-delay: .16s } .rv-d3 { transition-delay: .24s } .rv-d4 { transition-delay: .32s }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker-track, .hud-ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- countdown ---------- */
.count { display: flex; gap: 14px; }
.count div { display: grid; gap: 2px; text-align: center; min-width: 58px; padding: 10px 8px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.02); }
.count b { font-family: var(--mono); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.count small { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
