:root {
  /* Warm editorial palette — The Economist meets a research publication */
  --bg: #faf8f4;
  --surface: #f2efea;
  --surface-2: #eae7e1;
  --surface-3: #e2dfd9;
  --border: #d8d4cd;
  --border-hover: #c5c0b8;
  /* Dark ink — high contrast, warm undertone */
  --ink: #1a1815;
  --ink-2: #4a4640;
  --ink-3: #7a756d;
  --ink-4: #a8a298;
  /* Gold accent — authoritative, warm, premium */
  --gold: #9e7c38;
  --gold-dim: rgba(158, 124, 56, 0.08);
  /* Muted semantic colors */
  --green: #3d7a50;
  --green-dim: rgba(61, 122, 80, 0.08);
  --red: #a8453d;
  --red-dim: rgba(168, 69, 61, 0.08);
  --amber: #8f6e2a;
  --amber-dim: rgba(143, 110, 42, 0.07);
  --blue: #3a6a94;
  --purple: #6b5090;
  --radius: 8px;
  --radius-sm: 6px;
  /* Agent colors — muted, editorial */
  --sentinel: #a8453d;
  --catalyst: #3d7a50;
  --historian: #8f6e2a;
  --contrarian: #b06830;
  --synthesizer: #3a6a94;
  --oracle: #6b5090;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────────── */

header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 40px;
}
.logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav { margin-left: auto; display: flex; gap: 24px; }
nav a {
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.15s;
}
nav a:hover { color: var(--ink); }

/* ── Hero + Ask (combined, above the fold) ───── */

.hero-ask {
  text-align: center;
  padding: 48px 0 40px;
}
.hero-ask h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--ink);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.cta-primary {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: inherit;
  margin-bottom: 0;
}
.cta-primary:hover { opacity: 0.85; }
.cta-primary:disabled { opacity: 0.25; cursor: not-allowed; }
.cta-sm {
  padding: 8px 20px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: inherit;
}
.cta-sm:hover { opacity: 0.85; }
.cta-sm:disabled { opacity: 0.25; cursor: not-allowed; }
/* Suggestions */
.suggestions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.suggestion {
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 980px;
  font-size: 12px;
  color: var(--ink-3);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.suggestion:hover { border-color: var(--gold); color: var(--gold); }

/* Your assessments */
.your-assessments { margin-bottom: 32px; }
.your-assessments h3 { font-size: 14px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.your-list { display: flex; flex-direction: column; gap: 8px; }
.your-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #fff; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; color: inherit; transition: transform 0.15s; }
.your-item:hover { transform: translateY(-1px); }
.your-item-q { font-size: 14px; color: var(--ink); font-weight: 500; flex: 1; }
.your-item-v { font-size: 13px; font-weight: 600; flex-shrink: 0; margin-left: 12px; }

/* Celebration */
@keyframes celebrate {
  0% { transform: scale(0.95); opacity: 0; }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); opacity: 1; }
}
.celebrate { animation: celebrate 0.5s ease; }

.ask-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 10px;
}

/* ── Social proof ────────────────────────────── */

