/* ============================================================
   FOMC-SIM · YC Demo · Design System
   Tokens harvested from _reference/ (ivory + brass palette).
   ============================================================ */

:root {
  --bg-0: #f6f1e4;
  --bg-1: #f0e9d7;
  --bg-2: #e8decc;
  --surface: #fbf6e9;
  --surface-raised: #fffcf0;
  --border: #d9c9a5;
  --border-soft: #e8dcc0;

  --gold: #8b6e2e;
  --gold-soft: #6b5423;
  --gold-glow: rgba(139, 110, 46, 0.14);
  --teal: #1f6f63;

  --hawk: #a8302a;
  --dove: #2c5b99;
  --neutral: #5d459a;
  --miss: #a8302a;
  --hit: #1f6f63;

  --text: #2a241c;
  --text-muted: #6c6254;
  --text-dim: #9e9180;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", Consolas, monospace;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --max-w: 1160px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(139, 110, 46, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(31, 111, 99, 0.04), transparent 60%),
    var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
code { font-family: var(--font-mono); font-size: 0.92em; background: var(--bg-1); padding: 1px 6px; border-radius: 4px; }

/* Disable text selection and image dragging site-wide — matches sapiensq.com */
html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img, svg, a {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* ===== stub banner ===== */
.stub-banner {
  position: sticky; top: 0; z-index: 100;
  background: #fff4c9;
  border-bottom: 1px solid #e6d27a;
  color: #5a4600;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--font-mono);
}

/* ===== top nav ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(251, 246, 233, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.stub-banner:not([hidden]) ~ .topbar { top: 36px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-seal {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--gold-soft));
  box-shadow: 0 0 14px var(--gold-glow), inset 0 0 6px rgba(0,0,0,0.2);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--surface-raised);
  font-size: 17px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: 0.4px; }
.brand-sub { font-size: 10px; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

.topnav { display: flex; gap: 22px; align-items: center; }
.topnav a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.topnav a:hover { color: var(--text); }
.topnav a.ghost {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--gold);
}
.topnav a.ghost:hover { background: var(--gold-glow); }

/* minimal subpage topbar — wordmark only, links to company root */
.brand-link {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text);
  transition: color 0.15s ease;
}
.brand-link:hover { color: var(--gold); }

/* ===== sections ===== */
main { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

.section { padding: 96px 0; border-top: 1px solid var(--border-soft); }
.section.alt { background: linear-gradient(180deg, transparent, var(--bg-1) 30%, var(--bg-1) 70%, transparent); padding-left: 32px; padding-right: 32px; margin-left: -32px; margin-right: -32px; padding-top: 96px; padding-bottom: 96px; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px 0;
  max-width: 760px;
}
.section-lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 0 44px 0;
}

/* ===== hero ===== */
.hero {
  padding: 56px 0 48px 0;
  max-width: 820px;
}
.hero .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0 0 22px 0;
  color: var(--text);
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
}
.hero .lede {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 34px 0;
  line-height: 1.6;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.cta-primary {
  display: inline-block;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--surface-raised);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(139, 110, 46, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(139, 110, 46, 0.32); }

.cta-ghost {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14.5px;
  transition: all 0.15s ease;
}
.cta-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===== proof strip ===== */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.proof-item { display: flex; flex-direction: column; gap: 6px; }
.proof-item .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.proof-item .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.proof-item .sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ===== live-bet ribbon (hero, above the fold) ===== */
.live-ribbon {
  margin-top: 18px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13.5px;
  color: var(--text-muted);
}
.live-ribbon:empty { display: none; }
.live-ribbon .ribbon-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
.live-ribbon .ribbon-text {
  flex: 1;
  min-width: 240px;
  line-height: 1.55;
}
.live-ribbon .ribbon-text b { color: var(--text); }
.live-ribbon .ribbon-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.5px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.live-ribbon .ribbon-cta:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
@media (max-width: 700px) {
  .live-ribbon { padding: 12px 16px; gap: 12px; font-size: 13px; }
}

/* ===== live card ===== */
.live-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 20px 40px -24px rgba(139, 110, 46, 0.2);
  position: relative;
  overflow: hidden;
}
.live-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent 40%);
  pointer-events: none;
}
.live-card > * { position: relative; }

.live-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.live-date {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}
.live-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}
.live-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--surface-raised);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.live-status .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--surface-raised);
  animation: pulse 1.8s ease-in-out infinite;
}
.live-status-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.live-committed-at {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.countdown-unit {
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}
.countdown-unit .v {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.countdown-unit .u {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 6px;
}

.prediction-box {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
}
.pred-decision { }
.pred-decision .lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 10px;
}
.pred-decision .direction {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}
.pred-decision .delta {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 8px;
}
.pred-decision .range {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.pred-decision .range b { color: var(--text); }

.dotplot-box { }
.dotplot-box .lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 10px;
}
.dotplot { width: 100%; height: 180px; }

.live-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  font-size: 13.5px;
  color: var(--text-muted);
}
.live-foot b { color: var(--text); }

