/* ============================================================
   Calderyn — Waitlist landing  ·  v2
   Swiss instrument-panel · warm paper + alternating ink bands
   Near-monochrome; electric-blue accent reserved for CTAs.
   ============================================================ */

:root {
  /* surfaces — PAPER base */
  --bg-base: #F1EFE8;
  --surface-card: #FBFAF6;
  --surface-2: #E7E4DA;
  --surface-border: rgba(22,21,16,0.16);
  --line-strong: rgba(22,21,16,0.30);

  /* ink text on paper */
  --text-primary: #15140F;
  --text-secondary: #57544B;
  --text-tertiary: #8C8779;

  /* accent — CTA ONLY */
  --accent-primary: #1B45FF;
  --accent-press: #1338D6;
  --accent-secondary: #57544B;   /* eyebrows resolve to ink, not blue */

  /* functional signals (console data viz only) */
  --success: #2E7D5B;
  --warn: #9A6B16;
  --danger: #C0392B;

  --grad: var(--accent-primary);
  --grad-text: var(--accent-primary);

  /* type — Cabinet Grotesk display · Satoshi body · Geist Mono data */
  --font-head: "Cabinet Grotesk", "Satoshi", system-ui, sans-serif;
  --font-title: var(--font-head);
  --font-hero: var(--font-head);
  --font-body: "Satoshi", system-ui, sans-serif;
  --font-ui: var(--font-body);
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", monospace;
  --font-num: var(--font-mono);
  --font-eyebrow: var(--font-mono);

  --maxw: 1240px;
  --gutter: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: none;
}

/* ---------- INK band: re-scope tokens for dark sections ---------- */
.band-ink {
  --bg-base: #121210;
  --surface-card: #1B1B18;
  --surface-2: #232320;
  --surface-border: rgba(255,255,255,0.13);
  --line-strong: rgba(255,255,255,0.26);
  --text-primary: #F0EEE6;
  --text-secondary: #A8A498;
  --text-tertiary: #76726A;
  --accent-secondary: #A8A498;
  background: var(--bg-base);
  color: var(--text-primary);
}

/* ---------- CONSOLE device: warm-neutral dark screen ---------- */
.console {
  --surface-card: #1C1C1A;
  --surface-2: #26261F;
  --surface-border: rgba(255,255,255,0.10);
  --text-primary: #EFEDE6;
  --text-secondary: #A6A296;
  --text-tertiary: #74716A;
  color: var(--text-primary);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg-base); color: var(--text-primary);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }
::selection { background: var(--accent-primary); color: #fff; }

.grain, .aurora, .aurora-gl, .hero-3d, .final-glow, .hero-shot-glow, .shot-glow, .b-glow { display: none !important; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; }

/* mono label helper */
.tag, .thesis-kicker, .kicker, .wl-badge, .proof-label, .console-title, .console-tabs span,
.statusline, .mini-row .sub, .ch-val, .tagv, .ref-note, .lightbox-cap {
  font-family: var(--font-mono);
}

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.3s var(--ease), border-color 0.3s var(--ease); border-bottom: 1px solid transparent; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.nav.scrolled { background: rgba(241,239,232,0.82); backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%); border-bottom-color: var(--surface-border); }
.nav.scrolled .nav-inner { padding: 13px var(--gutter); }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--text-primary); }
.brand-mark { width: 26px; height: 26px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-secondary); font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.02em; text-transform: uppercase; transition: color 0.2s ease; }
.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--text-primary); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta { font-size: 13px; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ============================================================
   BUTTONS  (accent only here)
   ============================================================ */
.btn { position: relative; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-ui); font-weight: 600; font-size: 14px; letter-spacing: 0.01em; padding: 13px 20px; border-radius: 4px; transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s; white-space: nowrap; }
.btn-primary { color: #fff; background: var(--accent-primary); }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-1px); }
.btn-ghost { color: var(--text-primary); background: transparent; border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--text-primary); }
.btn:focus-visible { outline: 2px solid var(--accent-primary); outline-offset: 3px; }
.btn-arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.spinner { width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   HERO — Swiss two-column instrument
   ============================================================ */
.hero { position: relative; padding: 150px 0 96px; border-bottom: 1px solid var(--surface-border); }
.hero-top { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; }
.hero-copy { text-align: left; padding-top: 6px; }

.hero-index { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary); display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.hero-index::before { content: ""; width: 38px; height: 1px; background: var(--line-strong); display: inline-block; }

.hero h1 { font-family: var(--font-hero); font-size: clamp(40px, 5.6vw, 74px); font-weight: 700; line-height: 0.98; letter-spacing: -0.035em; }
.hero h1 .hl { display: block; }
.hero h1 .grad { color: var(--accent-primary); }
.hero-sub { color: var(--text-secondary); font-size: clamp(16px, 1.5vw, 18px); line-height: 1.55; max-width: 460px; margin: 26px 0 0; }

/* hero meta readout under subhead */
.hero-meta { display: flex; gap: 34px; margin-top: 36px; }
.hero-meta .hm { }
.hero-meta .hm b { display: block; font-family: var(--font-num); font-size: 26px; font-weight: 500; letter-spacing: -0.02em; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.hero-meta .hm span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary); }