.proof { padding: 0 0 48px; }
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--ink-3);
}
.proof-stats strong { color: var(--gold); font-weight: 700; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.proof-card:hover { transform: translateY(-1px); box-shadow: 0 3px 12px rgba(0,0,0,0.04); }
.proof-q { font-size: 13px; color: var(--ink); font-weight: 500; line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.proof-bottom { display: flex; justify-content: space-between; align-items: center; }
.proof-prob { font-size: 18px; font-weight: 700; color: var(--gold); }
.proof-verdict { font-size: 13px; font-weight: 600; }
.proof-time { font-size: 11px; color: var(--ink-4); }

/* ── Buy credits ─────────────────────────────── */

.buy-section {
  padding: 0 0 48px;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}
.signup-box {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.signup-input {
  flex: 1;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.signup-input:focus { outline: none; border-color: var(--gold); }
.buy-section h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.buy-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.buy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.buy-card:hover { transform: translateY(-1px); box-shadow: 0 3px 12px rgba(0,0,0,0.04); }
.buy-featured { border-color: var(--gold); }
.buy-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 6px; }
.buy-price { font-size: 32px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 8px; }
.buy-desc { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin-bottom: 16px; }
.buy-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border);
  background: none;
  color: var(--ink-2);
  transition: all 0.15s;
  font-family: inherit;
}
.buy-btn:hover { border-color: var(--ink-3); color: var(--ink); }
.buy-btn-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.buy-btn-primary:hover { opacity: 0.85; color: var(--bg); }
.signup-inline {
  max-width: 400px;
  margin: 16px auto 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.signup-inline .ask-input { flex: 1; min-width: 200px; }
#signup-result { width: 100%; font-size: 13px; margin-top: 4px; }

/* ── Showcase (live example) ─────────────────── */

.showcase {
  padding: 0 0 80px;
}
.showcase-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  text-align: center;
  margin-bottom: 16px;
}
.showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.showcase-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.showcase-card:hover { transform: translateY(-1px); }
.showcase-card a { text-decoration: none; color: inherit; display: block; padding: 32px; }
.showcase-q {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--ink);
}
.showcase-bottom {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.showcase-prob {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold);
}
.showcase-meta {
  flex: 1;
  padding-bottom: 6px;
}
.showcase-conf {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.showcase-agents {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}
.adot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.showcase-models {
  font-size: 12px;
  color: var(--ink-4);
}
.showcase-empty {
  text-align: center;
  padding: 40px;
  color: var(--ink-4);
  font-size: 14px;
}

/* ── Values ──────────────────────────────────── */

.values {
  padding: 0 0 80px;
  display: grid;
  gap: 16px;
}
.value {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.15s;
}
.value:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.value h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.value p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ── Ask ─────────────────────────────────────── */

.ask {
  padding: 0 0 80px;
  max-width: 520px;
  margin: 0 auto;
}
.ask h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 32px;
}
.ask-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  resize: none;
  margin-bottom: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.5;
}
.ask-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.ask-form textarea::placeholder { color: var(--ink-4); }
.tier-description {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 16px;
  min-height: 20px;
}
.ask-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 8px;
}
.ask-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
#deep-fields textarea, #standard-seed textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  resize: none;
  margin-bottom: 8px;
  transition: border-color 0.15s;
  line-height: 1.5;
}
#deep-fields textarea:focus, #standard-seed textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.seed-input { display: none; }
.seed-toggle {
  background: none;
  border: none;
  color: var(--ink-3);
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
}
.seed-toggle:hover { color: var(--ink-2); }

.tiers {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.tier {
  flex: 1;
  cursor: pointer;
}
.tier input { display: none; }
.tier-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.tier-inner strong {
  font-size: 14px;
  font-weight: 600;
}
.tier-inner em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-4);
}
.tier-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  margin-left: 8px;
}
.tier.selected .tier-inner {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.tier.selected .tier-price { color: var(--gold); }
.tier:hover .tier-inner { border-color: var(--border-hover); }

.cta {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}
.cta:hover { opacity: 0.85; }
.cta:disabled { opacity: 0.25; cursor: not-allowed; }

/* ── Resume banner ───────────────────────────── */

.resume-banner {
  margin-bottom: 20px;
}
.resume-inner {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  gap: 12px;
}
.resume-inner span { color: var(--ink-2); }
.resume-inner a { color: var(--gold); text-decoration: none; font-weight: 600; white-space: nowrap; }

/* ── Stream ──────────────────────────────────── */

.stream-section {
  max-width: 520px;
  margin: 0 auto 60px;
}
.stream-progress-bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}
.stream-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s ease;
}
.stream-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.stream-status {
  font-size: 14px;
  color: var(--gold);
}
.stream-status a { color: var(--gold); }
.stream-elapsed {
  font-size: 12px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}
.stream-feed {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: none;
}
.stream-feed::-webkit-scrollbar { display: none; }
.agent-bubble {
  padding: 14px 18px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  animation: slideUp 0.25s ease;
}
.agent-bubble strong { color: var(--ink); font-weight: 600; }
.debate-line {
  padding: 10px 18px;
  margin-bottom: 6px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 13px;
  color: var(--ink-3);
  animation: slideUp 0.25s ease;
}
.debate-line strong { color: var(--ink-2); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stream result */
.stream-result {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 20px;
  animation: slideUp 0.4s ease;
}
.result-header { text-align: center; margin-bottom: 24px; }
.result-prob {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold);
}
.result-conf { font-size: 13px; color: var(--ink-3); margin-top: 6px; }
.result-pred {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.result-factors h4, .result-dissent h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.result-factors ul { list-style: none; margin-bottom: 24px; }
.result-factors li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 12px 16px;
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  line-height: 1.5;
}
.result-dissent > div {
  font-size: 14px;
  color: var(--ink-2);
  padding: 12px 16px;
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  border-left: 3px solid var(--amber);
  line-height: 1.5;
}
.result-dissent { margin-bottom: 24px; }
.result-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: var(--ink-4);
}
.result-meta a { color: var(--gold); text-decoration: none; }