/* ===== past grid ===== */
.past-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.past-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px 28px;
}
.past-card.hit { border-color: var(--hit); box-shadow: 0 0 0 1px var(--hit) inset; }
.past-card.miss { border-color: var(--border); }

.past-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px;
}
.past-card-date {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}
.past-card-date small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 2px;
}
.verdict {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}
.verdict.hit { background: rgba(31, 111, 99, 0.12); color: var(--hit); }
.verdict.miss { background: rgba(168, 48, 42, 0.1); color: var(--miss); }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.compare-col { }
.compare-col .side {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.compare-col .big {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.compare-col .small {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.diff-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.diff-stat { text-align: left; }
.diff-stat .v {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.diff-stat .l {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 4px;
}

.statement-diff {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg-1);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.statement-diff b { color: var(--text); }

/* ===== three cores (Persona · Memory · Deliberation) ===== */
.cores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.core-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.core-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 120%);
}
.core-card[data-core="persona"]::before { background: linear-gradient(90deg, #7fb8aa, transparent 120%); }
.core-card[data-core="memory"]::before { background: linear-gradient(90deg, var(--gold), transparent 120%); }
.core-card[data-core="deliberation"]::before { background: linear-gradient(90deg, #c79ed6, transparent 120%); }

.core-head { display: flex; flex-direction: column; gap: 10px; }
.core-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  align-self: flex-start;
  background: var(--bg-1);
}
.core-card[data-core="persona"] .core-badge { color: #3f7a70; border-color: #b5d2cc; background: rgba(127, 184, 170, 0.08); }
.core-card[data-core="deliberation"] .core-badge { color: #7e5a90; border-color: #d4c2dc; background: rgba(199, 158, 214, 0.08); }

.core-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}
.core-mech {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.core-mech code {
  font-size: 0.92em;
  color: var(--gold-soft);
  background: var(--bg-1);
}
.core-proof {
  padding: 14px 16px;
  background: var(--bg-1);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 10px;
}
.core-proof-line {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.core-proof-line b { color: var(--text); }
.core-link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gold);
  padding-top: 14px;
  border-top: 1px dashed var(--border-soft);
  transition: color 0.15s ease;
  display: inline-block;
}
.core-link:hover { color: var(--gold-soft); }

/* ===== roadmap (Mirror Real Ones line) ===== */
.roadmap-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.roadmap-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.roadmap-card.shipping {
  border-color: var(--hit);
  box-shadow: 0 0 0 1px var(--hit) inset, 0 20px 40px -24px rgba(31, 111, 99, 0.2);
}
.roadmap-card.next { opacity: 0.92; }

.roadmap-stage {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.roadmap-card.shipping .roadmap-stage {
  color: var(--hit);
  background: rgba(31, 111, 99, 0.1);
  border: 1px solid rgba(31, 111, 99, 0.22);
}
.roadmap-card.next .roadmap-stage {
  color: var(--text-dim);
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
}

.roadmap-product {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--text);
}
.roadmap-tagline {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.3;
}
.roadmap-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 8px 0 0 0;
  line-height: 1.6;
}

.regime-note {
  margin-top: 24px;
  padding: 22px 26px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--miss);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.regime-note b { color: var(--text); }
.regime-note .num {
  font-family: var(--font-mono);
  color: var(--miss);
  font-weight: 600;
}

/* ===== N=3 reruns · metric cards (3×2 desktop, 2×3 tablet, 1×6 mobile) ===== */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.metric-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.metric-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  margin-top: 4px;
}
.metric-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .metric-num { font-size: 32px; }
}
@media (max-width: 540px) {
  .metric-grid { grid-template-columns: 1fr; }
}

/* ===== deliberation transcript (expandable) ===== */
.deliberation {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-soft);
}
.deliberation-summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  margin-left: -12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
}
.deliberation-summary::-webkit-details-marker { display: none; }
.deliberation-summary:hover { background: var(--gold-glow); color: var(--text); }
.deliberation-summary .chevron {
  display: inline-block;
  transition: transform 0.18s ease;
  color: var(--gold);
}
.deliberation[open] > .deliberation-summary .chevron { transform: rotate(90deg); }
.deliberation-label { color: var(--text); font-weight: 600; letter-spacing: 0.3px; }
.deliberation-meta { color: var(--text-dim); }

.deliberation-body {
  margin-top: 14px;
  padding: 18px 20px;
  background: #1c1812;
  color: #dcd2bf;
  border: 1px solid #2e2619;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.55;
  max-height: 520px;
  overflow-y: auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.deliberation-body::-webkit-scrollbar { width: 8px; }
.deliberation-body::-webkit-scrollbar-track { background: transparent; }
.deliberation-body::-webkit-scrollbar-thumb { background: #3a3021; border-radius: 4px; }

.deliberation-phase {
  margin: 14px 0 12px 0;
  padding: 4px 10px;
  display: inline-block;
  border-radius: 3px;
  background: linear-gradient(90deg, #3a3021 0%, transparent 100%);
  color: #d4b260;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.deliberation-phase:first-child { margin-top: 0; }

.deliberation-turn { margin: 10px 0 14px 0; }
.deliberation-speaker {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 4px;
}
.phase-badge {
  display: inline-block;
  padding: 1px 6px;
  background: #2c2418;
  border: 1px solid #4a3a24;
  border-radius: 3px;
  color: #b89860;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
}
.deliberation-turn.p1 .phase-badge { color: #7fb8aa; border-color: #2d4a43; }
.deliberation-turn.p2 .phase-badge { color: #8ab0d8; border-color: #2d3f55; }
.deliberation-turn.p3 .phase-badge { color: #e0b968; border-color: #5a4520; }
.deliberation-turn.p4 .phase-badge { color: #c79ed6; border-color: #4a3858; }

.speaker-name {
  color: #f2e6c9;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.deliberation-message {
  padding-left: 2px;
  color: #c4b89f;
  word-wrap: break-word;
}
.deliberation-message strong { color: #f2e6c9; }

mark.citation {
  background: rgba(212, 178, 96, 0.14);
  color: #d4b260;
  padding: 0 4px;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.2px;
  white-space: normal;
}

/* ===== footer ===== */
.site-footer {
  margin-top: 64px;
  padding: 40px 0 48px 0;
  border-top: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}
.footer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-voice {
  font-family: var(--font-display);
  font-size: 14.5px;
  color: var(--gold);
  display: inline-block;
}

/* ===== responsive ===== */
@media (max-width: 900px) {
  .topbar { padding: 12px 20px; }
  .topnav { gap: 14px; }
  .topnav a { font-size: 12.5px; }
  .brand-sub { display: none; }

  main { padding: 0 20px; }
  .section.alt { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }

  .section { padding: 64px 0; }
  .section h2 { font-size: 32px; }

  .hero { padding: 40px 0 32px 0; }
  .hero h1 { font-size: clamp(26px, 6.6vw, 38px); }
  .hero .lede { font-size: 15.5px; }

  .prediction-box { grid-template-columns: 1fr; gap: 24px; }
  .past-grid { grid-template-columns: 1fr; gap: 20px; }
  .cores-grid { grid-template-columns: 1fr; gap: 20px; }
  .roadmap-row { grid-template-columns: 1fr; gap: 16px; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; }

  .countdown-unit .v { font-size: 30px; }
  .pred-decision .direction { font-size: 44px; }
}

@media (max-width: 540px) {
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .countdown-unit { padding: 12px 6px; }
  .countdown-unit .v { font-size: 24px; }
  .countdown-unit .u { font-size: 9px; letter-spacing: 1px; }
  .compare-row { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr 1fr; }
}

/* ===== company-page additions: two-card live layout + contact-gated deliberation ===== */

/* Live row — two cards side by side */
.live-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Left (locked prediction) card — stack HOLD over dotplot vertically */
#live-card .prediction-box {
  grid-template-columns: 1fr;
  gap: 28px;
}

/* Right (pending) card — dim, hazy backdrop with one centered message */
.live-card-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  border-color: var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(217, 201, 165, 0.32) 100%);
  position: relative;
  overflow: hidden;
}
.live-card-pending::before { display: none; }

.pending-haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(139, 110, 46, 0.06), transparent 60%),
    repeating-linear-gradient(
      45deg,
      rgba(139, 110, 46, 0) 0,
      rgba(139, 110, 46, 0) 18px,
      rgba(139, 110, 46, 0.03) 18px,
      rgba(139, 110, 46, 0.03) 22px
    );
  filter: blur(1.6px);
  pointer-events: none;
}

.pending-only-message {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-muted);
  text-align: center;
  padding: 72px 32px;
}

/* deliberation request link · full-width strip with dashed top/bottom */
.deliberation-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 14px 4px;
  border-top: 1px dashed var(--border-soft);
  border-bottom: 1px dashed var(--border-soft);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.deliberation-link:hover {
  background: var(--gold-glow);
  color: var(--text);
  border-top-color: var(--gold);
  border-bottom-color: var(--gold);
}
.deliberation-link .chevron { color: var(--gold); }
.deliberation-link .deliberation-label { color: var(--text); font-weight: 600; letter-spacing: 0.3px; }
.deliberation-link .deliberation-meta { color: var(--text-muted); }

/* Three parts — let .core-mech absorb extra vertical space so .core-proof
   sits flush at the bottom of every card (uniform card baselines) */
.cores-grid .core-card .core-mech { flex: 1 0 auto; }

/* Mini footer — Observatory-style single line */
.site-footer-mini {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border-soft);
  margin-top: 24px;
}
.footer-mini-row {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-mini-row .dot { color: var(--border); }
.footer-mini-row a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.footer-mini-row a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 900px) {
  .live-pair { grid-template-columns: 1fr; gap: 16px; }
}
