/* =========================================================================
   EVALIO — AI Field-Data Verification & Impact Reporting
   Design system: fully dark "audit console" aesthetic. No gradients
   anywhere, no light/dark section alternation — every section is a
   structurally distinct composition (spec-sheet, changelog, roster,
   terminal log, command strip) rather than a shared card/grid component.
   ========================================================================= */

:root {
  --ink-950: #070905;
  --ink-900: #0b0e09;
  --ink-850: #0f130b;
  --ink-800: #12160e;
  --line: rgba(255,255,255,.1);
  --line-soft: rgba(255,255,255,.06);

  --neon: #c6ff4f;
  --neon-rgb: 198, 255, 79;
  --neon-dim: #93c93a;
  --red: #fb7185;
  --amber: #fbbf24;

  --text: #f2f6ec;
  --text-soft: #b7c2a8;
  --text-mut: #808d72;
  --text-faint: #5b6553;

  --radius-btn: 10px;
  --radius: 14px;
  --radius-lg: 18px;

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 40px);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Space Grotesk", var(--font-body);
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 20px 44px -20px rgba(0,0,0,.6);
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink-900);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(var(--neon-rgb), .4); border-radius: 6px; }
::selection { background: var(--neon); color: var(--ink-900); }

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 108px); position: relative; border-top: 1px solid var(--line-soft); }
.section--flush { background: var(--ink-850); }
.mono { font-family: var(--font-mono); }

/* --------------------------------------------------------------- Typography */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: #fff; }
.display { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 600; letter-spacing: -.02em; }
.h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.lead { font-size: clamp(1rem, 1.5vw, 1.16rem); color: var(--text-soft); line-height: 1.65; }