/* ============================================================
   WAITLIST — paper instrument panel
   ============================================================ */
.hero-waitlist { margin-top: 0; max-width: 100%; align-self: start; background: var(--surface-card); border: 1px solid var(--line-strong); border-radius: 6px; padding: 26px 26px 22px; }
.hero-waitlist.signed { background: var(--surface-card); }
.wl-badge { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--surface-border); }
.wl-badge .lpulse { display: none; }
.wl-cardtitle { font-family: var(--font-title); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 6px; }
.wl-cardsub { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 20px; max-width: 42ch; }

.wl-form { display: flex; flex-direction: column; align-items: stretch; gap: 9px; max-width: none; }
.wl-stack { display: flex; flex-direction: column; gap: 9px; }
.wl-field { display: flex; align-items: center; gap: 10px; padding: 0 14px; background: #fff; border: 1px solid var(--surface-border); border-radius: 4px; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.band-ink .wl-field, .final .wl-field { background: rgba(255,255,255,0.04); }
.wl-field input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; color: var(--text-primary); font-size: 15px; padding: 11px 0; }
.wl-field input::placeholder { color: var(--text-tertiary); }
.wl-field:focus-within { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(27,69,255,0.14); }
.hero-waitlist .wl-field input { padding: 10px 0; font-size: 15px; }
.wl-form .btn-primary { padding: 13px 20px; width: 100%; justify-content: center; }
.wl-form.invalid .wl-field { border-color: var(--danger); }

.wl-error { color: var(--danger); font-size: 13px; margin-top: 10px; min-height: 0; opacity: 0; transition: opacity 0.2s ease; }
.wl-error.show { opacity: 1; }

.wl-trust { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.wl-trust span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-tertiary); }
.wl-trust svg { width: 12px; height: 12px; color: var(--accent-primary); flex: none; }
.wl-social { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--surface-border); font-size: 12.5px; color: var(--text-secondary); }
.wl-social b { color: var(--text-primary); font-weight: 600; font-family: var(--font-num); }
.avatars { display: inline-flex; }
.avatars span { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--surface-card); margin-left: -7px; background: var(--accent-primary); }
.avatars span:first-child { margin-left: 0; }
.wl-microcopy { margin-top: 14px; font-size: 12.5px; color: var(--text-tertiary); display: flex; align-items: center; gap: 9px; }

/* ============================================================
   SUCCESS / REFERRAL
   ============================================================ */
