/* ============================================================
   SPLIT · THE CONSOLE, IN DAYLIGHT
   Warm white canvas, near-black type, one orange signal.
   Photo-driven layout patterns, honest placeholders where a
   real photograph belongs. The dark console survives only in
   the footer and the application terminal.
   ============================================================ */

/* ------------------------------------------------ fonts ---- */
@font-face { font-family: 'Space Grotesk'; src: url('/assets/fonts/SpaceGrotesk-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/assets/fonts/SpaceGrotesk-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/assets/fonts/JetBrainsMono-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/assets/fonts/JetBrainsMono-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/assets/fonts/JetBrainsMono-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/assets/fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/assets/fonts/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/assets/fonts/Inter-Semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/assets/fonts/Inter-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ----------------------------------------------- tokens ---- */
:root {
  --bg: #FFFFFF;
  --panel: #F5F3EF;
  --border: #E8E5DE;
  --steel: #DBD7CE;
  --steel-hi: #B7B1A4;
  --ink: #16150F;
  --ink-dim: rgba(22,21,15,0.68);
  --ink-soft: rgba(22,21,15,0.48);
  --ink-ghost: rgba(22,21,15,0.32);
  --mute: #7A7568;
  --accent: #FF6A3C;
  --accent-deep: #E24A16;
  --accent-glow: rgba(255,106,60,0.12);
  --head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 250ms;
  --header-h: 64px;
  --wrap: 1220px;
}

/* ------------------------------------------------- base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--steel-hi); border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--mute); }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 300;
  background: var(--accent); color: #fff; padding: 10px 18px;
  font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase;
}
.skip-link:focus { left: 8px; }

/* global kill switch: every animation collapses for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------- type utils ---- */
.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.m-label {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
}
.m-label--acc { color: var(--accent); }
.h-display {
  font-family: var(--head); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.015em; color: var(--ink);
}
.lead { font-size: 1.1rem; line-height: 1.7; color: var(--ink-dim); }
.dim { color: var(--ink-ghost); }
.acc { color: var(--accent); }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; } .mt-6 { margin-top: 32px; } .mt-7 { margin-top: 48px; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* status pill: [ TELEMETRY: RUNNING ] with a live square */
.status {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent);
}
.status::before {
  content: ""; width: 7px; height: 7px; background: var(--accent); flex: none;
  animation: statusPulse 2.2s var(--ease) infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,106,60,0.55); opacity: 1; }
  50% { box-shadow: 0 0 0 7px rgba(255,106,60,0); opacity: 0.55; }
}
.blink { animation: cblink 1.1s steps(1) infinite; }
@keyframes cblink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }

/* ---------------------------------------------- buttons ---- */
.cbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--mono); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  padding: 15px 28px; border: 1px solid var(--steel-hi); color: var(--ink-dim);
  background: transparent;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}
.cbtn .arr { transition: transform var(--fast) var(--ease); }
.cbtn:hover .arr { transform: translateX(5px); }
.cbtn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.cbtn--line { border-color: var(--ink); color: var(--ink); }
.cbtn--line:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.cbtn--fill { background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 700; }
.cbtn--fill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.cbtn--lg { padding: 19px 36px; font-size: 0.84rem; }
.cbtn--sm { padding: 10px 18px; font-size: 0.68rem; }
.micro {
  display: block; font-family: var(--mono); font-size: 0.74rem;
  letter-spacing: 0.08em; color: var(--mute); margin-top: 16px;
}
.tlink-c {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.tlink-c .arr { transition: transform var(--fast) var(--ease); }
.tlink-c:hover .arr { transform: translateX(5px); }
.alink { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--steel-hi); transition: text-decoration-color var(--fast); }
.alink:hover { text-decoration-color: var(--accent); }

/* ----------------------------------- header: grid controller ---- */
.console-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--header-h);
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.ch-in {
  width: min(100% - 48px, 1360px); margin-inline: auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.ch-brand {
  font-family: var(--head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.ch-brand img { height: 26px; width: auto; display: block; }
.ch-brand i { font-style: normal; color: var(--accent); margin-left: 2px; }
.ch-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.ch-nav a {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
  padding: 6px 2px; transition: color var(--fast);
}
.ch-nav a:hover { color: var(--ink); }
.ch-nav a[aria-current="page"] { color: var(--accent); }
.ch-cta { display: flex; align-items: center; gap: 12px; }
.ch-burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--steel-hi);
  position: relative; flex: none;
  transition: border-color var(--fast);
}
.ch-burger:hover { border-color: var(--ink); }
.ch-burger span, .ch-burger::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 1.6px;
  background: var(--ink); transition: transform var(--fast) var(--ease), top var(--fast) var(--ease);
}
.ch-burger span { top: 16px; }
.ch-burger::after { top: 24px; }
body.menu-open .ch-burger span { top: 20px; transform: rotate(45deg); }
body.menu-open .ch-burger::after { top: 20px; transform: rotate(-45deg); }