.tag-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 500;
  font-size: .76rem; letter-spacing: .04em; color: var(--neon); padding: 5px 10px; border: 1px solid var(--line); border-radius: 6px;
}
.tag-eyebrow::before { content: "//"; color: var(--text-faint); }
.section-head { max-width: 640px; }
.section-head .lead { margin-top: 14px; }
.section-head .tag-eyebrow { margin-bottom: 16px; }
.text-accent { color: var(--neon); }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 12px 20px; border-radius: var(--radius-btn); white-space: nowrap;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 17px; height: 17px; }
.btn--neon { color: var(--ink-900); background: var(--neon); }
.btn--neon:hover { background: #d6ff7a; transform: translateY(-1px); }
.btn--line { color: #fff; background: transparent; border: 1px solid var(--line); }
.btn--line:hover { border-color: var(--neon); color: var(--neon); }
.btn--lg { padding: 14px 26px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- Navbar (floating pill) */
.navwrap { position: sticky; top: 0; z-index: 50; padding-top: 16px; }
.nav { position: relative; z-index: 70; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 62px; padding: 0 10px 0 20px; border-radius: 999px;
  background: rgba(11,14,9,.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  transition: border-color .3s, background .3s;
}
.nav.is-stuck .nav__inner { background: rgba(7,9,5,.92); border-color: rgba(198,255,79,.25); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: #fff; }
.brand__mark { height: 24px; width: auto; display: inline-flex; align-items: center; }
.brand__mark svg { height: 100%; width: auto; }
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a { font-family: var(--font-mono); font-size: .82rem; color: var(--text-soft); transition: color .2s; white-space: nowrap; }
.nav__links a:hover { color: var(--neon); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__login { font-family: var(--font-mono); font-size: .82rem; color: #fff; transition: color .2s; }
.nav__login:hover { color: var(--neon); }
.nav__cta .btn { border-radius: 999px; }
.nav__cta .btn--neon { padding: 9px 18px; font-size: .86rem; }
.nav__cta .btn--line { padding: 9px 18px; font-size: .86rem; }
.nav__toggle { display: none; width: 38px; height: 38px; border-radius: 999px; color: #fff; }
.nav__toggle svg { width: 20px; height: 20px; margin-inline: auto; }
.nav__m-only { display: none; }

/* --------------------------------------------------------------- Hero (flat, no gradients) */
.hero { position: relative; padding-top: clamp(26px, 5vw, 48px); padding-bottom: 0; border-top: none; }
.hero__grid { position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin-inline: auto; padding-top: clamp(26px, 5vw, 48px); }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; font-size: .8rem;
  background: transparent; border: 1px solid var(--line); color: var(--text-soft); font-family: var(--font-mono); }
.pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); flex: none; }
.hero h1 { margin-top: 22px; font-size: clamp(2.4rem, 5.8vw, 4.1rem); font-weight: 600; letter-spacing: -.025em; color: #fff; }
.hero__sub { margin-top: 18px; font-size: clamp(1rem, 1.6vw, 1.16rem); color: var(--text-soft); max-width: 580px; margin-inline: auto; }
.hero__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.hero__note { margin-top: 18px; font-size: .8rem; font-family: var(--font-mono); color: var(--text-faint); }

/* Floating console — flat border, hard shadow, no gradient glow */
.hero__stage { position: relative; z-index: 1; margin-top: clamp(36px, 6vw, 56px); }
.deck { max-width: 740px; margin-inline: auto; }
.window { background: var(--ink-950); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.window__bar { display: flex; align-items: center; gap: 8px; padding: 11px 16px; border-bottom: 1px solid var(--line-soft); }
.window__dots { display: flex; gap: 6px; }
.window__dots i { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--line); }
.window__url { margin-left: 8px; font-family: var(--font-mono); font-size: .72rem; color: var(--text-faint); }
.feed { padding: 18px 20px 22px; text-align: left; }
.feed__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.feed__title { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: #fff; }
.feed__title small { display: block; font-weight: 400; font-family: var(--font-mono); font-size: .7rem; color: var(--text-faint); margin-top: 3px; }
.feed-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 12px; padding: 10px 4px; border-top: 1px solid var(--line-soft); font-family: var(--font-mono); }
.feed-row:first-of-type { border-top: none; }
.feed-row__id { font-size: .8rem; color: #fff; }
.feed-row__meta { font-size: .68rem; color: var(--text-faint); }
.tag-status { font-size: .66rem; font-weight: 500; padding: 3px 9px; border-radius: 5px; font-family: var(--font-mono); border: 1px solid; }
.tag-status--ok { color: var(--neon); border-color: rgba(198,255,79,.35); }
.tag-status--review { color: var(--amber); border-color: rgba(251,191,36,.35); }
.tag-status--flag { color: var(--red); border-color: rgba(251,113,133,.35); }

/* In-hero stat strip — flat bordered, no gradient */
.hero__stats { position: relative; z-index: 1; margin-top: clamp(36px, 6vw, 54px); border-top: 1px solid var(--line-soft); }
.hero__stats-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__stats-row > div { text-align: center; padding: 22px 12px; border-left: 1px solid var(--line-soft); }
.hero__stats-row > div:first-child { border-left: none; }
.hero__stat-num { font-family: var(--font-mono); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: #fff; display: inline-flex; align-items: baseline; }
.hero__stat-num .suffix { color: var(--neon); margin-left: 2px; }
.hero__stat-label { font-size: .78rem; color: var(--text-faint); margin-top: 4px; }

/* ---------------------------------------------------------- Trust ticker (flat, monospace) */
.ticker { padding-block: 16px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--ink-950); }
.ticker__wrap { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker__track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker__wrap:hover .ticker__track { animation-play-state: paused; }
.ticker__item { font-family: var(--font-mono); font-size: .82rem; color: var(--text-faint); padding-inline: 20px; white-space: nowrap; border-right: 1px solid var(--line-soft); }
.ticker__item b { color: var(--text-soft); font-weight: 500; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ----------------------------------------------------- Problem: log panel */
.log-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
.log-panel { background: var(--ink-950); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.log-panel__head { padding: 12px 16px; border-bottom: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint); display: flex; justify-content: space-between; }
.log-line { display: grid; grid-template-columns: auto auto 1fr; gap: 10px; align-items: baseline; padding: 11px 16px; border-top: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: .78rem; }
.log-line:first-of-type { border-top: none; }
.log-line__time { color: var(--text-faint); }
.log-line__lvl { font-weight: 600; }
.log-line__lvl--warn { color: var(--amber); }
.log-line__lvl--err { color: var(--red); }
.log-line__lvl--ok { color: var(--neon); }
.log-line__msg { color: var(--text-soft); }
.stat-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stat-chip { border: 1px solid var(--line); border-radius: 9px; padding: 10px 14px; }
.stat-chip b { display: block; font-family: var(--font-mono); font-size: 1.15rem; color: var(--neon); }
.stat-chip span { font-size: .74rem; color: var(--text-faint); }

/* --------------------------------------------------- Solution: console panel */
.console { background: var(--ink-950); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.console__top { padding: 22px clamp(20px,4vw,40px); border-bottom: 1px solid var(--line-soft); }
.console__top h2 { max-width: 620px; }
.console__body { padding: 6px clamp(20px,4vw,40px) 28px; }
.console-line { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.console-line:first-child { border-top: none; }
.console-line__prompt { font-family: var(--font-mono); color: var(--neon); flex: none; }
.console-line b { font-family: var(--font-head); font-weight: 600; display: block; }
.console-line p { color: var(--text-soft); font-size: .92rem; margin-top: 3px; }

/* ------------------------------------------------------- AI Tech: spec sheet */
.spec-sheet { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 22px clamp(18px,3vw,28px); border-top: 1px solid var(--line-soft); }
.spec-row:first-child { border-top: none; }
.spec-row__k { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--text-faint); text-transform: uppercase; padding-top: 3px; }
.spec-row h3 { font-size: 1.08rem; margin-bottom: 6px; }
.spec-row p { color: var(--text-soft); font-size: .92rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { font-family: var(--font-mono); font-size: .72rem; padding: 5px 10px; border-radius: 6px; border: 1px solid var(--line); color: var(--text-soft); }

/* ------------------------------------------------------- Features: numbered list */
.feat-list { border-top: 1px solid var(--line-soft); }
.feat-row { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.feat-row__n { font-family: var(--font-mono); font-size: 1.2rem; color: var(--text-faint); }
.feat-row h3 { font-size: 1.08rem; margin-bottom: 6px; }
.feat-row p { color: var(--text-soft); font-size: .93rem; max-width: 560px; }
.feat-row:hover .feat-row__n { color: var(--neon); }

/* -------------------------------------------------- How it works: command strip */
.cmd-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmd-block { padding: 22px 20px; border-left: 1px solid var(--line-soft); position: relative; }
.cmd-block:first-child { border-left: none; }
.cmd-block__cmd { font-family: var(--font-mono); font-size: .78rem; color: var(--neon); }
.cmd-block h3 { font-size: .98rem; margin: 12px 0 6px; }
.cmd-block p { color: var(--text-soft); font-size: .84rem; }
.cmd-block::after { content: "→"; position: absolute; right: -12px; top: 24px; color: var(--text-faint); font-family: var(--font-mono); z-index: 1; }
.cmd-block:last-child::after { display: none; }

/* ------------------------------------------------------------- Infra: status rows */
.status-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.status-row { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-top: 1px solid var(--line-soft); }
.status-row:first-child { border-top: none; }
.status-row__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); flex: none; }
.status-row b { font-family: var(--font-head); font-size: .98rem; }
.status-row p { color: var(--text-soft); font-size: .88rem; margin-top: 2px; }

/* ------------------------------------------------------------------- Market */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-block { background: var(--ink-900); padding: 22px; }
.spec-block__k { font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .04em; }
.spec-block p { margin-top: 8px; color: var(--text-soft); font-size: .92rem; }
.flag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.flag-row span { font-family: var(--font-mono); font-size: .8rem; border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; color: var(--text-soft); }

/* ------------------------------------------------------------------ Traction */
.printout { background: var(--ink-950); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px clamp(18px,3vw,28px); }
.printout__line { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--line-soft); font-family: var(--font-mono); }
.printout__line:first-child { border-top: none; }
.printout__line .car { color: var(--neon); }
.printout__line .lbl { color: var(--text-soft); font-size: .88rem; }
.printout__line .val { color: #fff; font-weight: 500; }
.printout__note { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); font-family: var(--font-mono); font-size: .82rem; color: var(--text-soft); }
.printout__note b { color: var(--neon); }

.comment-block { margin-top: 44px; border-left: 2px solid var(--line); padding-left: 22px; }
.comment-block p { font-family: var(--font-mono); font-size: .98rem; color: var(--text-soft); line-height: 1.7; }
.comment-block p::before { content: "/* "; color: var(--text-faint); }
.comment-block p::after { content: " */"; color: var(--text-faint); }
.comment-block footer { margin-top: 14px; display: flex; align-items: center; gap: 10px; }
.comment-block .who { width: 30px; height: 30px; border-radius: 6px; background: var(--ink-800); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-mono); font-size: .72rem; color: var(--neon); }
.comment-block cite { font-style: normal; font-size: .82rem; color: var(--text-faint); }
.comment-block cite b { color: var(--text-soft); font-weight: 500; }

/* --------------------------------------------------------------- Why now: statement */
.statement { max-width: 900px; }
.statement p { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.4; letter-spacing: -.01em; color: var(--text-soft); }
.statement strong { color: #fff; font-weight: 600; }
.statement .text-accent { font-weight: 600; }

/* -------------------------------------------------------- Roadmap: changelog */
.changelog { border-top: 1px solid var(--line-soft); }
.change-row { display: grid; grid-template-columns: 120px auto 1fr; gap: 18px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.change-row__v { font-family: var(--font-mono); color: var(--text-faint); font-size: .88rem; }
.change-row__state { font-family: var(--font-mono); font-size: .68rem; padding: 3px 9px; border-radius: 5px; border: 1px solid; white-space: nowrap; }
.change-row--done .change-row__state { color: var(--neon); border-color: rgba(198,255,79,.35); }
.change-row--now .change-row__state { color: var(--amber); border-color: rgba(251,191,36,.35); }
.change-row--next .change-row__state { color: var(--text-faint); border-color: var(--line); }
.change-row h3 { font-size: 1rem; margin-bottom: 4px; }
.change-row p { color: var(--text-soft); font-size: .88rem; }

/* -------------------------------------------------------------------- Team */
.roster { border-top: 1px solid var(--line-soft); }
.roster--lead { max-width: 780px; margin-inline: auto; }
.roster-row { display: grid; grid-template-columns: 64px 220px 1fr auto; gap: 22px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line-soft); }
.roster-row__av { width: 56px; height: 56px; border-radius: 12px; background: var(--ink-950); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-mono); font-weight: 500; color: var(--neon); font-size: 1.05rem; overflow: hidden; position: relative; }
.roster-row__av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.roster-row__name { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; }
.roster-row__name small { display: block; font-family: var(--font-mono); font-size: .82rem; color: var(--neon); font-weight: 400; margin-top: 3px; }
.roster-row p { color: var(--text-soft); font-size: .92rem; }
.roster-row__socials { grid-column: 4; display: flex; gap: 8px; }
.roster-row .li { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); border: 1px solid var(--line); border-radius: 6px; padding: 6px 10px; white-space: nowrap; }
.roster-row .li:hover { color: var(--neon); border-color: rgba(198,255,79,.35); }

/* ------------------------------------------------------------- MVP showcase */
.mvp-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mvp-shot { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--ink-950); }
.mvp-shot img { display: block; width: 100%; height: auto; }
.mvp-shot figcaption { padding: 16px 18px 20px; }
.mvp-shot figcaption b { display: block; font-family: var(--font-head); font-size: .95rem; margin-bottom: 4px; color: var(--neon); }
.mvp-shot figcaption span { display: block; color: var(--text-soft); font-size: .86rem; }

/* --------------------------------------------------------------- CTA / contact */
.cta-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; }
.cta-copy { padding: clamp(28px,4vw,48px); border-right: 1px solid var(--line-soft); }
.cta-copy .lead { color: var(--text-soft); }
.cta-list { display: grid; gap: 12px; margin-top: 22px; }
.cta-list li { display: flex; gap: 10px; align-items: baseline; font-family: var(--font-mono); font-size: .86rem; color: var(--text-soft); }
.cta-list li::before { content: "✓"; color: var(--neon); }
.form { padding: clamp(28px,4vw,48px); }
.form h3 { color: #fff; font-size: 1.1rem; font-family: var(--font-head); }
.field { margin-top: 14px; }
.field label { display: block; font-family: var(--font-mono); font-size: .76rem; color: var(--text-faint); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; color: #fff; background: var(--ink-950); transition: border-color .2s; }
.field input::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--neon); outline: none; }
.field textarea { resize: vertical; min-height: 88px; }
.form__note { font-size: .76rem; font-family: var(--font-mono); color: var(--text-faint); margin-top: 14px; }
.form__note a { color: var(--neon); }
.form__ok { display: none; padding: 30px 0; }
.form__ok .ic { color: var(--neon); font-family: var(--font-mono); font-size: 1.3rem; margin-bottom: 10px; }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: block; }

/* --------------------------------------------------------------- Footer (condensed, no wordmark) */
.footer { background: var(--ink-950); border-top: 1px solid var(--line-soft); padding-block: 34px; }
.footer__row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { font-family: var(--font-mono); font-size: .82rem; color: var(--text-soft); }
.footer__links a:hover { color: var(--neon); }
.footer__bottom { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: .76rem; color: var(--text-faint); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; border: 1px solid var(--line); }
.footer__socials a:hover { border-color: rgba(198,255,79,.4); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__disclaimer { margin-top: 18px; font-size: .78rem; color: var(--text-faint); max-width: 720px; }
.footer__contact { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px 20px; font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); }
.footer__contact a { color: var(--text-faint); }
.footer__contact a:hover { color: var(--neon); }

/* --------------------------------------------------------- Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"]{ transition-delay: .06s; } .js .reveal[data-d="2"]{ transition-delay: .12s; }
.js .reveal[data-d="3"]{ transition-delay: .18s; } .js .reveal[data-d="4"]{ transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none; } html { scroll-behavior: auto; } .ticker__track { animation: none; } }

/* ------------------------------------------------------------- Auth pages (flat, no gradient) */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink-900); }
.auth__aside { position: relative; background: var(--ink-950); border-right: 1px solid var(--line-soft); color: var(--text-soft); padding: clamp(30px, 5vw, 56px); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.auth__aside::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.auth__aside > * { position: relative; z-index: 1; }
.auth__quote { font-family: var(--font-mono); font-size: 1.05rem; line-height: 1.6; color: var(--text-soft); max-width: 380px; }
.auth__quote::before { content: "> "; color: var(--neon); }
.auth__points { display: grid; gap: 12px; margin-top: 24px; font-family: var(--font-mono); }
.auth__points li { display: flex; gap: 10px; align-items: baseline; font-size: .86rem; color: var(--text-soft); }
.auth__points li::before { content: "✓"; color: var(--neon); }
.auth__main { display: flex; align-items: center; justify-content: center; padding: clamp(26px, 5vw, 50px); }
.auth__card { width: 100%; max-width: 380px; }
.auth__card h1 { font-size: 1.65rem; }
.auth__card .sub { color: var(--text-soft); margin-top: 8px; margin-bottom: 22px; font-size: .94rem; }
.oauth { display: grid; gap: 9px; }
.oauth button { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 11px; border: 1px solid var(--line); border-radius: 9px; font-weight: 500; font-family: var(--font-head); font-size: .9rem; color: #fff; transition: border-color .2s; background: var(--ink-950); }
.oauth button:hover { border-color: rgba(198,255,79,.4); }
.oauth svg { width: 17px; height: 17px; }
.divider { display: flex; align-items: center; gap: 12px; color: var(--text-faint); font-family: var(--font-mono); font-size: .76rem; margin: 18px 0; }
.divider::before, .divider::after { content: ""; height: 1px; background: var(--line-soft); flex: 1; }
.auth__row { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; margin-top: 4px; color: var(--text-soft); }
.auth__row a { color: var(--neon); }
.checkbox { display: flex; gap: 8px; align-items: flex-start; font-size: .82rem; color: var(--text-soft); }
.checkbox input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--neon); flex: none; }
.auth__foot { text-align: center; font-size: .88rem; color: var(--text-soft); margin-top: 20px; }
.auth__foot a { color: var(--neon); font-weight: 600; }
.auth__back { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .82rem; color: var(--text-soft); margin-bottom: 28px; }
.auth__back svg { width: 15px; height: 15px; }
.strength { height: 4px; border-radius: 999px; background: var(--line-soft); margin-top: 8px; overflow: hidden; }
.strength i { display: block; height: 100%; width: 0; border-radius: 999px; transition: width .3s, background .3s; }

/* --------------------------------------------------------------- Legal pages (dark) */
.legal { max-width: 760px; margin-inline: auto; }
.legal__meta { color: var(--text-faint); font-family: var(--font-mono); font-size: .84rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 12px; }
.legal h3 { font-size: 1rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; }
.legal ul { list-style: none; padding-left: 0; }
.legal ul li { margin-bottom: 8px; padding-left: 18px; position: relative; }
.legal ul li::before { content: "—"; position: absolute; left: 0; color: var(--text-faint); }
.legal a { color: var(--neon); font-weight: 500; }
.callout { background: var(--ink-950); border: 1px solid var(--line); border-left: 2px solid var(--neon); border-radius: 9px; padding: 16px 20px; margin: 22px 0; }
.callout p { margin: 0; color: var(--text-soft); }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .log-split, .cta-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .cmd-strip { grid-template-columns: repeat(2, 1fr); }
  .cmd-block:nth-child(3) { border-left: none; }
  .cmd-block:nth-child(2)::after, .cmd-block:nth-child(4)::after { display: none; }
  .hero__stats-row { grid-template-columns: 1fr; }
  .hero__stats-row > div { border-left: none; border-top: 1px solid var(--line-soft); }
  .hero__stats-row > div:first-child { border-top: none; }
  .roster-row { grid-template-columns: 56px 1fr; }
  .roster-row p, .roster-row__socials { grid-column: 2 / -1; }
  .mvp-shots { grid-template-columns: 1fr 1fr; }
  .auth { grid-template-columns: 1fr; }
  .auth__aside { display: none; }
  .cta-copy { border-right: none; border-bottom: 1px solid var(--line-soft); }

  .nav__cta .btn, .nav__cta .nav__login { display: none; }
  .nav__toggle { display: grid; place-items: center; }

  /* --- Mobile nav: plain show/hide, no animation. Height is an explicit
     calc() — the previous `top+right+bottom, height:auto` combination was
     not resolving to a stretched height, which is what collapsed the panel
     down to a sliver. Explicit height removes that ambiguity entirely. --- */
  .nav__links {
    display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 88px; right: 14px; width: min(84vw, 320px);
    height: calc(100dvh - 102px); max-height: calc(100dvh - 102px);
    background: var(--ink-950); border: 1px solid var(--line); border-radius: 18px;
    padding: 8px 18px 20px; overflow-y: auto; z-index: 60; box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .nav__inner.is-open { border-radius: 20px; }
  .nav__links > a:not(.btn) { padding: 15px 4px; font-size: 1rem; color: #fff; border-bottom: 1px solid var(--line-soft); }
  .nav__links > a:not(.btn):hover { color: var(--neon); }
  .nav__m-only { display: inline-flex; width: 100%; }
  .nav__m-login { margin-top: 18px; color: #fff; border-color: var(--line); }
  .nav__m-demo { margin-top: 10px; color: var(--ink-900); }
  .nav__toggle .ic-close { display: none; }
  .nav__toggle.is-open .ic-open { display: none; }
  .nav__toggle.is-open .ic-close { display: block; }

  .nav__scrim {
    display: none;
    position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 55;
  }
  .nav__scrim.is-open { display: block; }
}
@media (max-width: 560px) {
  .hero__stats-row { grid-template-columns: 1fr; }
  .cmd-strip { grid-template-columns: 1fr; }
  .cmd-block { border-left: none; border-top: 1px solid var(--line-soft); }
  .cmd-block:first-child { border-top: none; }
  .cmd-block::after { display: none; }
  .change-row { grid-template-columns: 1fr; gap: 6px; }
  .spec-row { grid-template-columns: 1fr; }
  .log-line { grid-template-columns: 1fr; gap: 2px; }
  .roster-row { grid-template-columns: 48px 1fr; }
  .mvp-shots { grid-template-columns: 1fr; }
}