.wl-success { display: none; }
.wl-success.show { display: block; animation: popin 0.4s var(--ease); }
@keyframes popin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.success-card { background: transparent; border: none; padding: 0; }
.success-top { display: flex; align-items: center; gap: 12px; }
.success-check { width: 36px; height: 36px; border-radius: 4px; flex: none; display: grid; place-items: center; background: var(--accent-primary); color: #fff; }
.success-card.already .success-check { background: var(--text-primary); color: var(--surface-card); }
.success-top .st-1 { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.success-top .st-2 { font-size: 12.5px; color: var(--text-secondary); }
.pos-row { display: flex; align-items: baseline; gap: 10px; margin: 22px 0 4px; }
.pos-row .pos-num { font-family: var(--font-num); font-weight: 500; font-size: 44px; letter-spacing: -0.03em; color: var(--accent-primary); font-variant-numeric: tabular-nums; }
.pos-row .pos-lab { color: var(--text-secondary); font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }
.ref-link { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding: 5px 5px 5px 14px; background: #fff; border: 1px solid var(--surface-border); border-radius: 4px; }
.band-ink .ref-link, .final .ref-link { background: rgba(255,255,255,0.04); }
.ref-link code { flex: 1; font-family: var(--font-mono); font-size: 13px; color: var(--text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn { font-size: 12.5px; font-weight: 600; padding: 9px 13px; border-radius: 4px; background: var(--surface-2); border: 1px solid var(--surface-border); color: var(--text-primary); transition: background 0.2s; font-family: var(--font-mono); }
.copy-btn:hover { background: var(--accent-primary); color: #fff; }
.copy-btn.done { background: var(--accent-primary); color: #fff; }
.ref-progress { margin-top: 20px; }
.ref-progress .pr-head { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-secondary); margin-bottom: 9px; font-family: var(--font-mono); }
.ref-progress .pr-head b { color: var(--text-primary); font-weight: 500; }
.pr-track { height: 6px; border-radius: 2px; background: var(--surface-2); overflow: hidden; }
.pr-fill { height: 100%; width: 0%; background: var(--accent-primary); transition: width 0.7s var(--ease); }
.share { display: flex; gap: 8px; margin-top: 20px; }
.share button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 4px; background: transparent; border: 1px solid var(--surface-border); color: var(--text-secondary); font-size: 12.5px; font-weight: 500; font-family: var(--font-mono); transition: all 0.2s ease; }
.share button:hover { color: var(--text-primary); border-color: var(--text-primary); }
.ref-note { font-size: 12px; color: var(--text-tertiary); margin-top: 14px; }

/* ============================================================
   STAT TICKER (ink band)
   ============================================================ */
.ticker { padding: 64px 0; }
.ticker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--surface-border); }
.ticker-cell { padding: 30px 26px 30px 0; border-left: 1px solid var(--surface-border); padding-left: 26px; }
.ticker-cell:first-child { border-left: none; padding-left: 0; }
.ticker-cell b { display: block; font-family: var(--font-num); font-size: clamp(30px, 3.6vw, 46px); font-weight: 500; letter-spacing: -0.03em; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.ticker-cell span { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-tertiary); line-height: 1.5; }
.ticker-cell b em { font-style: normal; color: var(--accent-secondary); }
@media (max-width: 820px) { .ticker-grid { grid-template-columns: 1fr 1fr; } .ticker-cell:nth-child(odd) { border-left: none; padding-left: 0; } }

/* ============================================================
   THESIS (ink band)
   ============================================================ */
.thesis { padding: 110px 0; }
.thesis-kicker { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-secondary); margin-bottom: 28px; }
.thesis-line { font-family: var(--font-title); font-size: clamp(26px, 3.6vw, 44px); line-height: 1.18; letter-spacing: -0.025em; color: var(--text-primary); max-width: 920px; text-wrap: balance; font-weight: 700; }
.thesis-line em { font-style: normal; color: var(--accent-primary); }
.thesis-foot { font-size: 16px; color: var(--text-secondary); margin-top: 28px; font-family: var(--font-mono); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section-head { max-width: 760px; margin: 0; text-align: left; }
.tag { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-secondary); display: flex; align-items: center; gap: 11px; }
.tag::before { content: ""; width: 30px; height: 1px; background: var(--line-strong); }
.section-head h2 { font-family: var(--font-title); font-size: clamp(28px, 3.4vw, 44px); margin-top: 18px; letter-spacing: -0.03em; line-height: 1.04; }
.section-head p { color: var(--text-secondary); font-size: 16.5px; margin-top: 16px; max-width: 600px; }

/* ============================================================
   CONTROL ROOM SHOWCASE
   ============================================================ */
.showcase { }
.hero-shot-wrap { margin-top: 44px; position: relative; }
.hero-shot { will-change: transform; }

.console { background: var(--surface-card); border: 1px solid var(--surface-border); border-radius: 8px; overflow: hidden; text-align: left; box-shadow: 0 30px 60px -40px rgba(0,0,0,0.5); }
.console-bar { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--surface-border); }
.dots { display: flex; gap: 7px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; display: block; background: var(--surface-2); }
.console-title { font-size: 11.5px; color: var(--text-tertiary); letter-spacing: 0.02em; }
.console-tabs { margin-left: auto; display: flex; gap: 4px; }
.console-tabs span { font-size: 11px; color: var(--text-tertiary); padding: 5px 11px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; transition: color 0.2s, background 0.2s; }
.console-tabs span:hover { color: var(--text-primary); }
.console-tabs span.on { color: #fff; background: var(--accent-primary); }

.console-body { display: grid; grid-template-columns: 1fr 0.92fr; gap: 0; }
.console-main { padding: 22px; border-right: 1px solid var(--surface-border); transition: opacity 0.25s var(--ease); }
.console-side { padding: 22px; display: flex; flex-direction: column; gap: 14px; transition: opacity 0.25s var(--ease); }
.console.swapping .console-main, .console.swapping .console-side { opacity: 0.3; }
.kicker { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-tertiary); }

.alert { display: flex; gap: 13px; padding: 15px; border-radius: 5px; margin-top: 14px; background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.34); }
.alert.resolved { background: rgba(27,69,255,0.1); border-color: rgba(27,69,255,0.34); }
.alert .ic { width: 34px; height: 34px; border-radius: 5px; flex: none; display: grid; place-items: center; background: rgba(192,57,43,0.16); }
.alert.resolved .ic { background: rgba(27,69,255,0.16); }
.alert h4 { font-size: 14px; font-family: var(--font-body); font-weight: 600; }
.alert p { font-size: 12.5px; color: var(--text-secondary); margin-top: 3px; }
.alert-act { margin-top: 11px; display: flex; gap: 8px; }
.chip { font-size: 11.5px; font-weight: 600; padding: 6px 11px; border-radius: 3px; cursor: pointer; font-family: var(--font-mono); }
.chip.solve { background: var(--accent-primary); color: #fff; }
.chip.done { background: var(--accent-primary); color: #fff; }
.chip.ghost { border: 1px solid var(--surface-border); color: var(--text-secondary); }
.chip.solve:hover { background: var(--accent-press); }

.chart { margin-top: 20px; }
.chart-head { display: flex; align-items: baseline; justify-content: space-between; }
.chart-head .big { font-family: var(--font-num); font-size: 22px; font-weight: 500; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.chart-head .delta { font-size: 11.5px; color: var(--danger); font-family: var(--font-mono); }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 84px; margin-top: 14px; }
.bars i { flex: 1; border-radius: 2px; background: var(--accent-primary); transition: height 0.6s var(--ease), background 0.4s var(--ease); }
.bars i.hot { background: var(--danger); }

.metric { background: var(--surface-2); border: 1px solid var(--surface-border); border-radius: 5px; padding: 13px 14px; }
.metric .lab { font-size: 11px; color: var(--text-tertiary); display: flex; justify-content: space-between; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.03em; }
.metric .val { font-family: var(--font-num); font-size: 19px; margin-top: 6px; font-variant-numeric: tabular-nums; }
.metric .val.good { color: var(--accent-primary); }
.spark { height: 28px; margin-top: 8px; display: block; width: 100%; }
.spark path { stroke: var(--accent-primary) !important; }
.statusline { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--text-secondary); }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-primary); flex: none; }

