/* offramp — dark fintech console. Committed dark look; lime carries the data. */

:root {
  --bg: #0a0c08;
  --panel: #11150c;
  --panel-2: #161b10;
  --ink: #eef3e2;
  --ink-2: #a7b096;
  --muted: #6d7562;
  --line: #232a19;
  --accent: #c6f24e;
  --accent-dim: rgba(198, 242, 78, 0.14);
  --accent-wash: rgba(198, 242, 78, 0.10);
  --good: #0ca30c;
  --warn: #fab219;
  --bad: #d03b3b;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { color-scheme: dark; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before { /* faint scanline texture */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.012) 2px 4px);
}
main { max-width: 1060px; margin: 0 auto; padding: 40px 24px 80px; position: relative; z-index: 1; }

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 24px;
  background: rgba(10, 12, 8, 0.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-mark {
  width: 14px; height: 14px; border-radius: 3px; align-self: center;
  background: linear-gradient(135deg, var(--accent), #7ea832);
}
.brand-name { font-family: var(--mono); font-weight: 700; font-size: 17px; letter-spacing: -0.5px; }
.brand-tag { color: var(--muted); font-size: 12px; font-family: var(--mono); }
.steps { display: flex; gap: 4px; }
.step {
  font-family: var(--mono); font-size: 12px; color: var(--ink-2);
  background: none; border: 1px solid transparent; border-radius: 6px;
  padding: 7px 12px; cursor: pointer; transition: all .15s;
}
.step-n { color: var(--muted); margin-right: 2px; }
.step:hover:not(.locked) { border-color: var(--line); color: var(--ink); }
.step.active { background: var(--accent-dim); color: var(--accent); border-color: transparent; }
.step.active .step-n { color: var(--accent); opacity: .6; }
.step.locked { opacity: .35; cursor: not-allowed; }

/* ---------- screens ---------- */
.screen { display: none; animation: rise .3s ease; }
.screen.active { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }

.screen-head { margin-bottom: 26px; }
.screen-head h2 { font-size: 26px; letter-spacing: -0.5px; }
.screen-sub { color: var(--muted); font-family: var(--mono); font-size: 12.5px; margin-top: 4px; }

/* ---------- ingest ---------- */
.hero { margin: 48px 0 40px; max-width: 640px; }
.hero h1 { font-size: 40px; line-height: 1.12; letter-spacing: -1.2px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.lede { color: var(--ink-2); margin-top: 16px; font-size: 16px; max-width: 560px; }

.ingest-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 1.5px dashed #3a4429; border-radius: 12px; padding: 36px 24px;
  cursor: pointer; transition: all .15s; text-align: center; background: var(--panel);
}
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: var(--accent-wash); }
.dz-icon { font-size: 26px; color: var(--accent); }
.dz-title { font-weight: 600; font-size: 16px; }
.dz-sub { color: var(--muted); font-size: 12.5px; max-width: 300px; }
.or-divider { display: flex; align-items: center; color: var(--muted); font-family: var(--mono); font-size: 12px; }
.demo-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.demo-title { font-weight: 600; font-size: 16px; }
.demo-card p { color: var(--ink-2); font-size: 13.5px; flex: 1; }
.privacy-note { margin-top: 22px; color: var(--muted); font-family: var(--mono); font-size: 12px; }
.resume-card {
  margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--accent-wash); border: 1px solid #37411f; border-radius: 10px; padding: 14px 18px;
  color: var(--ink-2); font-family: var(--mono); font-size: 12.5px;
}
.trend-line { color: var(--muted); font-family: var(--mono); font-size: 11.5px; }
.trend-line.up { color: var(--accent); }
.trend-line.down { color: var(--warn); }
.parse-error {
  margin-top: 14px; color: #ff9a9a; background: rgba(208, 59, 59, 0.12);
  border: 1px solid rgba(208, 59, 59, 0.3); border-radius: 8px;
  padding: 10px 14px; font-family: var(--mono); font-size: 12.5px;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  border: none; border-radius: 8px; padding: 11px 18px; cursor: pointer; transition: all .15s;
}
.btn-accent { background: var(--accent); color: #16200a; }
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: none; color: var(--ink-2); border: 1px solid var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: var(--muted); }
.btn-big { font-size: 14px; padding: 14px 24px; }
.cta-row { margin-top: 34px; text-align: center; }