/* fullscreen overlay menu */
.console-menu {
  position: fixed; inset: 0; z-index: 80; background: var(--bg);
  padding: calc(var(--header-h) + 28px) 26px 36px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease), visibility 0s var(--fast);
}
body.menu-open .console-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
body.menu-open { overflow: hidden; }
.console-menu a.cm-link {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 2px; border-bottom: 1px solid var(--border);
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.6rem, 7.4vw, 2.4rem); letter-spacing: 0.02em; color: var(--ink);
  opacity: 0; transform: translateY(14px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease), color var(--fast);
}
.console-menu a.cm-link:hover { color: var(--accent); }
.console-menu a.cm-link .ix { font-family: var(--mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.2em; color: var(--accent); }
body.menu-open .cm-link { opacity: 1; transform: none; }
body.menu-open .cm-link:nth-child(1) { transition-delay: 60ms; }
body.menu-open .cm-link:nth-child(2) { transition-delay: 105ms; }
body.menu-open .cm-link:nth-child(3) { transition-delay: 150ms; }
body.menu-open .cm-link:nth-child(4) { transition-delay: 195ms; }
body.menu-open .cm-link:nth-child(5) { transition-delay: 240ms; }
body.menu-open .cm-link:nth-child(6) { transition-delay: 285ms; }
body.menu-open .cm-link:nth-child(7) { transition-delay: 330ms; }
.console-menu .cm-cta { margin-top: auto; display: grid; gap: 12px; padding-top: 28px; }
.console-menu .cm-cta .cbtn { width: 100%; }

/* ------------------------------------------------- hero ---- */
.hero-console {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  padding: clamp(64px, 9vh, 110px) 0;
  overflow: hidden;
}
.hero-console::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(22,21,15,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,21,15,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(90% 80% at 50% 30%, #000 30%, transparent 100%);
  mask-image: radial-gradient(90% 80% at 50% 30%, #000 30%, transparent 100%);
}
.hero-console::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46% 38% at 18% 8%, var(--accent-glow), transparent 70%);
}
.hero-console .wrap { position: relative; z-index: 2; }
.hero-hud {
  position: absolute; top: 26px; right: 26px; z-index: 2;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--steel-hi); text-align: right; line-height: 2;
}
.hero-title {
  margin-top: 26px;
  font-family: var(--head); font-weight: 700;
  font-size: clamp(2.35rem, 6.2vw, 4.7rem);
  line-height: 1.04; letter-spacing: -0.018em;
}
.hero-title .hl { display: block; }
.hero-title .hl--ghost { color: var(--ink-ghost); }
.hero-title .hl--sub { font-size: 0.62em; font-weight: 500; color: var(--ink); margin-top: 0.55em; letter-spacing: -0.008em; }
.hero-cta { margin-top: 44px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-meta {
  margin-top: clamp(48px, 7vh, 84px); padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 10px 0;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute);
}
.hero-meta span { display: inline-flex; align-items: center; }
.hero-meta span + span::before { content: "/"; margin: 0 18px; color: var(--steel-hi); }
.hero-meta b { color: var(--ink-dim); font-weight: 500; }

/* --------------------------------------------- sections ---- */
.sec { padding: clamp(76px, 9vw, 132px) 0; position: relative; }
.sec--line { border-top: 1px solid var(--border); }
.sec--tight { padding: clamp(56px, 6.6vw, 96px) 0; }
.sec-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  margin-bottom: clamp(34px, 4.6vw, 60px);
}
.sec-title {
  font-family: var(--head); font-weight: 700; letter-spacing: -0.015em;
  font-size: clamp(1.85rem, 4vw, 3rem); line-height: 1.1;
}
.sec-sub { max-width: 62ch; }

/* reveal engine (JS gated so no JS means no hidden content) */
html.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
html.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ------------------------------------ mission statement ---- */
.duo { display: grid; grid-template-columns: 250px 1fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.duo > .m-label--acc { position: sticky; top: calc(var(--header-h) + 24px); }
.mission-big {
  font-family: var(--head); font-weight: 500;
  font-size: clamp(1.35rem, 2.7vw, 2.05rem); line-height: 1.42; letter-spacing: -0.01em;
}
.mission-big b { font-weight: 700; color: var(--ink); }
.mission-big .acc { font-weight: 700; }
.nodeline { display: flex; flex-wrap: wrap; gap: 10px; }
.pchip {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid var(--steel); padding: 12px 18px;
  transition: border-color var(--fast), color var(--fast);
}
.pchip:hover { border-color: var(--ink); color: var(--ink); }
.pchip .k { color: var(--mute); margin-right: 8px; }
.pchip--live { border-color: rgba(255,106,60,0.5); color: var(--accent); }

/* --------------------------------- factory architecture ---- */
.factory { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.fcell {
  position: relative; min-height: 320px; padding: clamp(24px, 2.4vw, 38px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 44px;
  border-right: 1px solid var(--border);
  transition: background var(--fast);
}
.fcell:last-child { border-right: 0; }
.fcell::after {
  content: ""; position: absolute; inset: -1px; border: 1px solid transparent;
  pointer-events: none; transition: border-color var(--fast);
}
.fcell:hover::after { border-color: var(--ink); }
.fcell:hover { background: rgba(22,21,15,0.02); }
.fcell__ix { font-family: var(--mono); font-size: 0.95rem; color: var(--mute); letter-spacing: 0.1em; transition: color var(--fast); }
.fcell:hover .fcell__ix { color: var(--accent); }
.fcell__t {
  font-family: var(--head); font-weight: 700; font-size: 1.02rem;
  letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.4;
}
.fcell__d { font-size: 0.92rem; line-height: 1.75; color: var(--ink-dim); margin-top: 12px; }
.fcell__tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 14px; }

/* ------------------------------------------ equity: 80/20 ---- */
.equityc { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.donut {
  position: relative; width: min(340px, 74vw); aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--deg, 288) * 1deg), rgba(22,21,15,0.08) 0);
  filter: drop-shadow(0 0 26px rgba(255,106,60,0.18));
  margin-inline: auto;
}
.donut::before { content: ""; position: absolute; inset: 12%; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); }
.donut__c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.donut__c .big { font-family: var(--head); font-weight: 700; font-size: clamp(3rem, 7vw, 4.4rem); line-height: 1; letter-spacing: -0.02em; }
.donut__c .sm { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mute); }
.eq-tag { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }
.eq-tag b { color: var(--ink); }
.eq-legend { display: grid; gap: 14px; }
.eq-row { display: flex; gap: 14px; align-items: baseline; font-size: 0.95rem; color: var(--ink-dim); line-height: 1.6; }
.eq-row b { color: var(--ink); }
.eq-sw { width: 11px; height: 11px; flex: none; transform: translateY(1px); }
.eq-sw--you { background: var(--accent); }
.eq-sw--split { background: rgba(22,21,15,0.18); }