.mini-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-bottom: 1px solid var(--surface-border); }
.mini-row:last-child { border-bottom: none; }
.mini-row.resolved { opacity: 0.45; }
.mini-row .left { display: flex; align-items: center; gap: 12px; }
.mini-row .swatch { width: 30px; height: 30px; border-radius: 5px; flex: none; background: var(--surface-2); display: grid; place-items: center; color: var(--text-secondary); }
.mini-row .swatch svg { width: 15px; height: 15px; display: block; }
.mini-row .nm { font-size: 13px; font-weight: 500; }
.mini-row .sub { font-size: 11px; color: var(--text-tertiary); }
.mini-row .tagv { font-size: 11.5px; padding: 4px 8px; border-radius: 3px; }
.tagv.bad { color: var(--danger); background: rgba(192,57,43,0.14); }
.tagv.ok { color: var(--accent-primary); background: rgba(27,69,255,0.14); }
.tagv.warn { color: var(--warn); background: rgba(154,107,22,0.16); }

.chat { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.bubble { max-width: 84%; padding: 11px 14px; border-radius: 5px; font-size: 13px; line-height: 1.5; }
.bubble.user { align-self: flex-end; background: var(--accent-primary); color: #fff; }
.bubble.ai { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--surface-border); color: var(--text-primary); }
.bubble.ai .hl { color: var(--accent-primary); }
.typing { display: inline-flex; gap: 4px; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--text-tertiary); animation: blink 1.2s infinite; }
.typing i:nth-child(2){ animation-delay: 0.2s; } .typing i:nth-child(3){ animation-delay: 0.4s; }
@keyframes blink { 0%,60%,100%{opacity:0.25;} 30%{opacity:1;} }