/* ---------- tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.tile { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; }
.tile-label { color: var(--muted); font-family: var(--mono); font-size: 11.5px; margin-bottom: 6px; }
.tile-value { font-size: 26px; font-weight: 650; letter-spacing: -0.5px; }

/* ---------- panels & charts ---------- */
.panel-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; margin-bottom: 32px; }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; }
.panel-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.panel-head h3 { font-size: 14px; font-weight: 600; }
.panel-note { color: var(--muted); font-family: var(--mono); font-size: 11.5px; }

.spark .grid { stroke: var(--line); stroke-width: 1; }
.spark .axis { stroke: #333c24; stroke-width: 1; }
.spark .line { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.spark .area { fill: var(--accent); opacity: 0.1; }
.spark .dot { fill: var(--accent); }
.spark .dot-ring { fill: var(--panel); }
.spark .crosshair { stroke: var(--muted); stroke-width: 1; }
.spark .end-label, .spark .tick { fill: var(--ink-2); font-family: var(--mono); font-size: 11px; }
.spark .end-label { fill: var(--ink); font-weight: 600; }
.tooltip {
  position: absolute; pointer-events: none; z-index: 5;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 6px 10px; font-family: var(--mono); font-size: 11.5px;
  display: flex; flex-direction: column; box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
.tip-k { color: var(--muted); }
.tip-v { color: var(--ink); font-weight: 600; }

.hbar-row { display: grid; grid-template-columns: 120px 1fr 64px; gap: 10px; align-items: center; padding: 5px 0; }
.hbar-label { color: var(--ink-2); font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hbar-track { display: block; height: 14px; }
.hbar-fill {
  display: block; height: 100%; background: var(--accent);
  border-radius: 0 4px 4px 0; min-width: 3px;
  transition: width .5s cubic-bezier(.2,.7,.3,1);
}
.hbar-val { color: var(--ink); font-family: var(--mono); font-size: 12px; text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- micro-visualizations ---------- */
.mv { margin-top: 12px; }
.mv-caption { color: var(--muted); font-family: var(--mono); font-size: 10.5px; margin-top: 5px; }

.mv-dots { display: flex; flex-wrap: wrap; gap: 3px; align-items: center; }
.mv-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .8; }
.mv-more { color: var(--muted); font-family: var(--mono); font-size: 10px; margin-left: 4px; }

.mv-prop { display: block; height: 10px; border-radius: 3px; background: rgba(255,255,255,.07); overflow: hidden; }
.mv-prop-fill { display: block; height: 100%; background: var(--accent); border-radius: 0 3px 3px 0; }

.mv-segs { display: flex; gap: 2px; height: 12px; }
.mv-segs span { background: var(--accent); border-radius: 2px; min-width: 3px; }
.mv-segs span:nth-child(even) { opacity: .55; }
.mv-segs span:hover { filter: brightness(1.2); }

.mv-pulse { position: relative; height: 16px; border-bottom: 1px solid var(--line); }
.mv-pulse i {
  position: absolute; bottom: 0; width: 3px; height: 14px; border-radius: 2px 2px 0 0;
  background: var(--accent); transform: translateX(-50%);
}

.mv-pair-row { display: grid; grid-template-columns: 92px 1fr 52px; gap: 8px; align-items: center; margin-top: 5px; }
.mv-pair-label { color: var(--muted); font-family: var(--mono); font-size: 10.5px; }
.mv-pair-track { display: block; height: 9px; }
.mv-pair-fill { display: block; height: 100%; border-radius: 0 3px 3px 0; background: #5a6350; min-width: 2px; }
.mv-pair-fill.hot { background: var(--accent); }
.mv-pair-val { font-family: var(--mono); font-size: 10.5px; color: var(--ink-2); text-align: right; }

.mv-dow { display: flex; gap: 6px; height: 44px; align-items: flex-end; }
.mv-dow-col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 3px; height: 100%; }
.mv-dow-fill { display: block; width: 100%; max-width: 22px; background: var(--accent); border-radius: 3px 3px 0 0; opacity: .85; }
.mv-dow-day { color: var(--muted); font-family: var(--mono); font-size: 9px; }

.mv-spark-line { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mv-spark-dot { fill: var(--accent); }
.mv-spark-line.hot { stroke: var(--warn); }
.mv-spark-dot.hot { fill: var(--warn); }
.tile .mv-spark-line { stroke: #5a6350; }
.tile .mv-spark-dot { fill: var(--accent); }
.tile .mv { margin-top: 8px; }

/* ---------- spend calendar ---------- */
.cal-panel { margin-bottom: 32px; }
.cal-grid { display: flex; gap: 3px; overflow-x: auto; padding-bottom: 4px; }
.cal-col { display: flex; flex-direction: column; gap: 3px; }
.cal-col i { width: 12px; height: 12px; border-radius: 2.5px; background: rgba(255,255,255,.05); }
.cal-col i.cal-on { background: var(--accent); }
.cal-col i.cal-void { background: transparent; }
.cal-col i:hover { outline: 1px solid var(--ink-2); }
.cal-month { color: var(--muted); font-family: var(--mono); font-size: 9.5px; height: 14px; white-space: nowrap; }

/* ---------- facts ---------- */
.facts-head { margin: 8px 0 14px; }
.facts-head h3 { font-size: 17px; }
.facts-head p { color: var(--muted); font-size: 13px; margin-top: 3px; }
.facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.fact {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px;
  transition: border-color .15s;
}
.fact:hover { border-color: #37411f; }
.fact-meta { display: flex; justify-content: space-between; margin-bottom: 8px; }
.fact-module { color: var(--muted); font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .5px; }
.fact-conf { font-family: var(--mono); font-size: 11px; padding: 1px 7px; border-radius: 20px; }
.fact-conf.hi { color: var(--accent); background: var(--accent-dim); }
.fact-conf.mid { color: var(--warn); background: rgba(250, 178, 25, .12); }
.fact-conf.lo { color: var(--ink-2); background: rgba(255,255,255,.06); }
.fact-title { font-weight: 600; font-size: 15px; line-height: 1.35; margin-bottom: 6px; }
.fact-detail { color: var(--ink-2); font-size: 13px; }
.fact-flag { margin-top: 10px; color: var(--warn); font-family: var(--mono); font-size: 11px; }

/* ---------- calibrate ---------- */
.quiz-card { max-width: 640px; margin: 0 auto; padding: 28px 30px; }
.quiz-progress { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-bottom: 18px; }
.quiz-tag { color: var(--accent); opacity: .8; }
.quiz-q { font-size: 20px; font-weight: 600; line-height: 1.4; letter-spacing: -0.3px; }
.quiz-evidence { margin-top: 10px; color: var(--muted); font-family: var(--mono); font-size: 12px; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.quiz-opt {
  text-align: left; background: var(--panel-2); color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px; padding: 13px 16px;
  font-size: 14px; font-family: var(--sans); cursor: pointer; transition: all .12s;
}
.quiz-opt:hover { border-color: var(--accent); background: var(--accent-wash); }

.recal { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 70px 0; }
.recal-spin {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--accent);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.recal-log { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); display: flex; flex-direction: column; gap: 6px; max-width: 560px; }
.recal-log div { animation: rise .25s ease; }

.score-hero { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; padding: 28px 32px; margin-bottom: 12px; }
.score-num { font-size: 62px; font-weight: 700; letter-spacing: -2px; color: var(--accent); line-height: 1; }
.score-label { color: var(--ink-2); font-family: var(--mono); font-size: 12.5px; margin-top: 10px; }
.score-quip { color: var(--muted); font-style: italic; }
.score-meters { display: flex; flex-direction: column; gap: 10px; }
.mod-row { display: grid; grid-template-columns: 150px 1fr 44px; gap: 12px; align-items: center; }
.mod-name { color: var(--ink-2); font-family: var(--mono); font-size: 12px; }
.mod-score { font-family: var(--mono); font-size: 12px; text-align: right; }
.meter-track { display: block; height: 8px; border-radius: 4px; background: rgba(255,255,255,.07); overflow: hidden; }
.meter-fill { display: block; height: 100%; border-radius: 4px; transition: width .6s ease; }
.meter-good, .meter-accent { background: var(--accent); }
.meter-warn { background: var(--warn); }
.meter-bad { background: var(--bad); }

.grade { display: grid; grid-template-columns: 20px 1fr 44px; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13px; align-items: baseline; }
.grade:last-child { border-bottom: none; }
.grade-mark { font-family: var(--mono); }
.grade.ok .grade-mark { color: var(--good); }
.grade.miss .grade-mark { color: var(--bad); }
.grade-claim { color: var(--ink-2); }
.grade-conf { color: var(--muted); font-family: var(--mono); font-size: 11.5px; text-align: right; }
.rev { color: var(--ink-2); font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.rev:last-child { border-bottom: none; }
.hist-note { margin-top: 14px; color: var(--accent); font-family: var(--mono); font-size: 12px; background: var(--accent-wash); border-radius: 8px; padding: 10px 14px; }

/* ---------- mirror ---------- */
.guess-grid { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.guess-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 11px 16px;
}
.guess-row.guess-total { border-color: #37411f; }
.guess-cat { font-size: 14px; }
.guess-total .guess-cat { font-weight: 600; }
.guess-input { display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--mono); font-size: 13px; color: var(--muted); }
.guess-input input {
  width: 90px; background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: 6px; padding: 7px 10px;
  font-family: var(--mono); font-size: 14px; text-align: right;
}
.guess-input input:focus { outline: none; border-color: var(--accent); }
.guess-grid + .nba-btns { margin-top: 22px; }

.gap-legend-wrap { min-width: 0; }
.gap-legend { display: flex; gap: 18px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-2); margin-bottom: 14px; }
.key { display: inline-flex; align-items: center; gap: 6px; }
.swatch { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.swatch-guess { background: #5a6350; }
.swatch-actual { background: var(--accent); }
.gap-chart { display: flex; flex-direction: column; gap: 14px; }
.gap-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.gap-cat { font-size: 13px; color: var(--ink); }
.gap-chip { font-family: var(--mono); font-size: 10.5px; padding: 1px 8px; border-radius: 20px; }
.gap-chip.low { color: var(--warn); background: rgba(250, 178, 25, .12); }
.gap-chip.high { color: #9ec5f4; background: rgba(158, 197, 244, .1); }
.gap-chip.close { color: var(--accent); background: var(--accent-dim); }
.gap-bars { display: flex; align-items: center; gap: 8px; margin-top: 3px; }
.gap-bar { display: block; height: 10px; border-radius: 0 3px 3px 0; min-width: 2px; }
.gap-bar.guess { background: #5a6350; }
.gap-bar.actual { background: var(--accent); }
.gap-val { font-family: var(--mono); font-size: 11px; color: var(--ink-2); font-variant-numeric: tabular-nums; }

.budget-panel { margin-top: 30px; }
.budget-rows { display: flex; flex-direction: column; }
.budget-row {
  display: grid; grid-template-columns: 1fr 150px auto 130px; gap: 14px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.budget-row:last-child { border-bottom: none; }
.budget-cat { font-size: 14px; }
.budget-median { color: var(--muted); font-family: var(--mono); font-size: 11.5px; }
.budget-last { font-family: var(--mono); font-size: 11.5px; text-align: right; }
.budget-last.over { color: var(--warn); }
.budget-last.under { color: var(--muted); }
.budget-foot { display: flex; align-items: center; gap: 16px; margin-top: 16px; }

/* ---------- act ---------- */
.nba { position: relative; padding: 28px 32px; border-color: #37411f; margin-bottom: 30px; overflow: hidden; }
.nba::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--accent); }
.nba-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--accent); margin-bottom: 10px; }
.nba-title { font-size: 24px; letter-spacing: -0.5px; margin-bottom: 12px; }
.nba-stats { display: flex; gap: 22px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.nba-stat b { color: var(--ink); font-weight: 600; }
.nba-why p { color: var(--ink-2); font-size: 14px; margin-bottom: 8px; max-width: 640px; }
.nba-how { margin: 14px 0 20px; color: var(--ink); font-size: 13.5px; background: var(--panel-2); border-radius: 8px; padding: 11px 14px; max-width: 640px; }
.nba-btns { display: flex; gap: 10px; }
.nba-empty { text-align: center; color: var(--ink-2); padding: 40px; }

.queue-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.queue-head h3 { font-size: 15px; }
.queue { display: flex; flex-direction: column; gap: 6px; counter-reset: q; }
.queue-row {
  display: grid; grid-template-columns: 30px 1fr 110px 60px 60px; gap: 12px; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 13px 16px;
}
.q-rank::before { counter-increment: q; content: "#" counter(q) ""; color: var(--muted); font-family: var(--mono); font-size: 12px; }
.q-main { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.q-title { font-size: 14px; }
.q-bar { display: block; height: 4px; border-radius: 2px; background: rgba(255,255,255,.06); overflow: hidden; max-width: 380px; }
.q-bar span { display: block; height: 100%; background: var(--accent); border-radius: 2px; opacity: .75; }
.q-impact { color: var(--accent); font-family: var(--mono); font-size: 12.5px; text-align: right; }
.q-conf, .q-effort { color: var(--muted); font-family: var(--mono); font-size: 12px; text-align: right; }

/* ---------- second opinion ---------- */
.llm-panel { margin-top: 34px; }
.llm-blurb { color: var(--ink-2); font-size: 13.5px; max-width: 680px; margin-bottom: 14px; }
.llm-blurb strong { color: var(--ink); font-weight: 600; }
.llm-privacy {
  background: rgba(250, 178, 25, .07); border: 1px solid rgba(250, 178, 25, .25);
  border-radius: 8px; padding: 12px 15px; margin-bottom: 18px;
  color: var(--ink-2); font-size: 12.5px; line-height: 1.6; max-width: 680px;
}
.llm-privacy strong { color: var(--warn); font-weight: 600; }
.llm-privacy-head { display: block; color: var(--warn); font-family: var(--mono); font-size: 11px; margin-bottom: 5px; letter-spacing: .5px; }
.llm-controls { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.llm-field { display: flex; flex-direction: column; gap: 5px; }
.llm-field > span { color: var(--muted); font-family: var(--mono); font-size: 11px; }
.llm-field input, .llm-field select {
  background: var(--bg); color: var(--ink); border: 1px solid var(--line); border-radius: 7px;
  padding: 10px 12px; font-family: var(--mono); font-size: 13px; min-width: 240px;
}
.llm-field select { min-width: 210px; cursor: pointer; }
.llm-field input:focus, .llm-field select:focus { outline: none; border-color: var(--accent); }
.llm-remember { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; color: var(--muted); font-family: var(--mono); font-size: 11.5px; cursor: pointer; }
.llm-status { margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.llm-status.ok { color: var(--accent); }
.llm-status.err { color: #ff9a9a; }
.llm-results { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; animation: rise .3s ease; }
.llm-fact { border-color: #37411f; }
.llm-nba { margin-bottom: 0; }
.llm-blind {
  background: var(--panel-2); border-radius: 8px; padding: 13px 16px;
  color: var(--ink-2); font-size: 13px; line-height: 1.55;
}
.llm-blind-head { display: block; color: var(--muted); font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }

.act-footer { margin-top: 36px; display: flex; align-items: center; gap: 16px; }
.brain-note { color: var(--muted); font-family: var(--mono); font-size: 11.5px; }

/* ---------- misc ---------- */
.site-footer {
  max-width: 1060px; margin: 0 auto; padding: 20px 24px 40px;
  color: var(--muted); font-family: var(--mono); font-size: 11.5px;
  border-top: 1px solid var(--line);
}
.site-footer span { color: var(--accent); }
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 50;
  background: var(--panel-2); border: 1px solid #37411f; color: var(--ink);
  font-family: var(--mono); font-size: 12.5px; border-radius: 8px; padding: 11px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,.5); animation: rise .25s ease;
}

@media (max-width: 760px) {
  .ingest-row { grid-template-columns: 1fr; }
  .or-divider { justify-content: center; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .panel-row { grid-template-columns: 1fr; }
  .score-hero { grid-template-columns: 1fr; gap: 20px; }
  .hero h1 { font-size: 30px; }
  .queue-row { grid-template-columns: 24px 1fr 90px; }
  .q-conf, .q-effort { display: none; }
  .budget-row { grid-template-columns: 1fr auto; }
  .budget-median { display: none; }
  .budget-last { text-align: left; }
  .steps { overflow-x: auto; }
  .brand-tag { display: none; }
}