/* the table panel: kept scene, your side of the table */
.tablepanel {
  margin-top: clamp(56px, 7vw, 96px);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(60% 70% at 50% 100%, rgba(255,106,60,0.06), transparent 65%),
    var(--panel);
}
.tablepanel .tscene { display: block; max-width: 880px; margin: 34px auto 0; width: 100%; height: auto; overflow: visible; }

/* tscene vocabulary, recolored for daylight */
.tscene .s-line { stroke: var(--accent); stroke-width: 1.6; fill: none; }
.tscene__label { font-family: var(--mono); font-weight: 500; font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; }
.tscene__label--them { fill: var(--mute); }
.tscene__label--you { fill: var(--accent); }
.tscene__glow { animation: youpulse 3.2s var(--ease) infinite; transform-origin: center; }
@keyframes youpulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.tscene .s-floor { fill: rgba(22,21,15,0.035); }
.tscene .s-shadow { fill: rgba(22,21,15,0.07); }
.tscene .s-shadow--you { fill: rgba(255,106,60,0.18); }
.tscene .s-table-top { fill: #EFECE4; stroke: rgba(22,21,15,0.3); stroke-width: 1.6; }
.tscene .s-table-edge { fill: #E2DED2; stroke: rgba(22,21,15,0.22); stroke-width: 1.6; }
.tscene .s-them-body { fill: rgba(22,21,15,0.07); stroke: rgba(22,21,15,0.4); stroke-width: 1.5; }
.tscene .s-you-body { fill: var(--accent); stroke: var(--accent-deep); stroke-width: 1.5; }
.tscene .s-you-body--soft { fill: rgba(255,106,60,0.78); }
.tscene .s-lamp { stroke: rgba(22,21,15,0.32); stroke-width: 1.4; fill: none; }
.tscene .s-lampglow { fill: rgba(255,106,60,0.14); animation: youpulse 4.4s var(--ease) infinite; }
.tscene .s-paper { fill: rgba(22,21,15,0.08); stroke: rgba(22,21,15,0.28); stroke-width: 1.1; }

/* --------------------------------------- venture registry ---- */
.reg-headrow, .reg-row {
  display: grid; grid-template-columns: 64px 1.35fr 1fr 1fr 84px;
  align-items: center; gap: 14px;
}
.reg-headrow {
  padding: 0 4px 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mute);
}
.reg-item { border-bottom: 1px solid var(--border); }
.reg-row { width: 100%; text-align: left; padding: 24px 4px; transition: background var(--fast); }
.reg-row:hover { background: rgba(22,21,15,0.025); }
.reg-ix { font-family: var(--mono); font-size: 0.85rem; color: var(--mute); transition: color var(--fast); }
.reg-item.open .reg-ix, .reg-row:hover .reg-ix { color: var(--accent); }
.reg-name { font-family: var(--head); font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.35rem); letter-spacing: 0.01em; }
.reg-cat, .reg-status { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.reg-status { display: inline-flex; align-items: center; gap: 10px; }
.reg-status::before { content: ""; width: 6px; height: 6px; background: var(--steel-hi); transition: background var(--fast); }
.reg-item.open .reg-status::before, .reg-row:hover .reg-status::before { background: var(--accent); }
.reg-x {
  justify-self: end; width: 30px; height: 30px; position: relative;
  transition: transform var(--fast) var(--ease);
}
.reg-x::before, .reg-x::after { content: ""; position: absolute; background: var(--mute); transition: background var(--fast); }
.reg-x::before { left: 7px; right: 7px; top: 50%; height: 1.6px; margin-top: -0.8px; }
.reg-x::after { top: 7px; bottom: 7px; left: 50%; width: 1.6px; margin-left: -0.8px; }
.reg-item.open .reg-x { transform: rotate(45deg); }
.reg-item.open .reg-x::before, .reg-item.open .reg-x::after { background: var(--accent); }
.reg-drawer { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease); }
.reg-drawer__in {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 6px 4px 30px 78px;
}
.reg-drawer dt { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.reg-drawer dd { font-size: 0.88rem; line-height: 1.65; color: var(--ink-dim); }
.reg-note { grid-column: 1 / -1; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.reg-note .acc { color: var(--accent); }

/* -------------------------------------- playbook chronicles ---- */
.plays { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.play {
  position: relative; background: var(--bg); padding: clamp(28px, 3.4vw, 48px);
  display: flex; flex-direction: column; gap: 18px; min-height: 250px;
  transition: background var(--fast);
}
.play::after { content: ""; position: absolute; inset: -1px; border: 1px solid transparent; pointer-events: none; transition: border-color var(--fast); z-index: 2; }
.play:hover::after { border-color: var(--ink); }
.play:hover { background: var(--panel); }
.play__ix { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--mute); text-transform: uppercase; transition: color var(--fast); }
.play:hover .play__ix { color: var(--accent); }
.play__t { font-family: var(--head); font-weight: 700; font-size: clamp(1.25rem, 2.2vw, 1.7rem); letter-spacing: -0.01em; }
.play__d { color: var(--ink-dim); font-size: 0.96rem; line-height: 1.7; max-width: 44ch; }
.play .tlink-c { margin-top: auto; position: relative; z-index: 3; }

/* -------------------------------------- founders' words ---- */
.qgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.qcell { background: var(--bg); padding: clamp(24px, 2.6vw, 36px); display: flex; flex-direction: column; gap: 18px; transition: background var(--fast); }
.qcell:hover { background: var(--panel); }
.qcell__ix { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; }
.qcell blockquote { font-size: 0.95rem; line-height: 1.75; color: var(--ink-dim); }
.qcell blockquote b { color: var(--ink); font-weight: 600; }
.qcell footer { margin-top: auto; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }

/* --------------------------------------------- founder ---- */
.founder-c { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.fx-statement {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.12; letter-spacing: -0.018em;
}
.fx-statement .acc sup { font-size: 0.45em; margin-left: 4px; }
.fnote {
  margin-top: 34px; padding: 22px 26px; border-left: 2px solid var(--accent);
  background: var(--panel); max-width: 60ch;
}
.fnote .fn-ix { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.fnote p { font-size: 0.95rem; line-height: 1.75; color: var(--ink-dim); }
.fsig { margin-top: 26px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }
.fsig b { color: var(--ink); font-weight: 500; }

/* honest reserved image frame with corner ticks and a scan line */
.imgframe-c {
  position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--steel);
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 24px; overflow: hidden; background: var(--panel);
}
.imgframe-c::before, .imgframe-c::after,
.imgframe-c .tick::before, .imgframe-c .tick::after { content: ""; position: absolute; width: 14px; height: 14px; border: 0 solid var(--accent); }
.imgframe-c::before { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.imgframe-c::after { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.imgframe-c .tick::before { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.imgframe-c .tick::after { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }
.imgframe-c .scan {
  position: absolute; left: 0; right: 0; top: 0; height: 46px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255,106,60,0.09), transparent);
  animation: scanY 4.6s linear infinite;
}
@keyframes scanY { 0% { transform: translateY(-60px); } 100% { transform: translateY(560px); } }
.imgframe-c p { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); line-height: 2.1; }
.imgframe-c--wide { aspect-ratio: 16 / 8; }
.imgframe-c--sm { width: 78px; aspect-ratio: 1; padding: 6px; flex: none; }
.imgframe-c--sm p { font-size: 0.46rem; letter-spacing: 0.08em; line-height: 1.5; }

/* photo strip: where YC would run real founder photography, we
   run honestly labeled reserved frames until real images exist */
.pstrip { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------------------------------- leverage rail (model, not portfolio) ---- */
/* SPLIT has no funded companies to parade in a Success Stories
   carousel yet. This rail is that section's replacement: the
   actual mechanics of the leverage SPLIT provides. */
.lrail { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x proximity; scrollbar-width: thin; }
.lcard {
  scroll-snap-align: start; flex: 0 0 clamp(230px, 27vw, 310px);
  border: 1px solid var(--border); background: var(--bg);
  padding: clamp(24px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--fast);
}
.lcard:hover { border-color: var(--ink); }
.lcard__stat { font-family: var(--head); font-weight: 700; font-size: clamp(2.1rem, 3.6vw, 2.9rem); color: var(--accent); line-height: 1; }
.lcard__stat small { font-size: 0.4em; font-weight: 500; margin-left: 4px; color: var(--mute); letter-spacing: 0.04em; }
.lcard__t { font-family: var(--head); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.005em; line-height: 1.35; }
.lcard__d { font-size: 0.88rem; line-height: 1.7; color: var(--ink-dim); }

/* --------------------------------- institutional partner tiles ---- */
.ptiles { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--border); }
.ptile {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 12px; min-height: 92px; display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
  transition: color var(--fast), background var(--fast);
}
.ptile:hover { color: var(--ink); background: var(--panel); }
.ptiles .ptile:nth-child(6n) { border-right: 0; }

/* ------------------------------------- resources (knowledge, using what's real) ---- */
.resgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.rescard { background: var(--bg); padding: clamp(22px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 12px; transition: background var(--fast); }
.rescard:hover { background: var(--panel); }
.rescard__tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.rescard h3 { font-family: var(--head); font-weight: 700; font-size: 1.06rem; letter-spacing: 0.005em; }
.rescard p { font-size: 0.87rem; line-height: 1.65; color: var(--ink-dim); }
.rescard .tlink-c { margin-top: auto; }

/* testimonial avatar placeholder */
.qcell__ava {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--steel);
  background: var(--panel); flex: none;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--mono); font-size: 0.38rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); line-height: 1.3;
}
.qcell__head { display: flex; align-items: center; gap: 10px; }

/* -------------------------------------------- CTA band ---- */
.ctaband { text-align: center; }
.ctaband .sec-title { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.countline { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }
.countline b { color: var(--accent); font-weight: 500; }
.ctaband .hero-cta { justify-content: center; }

/* ----------------------------- footer: the system mandate ---- */
/* the footer stays the obsidian console deliberately: one dark
   beat at the bottom of an otherwise daylight page. every token
   below is re-pointed to its console-era value, scoped to .mandate. */
.mandate {
  --bg: #000000; --panel: #0A0A0A; --border: #161616;
  --steel: #242424; --steel-hi: #333333;
  --ink: #FFFFFF; --ink-dim: rgba(255,255,255,0.62);
  --ink-soft: rgba(255,255,255,0.42); --ink-ghost: rgba(255,255,255,0.28);
  --mute: #6a6a6a;
  background: var(--bg); color: var(--ink);
  border-top: 1px solid var(--border); padding: clamp(48px, 6vw, 76px) 0 0; margin-top: clamp(76px, 9vw, 132px);
  position: relative; overflow: hidden;
}
.mandate__line {
  text-align: center; font-family: var(--head); font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.85rem); letter-spacing: 0.05em; text-transform: uppercase;
}
.mandate__line .slash { color: var(--accent); }
.mandate__line .dim { color: var(--ink-ghost); }
.mandate__grid {
  display: grid; grid-template-columns: 200px 1fr 200px;
  gap: clamp(20px, 3vw, 44px); align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
.mandate__col { display: grid; gap: 12px; align-content: start; }
.mandate__col .m-label { margin-bottom: 6px; }
.mandate__col a {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
  width: fit-content; transition: color var(--fast), transform var(--fast) var(--ease);
}
.mandate__col a:hover { color: var(--ink); transform: translateX(4px); }
.mandate__col--right { justify-items: end; text-align: right; }
.mandate__col--right a:hover { transform: translateX(-4px); }
.room-wrap { position: relative; }
.room-wrap::before {
  content: ""; position: absolute; inset: -8% -4%; pointer-events: none;
  background: radial-gradient(52% 62% at 50% 42%, rgba(255,106,60,0.1), transparent 70%);
}
.room { position: relative; width: 100%; height: auto; display: block; }
.room-cap {
  text-align: center; margin-top: 6px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--mute);
}
.mandate__base {
  margin-top: clamp(32px, 4.6vw, 56px); border-top: 1px solid var(--border);
  padding: 22px 0 34px; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
}
.mandate__base a { color: var(--ink-soft); transition: color var(--fast); }
.mandate__base a:hover { color: var(--ink); }

/* the room scene, amplified for pure obsidian so it reads clearly */
.room .tb-ln { stroke: rgba(255,255,255,0.5); stroke-width: 1.7; fill: none; stroke-linecap: round; }
.room .tb-ln--soft { stroke: rgba(255,255,255,0.22); stroke-width: 1.4; fill: none; stroke-linecap: round; }
.room .tb-fill { fill: rgba(255,255,255,0.08); stroke: rgba(255,255,255,0.4); stroke-width: 1.4; }
.room .tb-fill--soft { fill: rgba(255,255,255,0.05); stroke: rgba(255,255,255,0.26); stroke-width: 1.2; }
.room .tb-dark { fill: #050505; stroke: rgba(255,255,255,0.28); stroke-width: 1.2; }
.room .tb-solid { fill: #0B0B0B; stroke: rgba(255,255,255,0.42); stroke-width: 1.5; }
.room .tb-shadow { fill: rgba(255,255,255,0.04); }
.room .tb-acc { stroke: var(--accent); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.room .tb-accfill { fill: var(--accent); }
.room .tb-screen { fill: rgba(255,106,60,0.3); stroke: rgba(255,255,255,0.4); stroke-width: 1.2; }
.room .tb-cone { fill: rgba(255,106,60,0.13); }
.room .tb-seat { fill: rgba(255,255,255,0.06); stroke: rgba(255,255,255,0.5); stroke-width: 1.7; }
.room .tb-sway { animation: tbSway 6s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 0; }
.room .tb-bulb { animation: tbBulb 6s ease-in-out infinite; }
.room .tb-pool { fill: rgba(255,106,60,0.16); animation: tbPool 6s ease-in-out infinite; }
.room .tb-seat { animation: tbSeat 4.2s linear infinite; }
.room .tb-halo { fill: none; stroke: var(--accent); stroke-width: 1.8; opacity: 0; transform-box: fill-box; transform-origin: center; animation: tbHalo 4.2s linear infinite; }
.room .tb-nod { animation: tbNod 3.6s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 95%; }
.room .tb-bob { animation: tbBob 2.8s ease-in-out infinite; }
.room .tb-flick { animation: tbFlick 3.2s ease-in-out infinite; }
.room .tb-steam { animation: tbSteam 3s ease-in-out infinite; }
.room .tb-draw { stroke-dasharray: 200; animation: tbDraw 5.4s var(--ease) infinite; }
.room .tb-pop { opacity: 0; transform-box: fill-box; transform-origin: center; animation: tbPop 5.4s var(--ease) infinite; }
.room .tb-shift { transform-box: fill-box; animation: tbShift 7s var(--ease) infinite; }
.room .td-1 { animation-delay: 0.1s; }
.room .td-2 { animation-delay: 0.42s; }
.room .td-3 { animation-delay: 0.74s; }
.room .td-4 { animation-delay: 1.06s; }
.room .td-5 { animation-delay: 1.38s; }
.room .td-6 { animation-delay: 1.7s; }
.room .td-7 { animation-delay: 2.02s; }
.room .td-a { animation-delay: 0.5s; }
.room .td-b { animation-delay: 1.1s; }
.room .td-c { animation-delay: 1.7s; }
@keyframes tbSway { 0%, 100% { transform: rotate(-2.2deg); } 50% { transform: rotate(2.2deg); } }
@keyframes tbBulb { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes tbPool { 0%, 100% { opacity: 0.5; transform: translateX(-14px); } 50% { opacity: 1; transform: translateX(14px); } }
@keyframes tbSeat {
  0%, 16%, 100% { stroke: rgba(255,255,255,0.5); fill: rgba(255,255,255,0.06); }
  6% { stroke: var(--accent); fill: rgba(255,106,60,0.36); }
}
@keyframes tbHalo {
  0% { opacity: 0; transform: scale(0.4); }
  5% { opacity: 0.9; }
  20% { opacity: 0; transform: scale(1.9); }
  100% { opacity: 0; transform: scale(1.9); }
}
@keyframes tbNod { 0%, 100% { transform: rotate(0deg); } 42% { transform: rotate(-5deg); } 58% { transform: rotate(2deg); } }
@keyframes tbBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes tbFlick { 0%, 100% { opacity: 1; } 42% { opacity: 0.45; } 52% { opacity: 0.85; } 62% { opacity: 0.5; } }
@keyframes tbSteam { 0% { opacity: 0; transform: translateY(2px); } 35% { opacity: 0.65; } 100% { opacity: 0; transform: translateY(-14px); } }
@keyframes tbDraw { 0% { stroke-dashoffset: 200; opacity: 1; } 55% { stroke-dashoffset: 0; opacity: 1; } 84% { opacity: 1; } 96% { opacity: 0; } 100% { stroke-dashoffset: 200; opacity: 0; } }
@keyframes tbPop { 0%, 48% { opacity: 0; transform: scale(0.4); } 56% { opacity: 1; transform: scale(1.25); } 84% { opacity: 1; transform: scale(1); } 96%, 100% { opacity: 0; } }
@keyframes tbShift { 0%, 100% { transform: translateX(0); } 45%, 60% { transform: translateX(12px); } }

/* ---------------------------------------- subpage heroes ---- */
.phero { padding: clamp(64px, 9vw, 118px) 0 clamp(40px, 6vw, 68px); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.phero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(42% 52% at 12% 0%, var(--accent-glow), transparent 70%); }
.phero .wrap { position: relative; z-index: 2; }
.phero h1 { margin-top: 24px; font-size: clamp(2.1rem, 5vw, 3.7rem); }
.phero .lead { margin-top: 22px; max-width: 62ch; }
.phero-meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }

/* -------------------------------------------- block lists ---- */
.blocklist { border-top: 1px solid var(--border); }
.blk { display: grid; grid-template-columns: 96px 1fr; gap: 18px; padding: clamp(24px, 3vw, 36px) 4px; border-bottom: 1px solid var(--border); transition: background var(--fast); }
.blk:hover { background: rgba(22,21,15,0.02); }
.blk__ix { font-family: var(--mono); font-size: 0.8rem; color: var(--mute); letter-spacing: 0.12em; transition: color var(--fast); padding-top: 4px; }
.blk:hover .blk__ix { color: var(--accent); }
.blk h3 { font-family: var(--head); font-weight: 700; font-size: 1.12rem; letter-spacing: 0.01em; }
.blk h3 .tagm { font-family: var(--mono); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-left: 12px; }
.blk p { margin-top: 10px; color: var(--ink-dim); font-size: 0.96rem; line-height: 1.75; max-width: 72ch; }

/* --------------------------------------------- accordion ---- */
.accg { border-top: 1px solid var(--border); }
.accq { border-bottom: 1px solid var(--border); }
.accq__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 20px 4px; transition: color var(--fast); }
.accq__btn:hover { color: var(--accent); }
.accq__btn h3 { font-family: var(--body); font-weight: 500; font-size: 1.02rem; line-height: 1.5; }
.accq__x { position: relative; width: 26px; height: 26px; flex: none; transition: transform var(--fast) var(--ease); }
.accq__x::before, .accq__x::after { content: ""; position: absolute; background: var(--mute); transition: background var(--fast); }
.accq__x::before { left: 5px; right: 5px; top: 50%; height: 1.5px; margin-top: -0.75px; }
.accq__x::after { top: 5px; bottom: 5px; left: 50%; width: 1.5px; margin-left: -0.75px; }
.accq.open .accq__x { transform: rotate(45deg); }
.accq.open .accq__x::before, .accq.open .accq__x::after { background: var(--accent); }
.accq__a { max-height: 0; overflow: hidden; transition: max-height 380ms var(--ease); }
.accq__a p { padding: 0 4px 22px; color: var(--ink-dim); font-size: 0.95rem; line-height: 1.75; max-width: 78ch; }
.accq__a p + p { margin-top: -8px; }

/* ------------------------------------------------ prose ---- */
.prose { max-width: 740px; }
.prose h2 { font-family: var(--head); font-weight: 700; font-size: 1.28rem; margin: 42px 0 12px; }
.prose p, .prose li { color: var(--ink-dim); line-height: 1.8; font-size: 0.98rem; }
.prose p + p { margin-top: 14px; }
.prose ul { padding-left: 20px; margin-top: 10px; display: grid; gap: 8px; }
.prose li::marker { color: var(--accent); }
.updated { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }

/* ------------------------------------------------ forms ---- */
.cform { display: grid; gap: 20px; }
.cform .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 9px; }
.field label, .field > .flabel { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--panel); border: 1px solid var(--steel);
  color: var(--ink); font-family: var(--body); font-size: 1rem;
  padding: 14px 16px; border-radius: 0; appearance: none; -webkit-appearance: none;
  transition: border-color var(--fast), background var(--fast);
}
.field select {
  background-image: linear-gradient(45deg, transparent 49%, var(--mute) 50%), linear-gradient(135deg, var(--mute) 50%, transparent 51%);
  background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%;
  background-size: 5px 5px; background-repeat: no-repeat; padding-right: 42px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--bg); }