/* ── Pricing ─────────────────────────────────── */

.pricing {
  text-align: center;
  padding: 0 0 80px;
}
.pricing h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 40px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.price-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s;
}
.price-item:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.price-item.featured {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.price-tier {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.price-cost {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.price-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   PREDICTION PAGE
   ═══════════════════════════════════════════════ */

.assessment-page { padding: 24px 0 48px; }

.pred-status {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 980px;
  margin-bottom: 24px;
  font-weight: 500;
}
.pred-status-active { background: var(--gold-dim); color: var(--gold); }
.pred-status-resolved { background: var(--amber-dim); color: var(--amber); }

.pred-question {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

/* Assessment hero — verdict first, then insight, then confidence */
.pred-hero {
  padding: 28px;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.verdict {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.verdict-yes { color: var(--green); }
.verdict-lean-yes { color: var(--green); }
.verdict-neutral { color: var(--amber); }
.verdict-lean-no { color: var(--red); }
.verdict-no { color: var(--red); }
.pred-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.pred-meta-row {
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink-4);
}
.pred-conf {
  color: var(--ink-4);
}

/* Findings */
.findings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.finding {
  font-size: 14px;
  color: var(--ink-2);
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.7;
  border-left: 4px solid var(--border);
  transition: border-color 0.15s;
}
.finding:hover { border-color: var(--border-hover); }
.finding-for { border-left-color: var(--green); }
.finding-against { border-left-color: var(--red); }

/* Section headings */
.assessment-page h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin-bottom: 14px;
  margin-top: 8px;
}
.dissent-item {
  font-size: 14px;
  color: var(--ink-2);
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  border-left: 4px solid var(--amber);
  line-height: 1.65;
}
.dissent-item strong { color: var(--ink); }
.dissent-section { margin-bottom: 48px; }

/* Agent cards */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.agent-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  border-top: 3px solid var(--ink-4);
}
.agent-card[data-agent="Sentinel"] { border-top-color: var(--sentinel); }
.agent-card[data-agent="Catalyst"] { border-top-color: var(--catalyst); }
.agent-card[data-agent="Historian"] { border-top-color: var(--historian); }
.agent-card[data-agent="Contrarian"] { border-top-color: var(--contrarian); }
.agent-card[data-agent="Synthesizer"] { border-top-color: var(--synthesizer); }
.agent-card[data-agent="Oracle"] { border-top-color: var(--oracle); }

.agent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.agent-name { font-size: 14px; font-weight: 600; }
.agent-role {
  font-size: 11px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.agent-conf {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 980px;
  margin-left: 8px;
  font-weight: 500;
}
.conf-high { background: var(--green-dim); color: var(--green); }
.conf-med { background: var(--amber-dim); color: var(--amber); }
.conf-low { background: var(--red-dim); color: var(--red); }
.agent-reason {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
}
.agent-model {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 12px;
}

/* Debate transcript */
.debate-details { margin-bottom: 48px; }
.debate-details summary {
  cursor: pointer;
  font-size: 15px;
  color: var(--ink-2);
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: color 0.15s;
  list-style: none;
}
.debate-details summary::-webkit-details-marker { display: none; }
.debate-details summary::before {
  content: '+ ';
  color: var(--ink-4);
}
.debate-details[open] summary::before { content: '- '; }
.debate-details summary:hover { color: var(--ink); }
.debate-details h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  margin: 24px 0 12px;
}
.debate-msg {
  font-size: 14px;
  color: var(--ink-2);
  padding: 14px 18px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--ink-4);
  line-height: 1.6;
}
.debate-msg strong { color: var(--ink); }
.debate-msg p { margin-top: 6px; }
.msg-kind {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 980px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 6px;
  font-weight: 500;
}
.msg-targets { font-size: 12px; color: var(--ink-4); margin-left: 4px; }
.msg-challenge { border-left-color: var(--red); }
.msg-challenge .msg-kind { background: var(--red-dim); color: var(--red); }
.msg-support { border-left-color: var(--green); }
.msg-support .msg-kind { background: var(--green-dim); color: var(--green); }
.msg-synthesis { border-left-color: var(--blue); }
.msg-synthesis .msg-kind { background: rgba(10,132,255,0.12); color: var(--blue); }
.msg-claim .msg-kind { background: var(--amber-dim); color: var(--amber); }

/* Sources / Citations */
.sources-section { margin-bottom: 32px; }
.sources-list { display: flex; flex-direction: column; gap: 8px; }
.source-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.source-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.a-verdict-sm { font-size: 13px; font-weight: 600; }
.a-depth { font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-4); padding: 2px 8px; background: var(--surface); border-radius: 980px; }

.source-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; display: block; }
.source-link { color: var(--gold); text-decoration: none; }
.source-link:hover { text-decoration: underline; }
.source-snippet { font-size: 12px; color: var(--ink-3); line-height: 1.5; }