.ch-row { display: grid; grid-template-columns: 1fr auto; gap: 10px 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--surface-border); }
.ch-row:last-child { border-bottom: none; }
.ch-row .ch-name { font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 9px; }
.ch-row .ch-ic { width: 22px; height: 22px; border-radius: 4px; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.ch-row .ch-bar { grid-column: 1 / -1; height: 6px; border-radius: 2px; background: var(--surface-2); overflow: hidden; }
.ch-row .ch-bar > span { display: block; height: 100%; background: var(--accent-primary); }
.ch-row .ch-val { font-size: 12.5px; text-align: right; font-variant-numeric: tabular-nums; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 66px 0; border-bottom: 1px solid var(--surface-border); }
.feature:last-child { border-bottom: none; }
.feature.flip .feature-media { order: 2; }
.feature-copy h3 { font-family: var(--font-title); font-size: clamp(24px, 2.8vw, 32px); margin-top: 14px; letter-spacing: -0.025em; }
.feature-copy > p { color: var(--text-secondary); font-size: 16px; margin-top: 15px; max-width: 460px; }
.bullets { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--text-secondary); }
.bullets .b-ic { width: 18px; height: 18px; flex: none; display: grid; place-items: center; color: var(--accent-primary); margin-top: 1px; }
.bullets .b-ic svg path { stroke: currentColor !important; }
.feature-media { position: relative; }

/* ============================================================
   CAPABILITIES BENTO  (paper)
   ============================================================ */
.band-light { background: var(--bg-base); color: var(--text-primary); padding: 100px 0; }
.band-light .tag { color: var(--accent-secondary); }
.band-light .section-head h2 { color: var(--text-primary); }
.band-light .section-head p { color: var(--text-secondary); }

.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 50px; border-top: 1px solid var(--surface-border); border-left: 1px solid var(--surface-border); }
.bento-card { grid-column: span 1; position: relative; overflow: hidden; background: var(--bg-base); border-right: 1px solid var(--surface-border); border-bottom: 1px solid var(--surface-border); padding: 30px 26px; transition: background 0.3s var(--ease); }
.bento-card.wide { grid-column: span 2; }
.bento-card:hover { background: var(--surface-card); }
.bento-ic { width: 42px; height: 42px; border-radius: 5px; display: grid; place-items: center; background: var(--text-primary); color: var(--bg-base); margin-bottom: 20px; }
.bento-ic svg path { stroke: currentColor !important; }
.bento-card h4 { font-size: 18px; font-family: var(--font-title); color: var(--text-primary); letter-spacing: -0.01em; }
.bento-card p { font-size: 14px; color: var(--text-secondary); margin-top: 9px; max-width: 40ch; }
.bento-card .b-body { position: relative; z-index: 1; }
.b-sources { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.b-source { display: flex; align-items: center; gap: 9px; padding: 7px 12px 7px 8px; border-radius: 4px; background: var(--surface-card); border: 1px solid var(--surface-border); font-size: 12.5px; font-weight: 500; color: var(--text-primary); }
.b-source .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-primary); margin-left: 2px; }
.b-source .ig, .b-logo { width: 22px; height: 22px; border-radius: 5px; display: grid; place-items: center; flex: none; color: #fff; }
.b-logo svg { width: 13px; height: 13px; display: block; }
.b-rank { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.b-rank-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; }
.b-rank-row .bar { height: 6px; border-radius: 2px; background: var(--accent-primary); }
.b-rank-row .bar.b2 { background: var(--text-tertiary); }
.b-rank-row .bar.b3 { background: var(--surface-2); }
.b-rank-row .v { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-secondary); white-space: nowrap; }
.b-rank-row .v.hot { color: var(--danger); }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento-card.wide { grid-column: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento-card, .bento-card.wide { grid-column: span 1; } }

/* ============================================================
   HOW IT WORKS  (ink band) — numbered editorial list
   ============================================================ */
.steps { position: relative; max-width: 880px; margin: 50px 0 0; }
.steps-line { display: none; }
.step { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 26px; padding: 26px 0; border-top: 1px solid var(--surface-border); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--surface-border); }
.step-num { font-family: var(--font-num); font-size: 22px; font-weight: 500; color: var(--text-tertiary); background: none; border: none; width: auto; height: auto; display: block; }
.step-card { background: none; border: none; border-radius: 0; padding: 0; }
.step-card h4 { font-size: 19px; font-family: var(--font-title); }
.step-card p { color: var(--text-secondary); font-size: 14.5px; margin-top: 8px; max-width: 60ch; }
.step:hover .step-num { color: var(--accent-primary); }
.step:hover .step-card { transform: none; box-shadow: none; }

/* ============================================================
   COUNTER  (paper)
   ============================================================ */