.field input::placeholder, .field textarea::placeholder { color: var(--steel-hi); }
.form-done { border: 1px solid var(--accent); padding: 26px; }
.form-done .m-label--acc { display: block; margin-bottom: 10px; }
.form-done p { color: var(--ink-dim); font-size: 0.95rem; }

/* facts panel used beside forms and on apply */
.facts { border: 1px solid var(--border); background: var(--panel); padding: clamp(24px, 3vw, 36px); display: grid; gap: 18px; align-content: start; }
.facts .frow2 { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.facts .frow2:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); padding-top: 3px; }
.facts dd { font-size: 0.92rem; color: var(--ink); text-align: right; }
.splitform { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }

/* ------------------------------- the intake terminal ---- */
/* the application flow keeps the console terminal aesthetic:
   a focused, dark, typewriter moment inside the daylight site. */
.term {
  --bg: #000000; --panel: #0A0A0A; --border: #161616;
  --steel: #242424; --steel-hi: #333333;
  --ink: #FFFFFF; --ink-dim: rgba(255,255,255,0.62);
  --ink-soft: rgba(255,255,255,0.42); --ink-ghost: rgba(255,255,255,0.28);
  --mute: #6a6a6a;
  position: fixed; inset: 0; z-index: 200; background: var(--bg); color: var(--ink);
  display: none; flex-direction: column;
}
body.term-on .term { display: flex; }
body.term-on { overflow: hidden; }
.term::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.term__bar {
  height: 58px; flex: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 0 clamp(16px, 3vw, 30px); border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mute); position: relative; z-index: 2;
}
.term__bar .t-brand { color: var(--ink); }
.term__bar .t-brand i { font-style: normal; color: var(--accent); }
.term__esc { color: var(--mute); letter-spacing: 0.2em; padding: 8px 4px; transition: color var(--fast); }
.term__esc:hover { color: var(--accent); }
.term__prog { height: 2px; background: var(--border); flex: none; position: relative; z-index: 2; }
.term__prog span { display: block; height: 100%; width: 0%; background: var(--accent); transition: width 400ms var(--ease); }
.term__stage { flex: 1; position: relative; overflow: hidden; z-index: 2; }
.tscreen {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  gap: 26px; padding: 24px max(24px, 10vw) 90px;
  opacity: 0; transform: translateY(34px); pointer-events: none; visibility: hidden;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 0s 320ms;
}
.tscreen.act { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition-delay: 0s; }
.tscreen__id { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.tscreen__q { font-family: var(--head); font-weight: 700; font-size: clamp(1.3rem, 3vw, 2.15rem); line-height: 1.25; letter-spacing: -0.012em; max-width: 880px; }
.tscreen__hint { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--mute); max-width: 620px; line-height: 1.9; }
.term-in {
  width: 100%; max-width: 880px; background: transparent; border: 0;
  border-bottom: 1px solid var(--steel); color: var(--ink);
  font-family: var(--body); font-size: 1.08rem; line-height: 1.6;
  padding: 12px 2px; caret-color: var(--accent); border-radius: 0;
}
.term-in:focus { outline: none; border-bottom-color: var(--accent); }
textarea.term-in { min-height: 120px; resize: none; }
.tscreen__row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.term-commit {
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); padding: 12px 0;
  display: inline-flex; gap: 10px; transition: opacity var(--fast);
}
.term-commit:hover { opacity: 0.75; }
.term__foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px max(24px, 10vw) 22px;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute);
}
.term__keys { display: flex; gap: 22px; flex-wrap: wrap; }
.term__back { color: var(--mute); letter-spacing: 0.18em; padding: 6px 2px; transition: color var(--fast); }
.term__back:hover { color: var(--ink); }
.term__count { font-variant-numeric: tabular-nums; transition: color var(--fast); }
.term__count.near { color: var(--accent); animation: cblink 0.9s steps(1) infinite; }
.term__err { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); min-height: 1.2em; }