/* Follow-up suggestions */
.followups-section { margin-bottom: 32px; }
.followups-list { display: flex; flex-direction: column; gap: 6px; }
.followup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-align: left;
  font-family: inherit;
}
.followup-item:hover { border-color: var(--gold); color: var(--ink); }

/* Consensus meter */
.consensus-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.consensus-label { font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.consensus-bar {
  flex: 1;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.consensus-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.5s ease;
}
.consensus-pct { font-size: 14px; font-weight: 600; color: var(--gold); min-width: 36px; text-align: right; }

.duration { display: none; }
.pred-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── Archive ─────────────────────────────────── */

.archive-stats { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }
.archive-table { width: 100%; border-collapse: collapse; }
.archive-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
}
.archive-table td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-2);
}
.archive-table tr:hover td { background: var(--surface-2); }
.archive-table a { color: var(--ink); text-decoration: none; font-weight: 500; }
.archive-table a:hover { color: var(--gold); }
.resolved-correct { color: var(--green); font-weight: 500; }
.resolved-incorrect { color: var(--red); font-weight: 500; }

/* ── Track Record ────────────────────────────── */

.track-intro { font-size: 16px; color: var(--ink-2); margin-bottom: 24px; line-height: 1.6; }
.cal-table { width: 100%; border-collapse: collapse; }
.cal-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
}
.cal-table td { padding: 12px 8px; border-bottom: 1px solid var(--border); font-size: 14px; }
.cal-bar { height: 4px; background: var(--gold); border-radius: 2px; min-width: 2px; }
.no-data { color: var(--ink-3); font-size: 15px; text-align: center; padding: 60px 0; }

/* ── Footer ──────────────────────────────────── */

footer {
  padding: 24px 0 48px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-4);
}
footer a { color: var(--ink-4); text-decoration: none; }
footer a:hover { color: var(--ink-2); }

/* ── Global Animations ───────────────────────── */

/* Staggered fade-in for lists */
.fade-in { animation: fadeIn 0.4s ease both; }
.fade-in:nth-child(1) { animation-delay: 0s; }
.fade-in:nth-child(2) { animation-delay: 0.05s; }
.fade-in:nth-child(3) { animation-delay: 0.1s; }
.fade-in:nth-child(4) { animation-delay: 0.15s; }
.fade-in:nth-child(5) { animation-delay: 0.2s; }
.fade-in:nth-child(6) { animation-delay: 0.25s; }
.fade-in:nth-child(7) { animation-delay: 0.3s; }
.fade-in:nth-child(8) { animation-delay: 0.35s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Card hover lift */
.lift { transition: transform 0.2s, box-shadow 0.2s; }
.lift:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

/* Pulse for live indicators */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Count-up animation helper */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shimmer loading placeholder */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

/* Status bar (global) */
.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 6px;
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.status-bar.visible { transform: translateY(0); }
.status-bar a { color: #fff; text-decoration: underline; }

/* Smooth number display */
.num-large {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Live dot */
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 640px) {
  .hero-ask h1 { font-size: 32px; }
  .tiers { flex-direction: column; }
  .buy-options { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .ask h2, .pricing h2 { font-size: 28px; }
  .price-grid { grid-template-columns: 1fr; }
  .tiers { flex-direction: column; }
  .factors { grid-template-columns: 1fr; }
  .agent-grid { grid-template-columns: 1fr; }
  .pred-prob { font-size: 64px; }
  .pred-meta { flex-direction: column; align-items: center; gap: 8px; }
  .pred-hero { padding: 40px 0; }
  .showcase-prob { font-size: 40px; }
}