.counter-band { padding: 96px 0; }
.counter { text-align: left; }
.counter .num { font-family: var(--font-num); font-weight: 500; font-size: clamp(56px, 10vw, 120px); letter-spacing: -0.04em; line-height: 1; color: var(--accent-primary); font-variant-numeric: tabular-nums; }
.band-light .counter .num { color: var(--accent-primary); background: none; -webkit-text-fill-color: currentColor; }
.counter .label { color: var(--text-secondary); font-size: 16px; margin-top: 16px; max-width: 420px; }
.band-light .counter .label { color: var(--text-secondary); }

/* ============================================================
   FINAL CTA  (ink band)
   ============================================================ */
.final { position: relative; margin: 0; border-radius: 0; overflow: hidden; border: none; }
.final-inner { position: relative; z-index: 2; text-align: left; padding: 110px var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.final-copy { max-width: 600px; }
.final h2 { font-family: var(--font-title); font-size: clamp(30px, 4.4vw, 54px); letter-spacing: -0.03em; line-height: 1.02; }
.final p { color: var(--text-secondary); font-size: 17px; margin-top: 18px; max-width: 440px; }
.final .hero-form-wrap { margin-top: 0; }
@media (max-width: 860px) { .final-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   FOOTER  (paper)
   ============================================================ */
.footer { border-top: 1px solid var(--surface-border); padding: 50px 0 60px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.03em; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 4px; display: grid; place-items: center; border: 1px solid var(--surface-border); color: var(--text-secondary); transition: all 0.2s; }
.socials a:hover { color: var(--text-primary); border-color: var(--text-primary); }
.footer-legal { color: var(--text-tertiary); font-size: 12px; margin-top: 30px; font-family: var(--font-mono); }

/* ============================================================
   TOAST
   ============================================================ */
.cal-toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(22px); display: flex; align-items: center; gap: 11px; padding: 12px 16px; border-radius: 5px; z-index: 150; background: #14130F; border: 1px solid rgba(255,255,255,0.16); color: #F0EEE6; font-size: 13px; box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6); opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.cal-toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }
.cal-toast .t-ic { width: 20px; height: 20px; border-radius: 4px; flex: none; display: grid; place-items: center; background: var(--accent-primary); color: #fff; }
.cal-toast .t-undo { margin-left: 6px; font-weight: 600; color: #8FA8FF; cursor: pointer; padding-left: 11px; border-left: 1px solid rgba(255,255,255,0.16); font-family: var(--font-mono); }
.cal-toast .t-undo:hover { color: #fff; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.07s; } .reveal.d2 { transition-delay: 0.14s; } .reveal.d3 { transition-delay: 0.21s; }
.hero [data-load] { opacity: 1; }
html.anim-ready .hero [data-load] { opacity: 0; transform: translateY(18px); animation: heroIn 0.8s var(--ease) forwards; }
html.anim-ready .hero [data-load="1"] { animation-delay: 0.04s; }
html.anim-ready .hero [data-load="2"] { animation-delay: 0.12s; }
html.anim-ready .hero [data-load="4"] { animation-delay: 0.22s; }
html.anim-ready .hero [data-load="5"] { animation-delay: 0.32s; }
html.anim-ready .hero [data-load="6"] { animation-delay: 0.42s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
html.intro-done .hero [data-load] { opacity: 1 !important; transform: none !important; animation: none !important; }
html.intro-done .reveal { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-top { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 620px; }
  .feature { grid-template-columns: 1fr; gap: 34px; }
  .feature.flip .feature-media { order: 0; }
  .console-body { grid-template-columns: 1fr; }
  .console-main { border-right: none; border-bottom: 1px solid var(--surface-border); }
}
@media (max-width: 620px) {
  .hero { padding: 124px 0 64px; }
  .section { padding: 72px 0; }
  .hero-meta { gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero [data-load] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HIGGSFIELD MEDIA  (generated assets layered onto the design)
   ============================================================ */
/* real product thumbnails in the console rows */
.mini-row .swatch { overflow: hidden; padding: 0; }
.mini-row .swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* brand still — a subtle instrument-panel accent behind the thesis statement */
.thesis { position: relative; overflow: hidden; }
.thesis > .wrap { position: relative; z-index: 1; }
.thesis-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 80% center; opacity: 0.42; z-index: 0; pointer-events: none; }

/* ambient loop behind the final CTA (now an ink band) */
.final { isolation: isolate; }
.final-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.38; z-index: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .final-video { display: none; } }