/* ------------------------------------------- 404 & misc ---- */
.err-hero { min-height: calc(88svh - var(--header-h)); display: flex; align-items: center; text-align: left; }
.err-code { font-family: var(--mono); font-size: clamp(4rem, 14vw, 9rem); font-weight: 700; color: var(--steel); line-height: 1; }

/* ---------------------------------------------- responsive ---- */
@media (max-width: 1020px) {
  .factory { grid-template-columns: 1fr 1fr; }
  .fcell { min-height: 250px; }
  .fcell:nth-child(2n) { border-right: 0; }
  .fcell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .qgrid { grid-template-columns: 1fr 1fr; }
  .reg-headrow, .reg-row { grid-template-columns: 48px 1.3fr 1fr 1fr 56px; }
  .duo { grid-template-columns: 1fr; gap: 20px; }
  .duo > .m-label--acc { position: static; }
  .ptiles { grid-template-columns: repeat(3, 1fr); }
  .ptiles .ptile:nth-child(6n) { border-right: 1px solid var(--border); }
  .ptiles .ptile:nth-child(3n) { border-right: 0; }
  .resgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .ch-nav { display: none; }
  .ch-burger { display: block; }
  .ch-cta .cbtn--ghost { display: none; }
}
@media (max-width: 860px) {
  .equityc { grid-template-columns: 1fr; }
  .founder-c { grid-template-columns: 1fr; }
  .imgframe-c { max-width: 460px; }
  .splitform { grid-template-columns: 1fr; }
  .mandate__grid { grid-template-columns: 1fr; }
  .room-wrap { order: -1; }
  .mandate__col { grid-auto-flow: row; }
  .mandate__col--right { justify-items: start; text-align: left; }
  .mandate__col--right a:hover { transform: translateX(4px); }
  .mandate__cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .reg-drawer__in { grid-template-columns: 1fr 1fr; padding-left: 4px; }
}
@media (max-width: 680px) {
  body { padding-top: var(--header-h); }
  .wrap { width: min(100% - 40px, var(--wrap)); }
  .hero-title { font-size: clamp(2.05rem, 10vw, 2.9rem); }
  .hero-cta .cbtn--lg { width: 100%; }
  .hero-hud { display: none; }
  .hero-meta span { width: 100%; }
  .hero-meta span + span::before { display: none; }
  .factory { grid-template-columns: 1fr; }
  .fcell { border-right: 0; border-bottom: 1px solid var(--border); min-height: 0; gap: 26px; }
  .fcell:last-child { border-bottom: 0; }
  .plays { grid-template-columns: 1fr; }
  .qgrid { grid-template-columns: 1fr; }
  .reg-headrow { display: none; }
  .reg-row { grid-template-columns: 40px 1fr 40px; grid-template-areas: "ix name x" "ix meta x"; row-gap: 8px; }
  .reg-ix { grid-area: ix; }
  .reg-name { grid-area: name; }
  .reg-cat { grid-area: meta; }
  .reg-status { display: none; }
  .reg-x { grid-area: x; }
  .reg-drawer__in { grid-template-columns: 1fr; }
  .cform .frow { grid-template-columns: 1fr; }
  .blk { grid-template-columns: 1fr; gap: 6px; }
  .cbtn--lg { width: 100%; }
  .ctaband .hero-cta .cbtn { width: 100%; }
  .mandate__base { justify-content: flex-start; }
  .tscreen { padding: 20px 22px 120px; }
  .term__foot { padding: 14px 22px 18px; flex-wrap: wrap; }
  .donut { width: min(280px, 78vw); }
}
@media (max-width: 400px) {
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .ch-in { width: min(100% - 32px, 1360px); }
  .ch-cta .cbtn--sm { padding: 9px 12px; font-size: 0.6rem; }
  .ch-brand { letter-spacing: 0.22em; }
}
