/* morrow.news design system
   news (credibility) + broking (the numbers) + instagram (the feed)
   mobile first, fixed top and bottom bars, swipeable card feed */

:root {
  --paper: #ffffff;
  --ink: #14141a;
  --muted: #6b6b74;
  --faint: #9a9aa1;
  --line: #e8e7e1;
  --chip: #f3f2ec;
  --signal: #2b59ff;
  --hit: #157f43;
  --miss: #c0392b;
  --bar-h: 52px;
  --tab-h: 58px;
  --maxw: 600px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0e0e12; --ink: #f1f0ec; --muted: #9b9ba3; --faint: #6f6f78;
    --line: #26262e; --chip: #1a1a20; --signal: #6f8bff;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* fixed top bar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--bar-h); z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px; background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.topbar .brand {
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.03em; text-decoration: none;
}
.topbar .brand .dot { color: var(--signal); }
.topbar .acc { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.topbar .acc b { color: var(--ink); font-weight: 500; }

/* fixed bottom tab bar */
.tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--tab-h); z-index: 20;
  display: flex; align-items: center; justify-content: space-around;
  background: var(--paper); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar a {
  font-size: 12px; color: var(--muted); text-decoration: none; letter-spacing: 0.02em;
}
.tabbar a.active { color: var(--ink); font-weight: 500; }

/* the swipe feed */
.feed {
  height: 100svh; overflow-y: scroll; scroll-snap-type: y mandatory;
  padding-top: var(--bar-h); padding-bottom: var(--tab-h);
  /* Treat the fixed bars as dead space for snap landing so cards never
     start clipped under the header or footer. */
  scroll-padding-top: var(--bar-h);
  scroll-padding-bottom: var(--tab-h);
}
.card-snap {
  scroll-snap-align: start;
  min-height: calc(100svh - var(--bar-h) - var(--tab-h));
  display: flex; flex-direction: column; justify-content: center;
  padding: 22px 20px; border-bottom: 1px solid var(--line);
  max-width: var(--maxw); margin: 0 auto;
}

/* shared card pieces */
.eyebrow {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted); letter-spacing: 0.03em;
}
.byline { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; }
.byline .ava {
  width: 28px; height: 28px; border-radius: 50%; background: var(--chip);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: var(--muted);
}
.byline .who { color: var(--ink); }
.byline .role { color: var(--faint); }
.hook {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(23px, 6.6vw, 32px); line-height: 1.12; letter-spacing: -0.02em;
  margin: 14px 0 0;
}
.teams { margin: 8px 0 0; font-size: 14px; color: var(--muted); }

.bar { margin-top: 18px; }
.bar-track {
  display: flex; height: 42px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line);
}
.seg { min-width: 0; }
.seg.lead { background: var(--signal); }
.seg.mid { background: var(--faint); }
.seg.low { background: var(--line); }
.bar-legend {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-size: 12.5px; color: var(--muted);
}
.bar-legend b { font-family: var(--font-mono); font-weight: 500; color: var(--ink); }

.callrow { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.callrow .big {
  font-family: var(--font-mono); font-weight: 500; font-size: 28px;
  color: var(--signal); line-height: 1;
}
.callrow .lbl { font-size: 13px; color: var(--muted); }
.callrow .pick {
  margin-left: auto; font-family: var(--font-mono); font-size: 12.5px;
  padding: 5px 11px; border-radius: 8px; background: var(--chip); color: var(--ink);
}

.track {
  display: flex; align-items: center; gap: 7px; margin-top: 12px;
  padding: 8px 11px; border-radius: 8px; background: var(--chip);
  font-size: 12.5px; color: var(--muted);
}
.track b { color: var(--ink); font-weight: 500; font-family: var(--font-mono); }

.stamp {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-family: var(--font-mono); font-size: 13px; padding: 5px 11px; border-radius: 999px;
}
.stamp.hit { color: var(--hit); background: rgba(21,127,67,0.12); }
.stamp.miss { color: var(--miss); background: rgba(192,57,43,0.12); }

.actions {
  display: flex; align-items: center; gap: 18px; margin-top: 14px;
  padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.actions .ic { display: inline-flex; align-items: center; gap: 5px; }
.actions svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.actions .end { margin-left: auto; }

.cue {
  margin-top: 16px; text-align: center; font-size: 12px; color: var(--faint);
  letter-spacing: 0.03em;
}

.divider { text-align: center; color: var(--muted); }
.divider h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  margin: 0 0 6px; color: var(--ink);
}

/* article page */
.page { max-width: var(--maxw); margin: 0 auto; padding: calc(var(--bar-h) + 18px) 20px 90px; }
.back { font-size: 14px; color: var(--muted); text-decoration: none; }
.page h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 6vw, 40px); line-height: 1.06; letter-spacing: -0.025em; margin: 16px 0 0;
}
.deck {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(18px, 4.4vw, 22px); line-height: 1.25; margin: 14px 0 0;
}
.outcome-banner { margin-top: 20px; border-radius: 12px; padding: 14px 16px; font-size: 15px; }
.outcome-banner.hit { background: rgba(21,127,67,0.10); }
.outcome-banner.miss { background: rgba(192,57,43,0.10); }
.outcome-banner .label {
  font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em;
}
.outcome-banner.hit .label { color: var(--hit); }
.outcome-banner.miss .label { color: var(--miss); }

.tier { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.tier h2 {
  font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--signal); font-weight: 500; margin: 0 0 14px;
}
.sources { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.sources li {
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px;
  display: flex; gap: 10px;
}
.sources li:last-child { border-bottom: 0; }
.sources li::before {
  counter-increment: s; content: counter(s);
  font-family: var(--font-mono); color: var(--faint); font-size: 13px; line-height: 1.5;
}
.sources .src-name { font-weight: 500; }
.sources .src-note { margin: 4px 0 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.note { margin-top: 14px; font-size: 14px; color: var(--muted); }
.tier p { margin: 0 0 12px; }
.ref-head { font-weight: 500; margin: 0 0 12px !important; }

/* comments */
.comments { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.comments h2 { font-size: 16px; font-weight: 500; margin: 0 0 14px; }
.cmt { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cmt .ava {
  width: 30px; height: 30px; border-radius: 50%; background: var(--chip); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--muted);
}
.cmt .name { font-size: 13px; color: var(--muted); }
.cmt .body { font-size: 15px; line-height: 1.45; }
.cmt-form { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.cmt-form input, .cmt-form textarea {
  font-family: var(--font-body); font-size: 15px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink);
}
.cmt-form button {
  align-self: flex-start; font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 10px 18px; border-radius: 10px; border: 0; background: var(--signal); color: #fff; cursor: pointer;
}
.cmt-status { font-size: 14px; color: var(--muted); }
.hp { position: absolute; left: -9999px; }

.foot { max-width: var(--maxw); margin: 0 auto; padding: 22px 20px; color: var(--faint); font-size: 13px; }

/* Vertical pager: one topic per screen, no nested scrolling. */
.topic {
  scroll-snap-align: start;
  height: calc(100svh - var(--bar-h) - var(--tab-h));
  display: block;
}
.panel {
  width: 100%; height: 100%;
  padding: 0; border-bottom: 1px solid var(--line);
  display: block;
}
.panel-inner { margin: 0 auto; width: 100%; max-width: var(--maxw); padding: 10px 0; }
.depth {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--faint); letter-spacing: 0.04em; margin-bottom: 16px;
}
.depth .dots { display: flex; gap: 5px; }
.depth .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.depth .dot.on { background: var(--signal); }
.swipe-cue { margin-top: 16px; font-size: 12.5px; color: var(--faint); letter-spacing: 0.02em; }
.hero-img { width: 100%; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 14px; display: block; }
.ptitle {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 6vw, 30px); letter-spacing: -0.02em; margin: 0 0 16px;
}
.page .hero-img { margin: 18px 0 0; }

/* iPhone full-height fix: size to the real visible viewport, not 100vh */
.feed { height: var(--app-h, 100dvh); }
.topic { height: calc(var(--app-h, 100dvh) - var(--bar-h) - var(--tab-h)); }
.panel .hero-img { max-height: 38vh; object-fit: contain; }

/* cookie consent */
.cookie {
  position: fixed; left: 12px; right: 12px;
  bottom: calc(var(--tab-h) + 10px + env(safe-area-inset-bottom)); z-index: 30;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; color: var(--ink); max-width: var(--maxw); margin: 0 auto;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.cookie-act { display: flex; gap: 10px; justify-content: flex-end; }
.cookie button {
  font-family: var(--font-body); font-size: 14px; padding: 8px 16px;
  border-radius: 8px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer;
}
.cookie button.primary { background: var(--signal); color: #fff; border-color: var(--signal); }

/* probability evolution */
.trend { margin-top: 4px; }
.trend-row { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.trend-date { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); width: 52px; flex-shrink: 0; }
.trend-bar { flex: 1; height: 10px; border-radius: 999px; background: var(--chip); overflow: hidden; }
.trend-bar span { display: block; height: 100%; background: var(--signal); }
.trend-val { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink); width: 110px; flex-shrink: 0; text-align: right; }
.trend-note { font-size: 14px; color: var(--muted); margin: 6px 0 0 62px; line-height: 1.45; }

.cookie[hidden] { display: none; }

/* Feed is the only vertical scroll context. */
.feed { touch-action: pan-y; overscroll-behavior-y: contain; }

/* Card layout. Vertically centered content; the panel is a closed, opaque
   block so the button never lets the next card's eyebrow bleed through. */
.panel {
  box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.panel-inner {
  box-sizing: border-box; min-height: 100%; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
  padding: 18px 20px 22px;
}

/* Intro topic: quiet welcome, no wordmark (the topbar carries the brand). */
.topic.intro .intro-hook {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 7.6vw, 44px); line-height: 1.12; letter-spacing: -0.02em;
  margin: 14px 0 0;
}
.topic.intro .intro-sub {
  margin: 12px 0 0; font-size: 16px; color: var(--muted); max-width: 30ch;
}
.panel .hero-img {
  /* Show the brand graphic in full: bar, title and morrow.news logo all
     visible. contain (not cover) so nothing crops at the top or bottom. */
  width: 100%; height: auto;
  max-height: 38svh;
  object-fit: contain;
}
.panel .hook {
  font-size: clamp(24px, 6.4vw, 34px); line-height: 1.16;
  overflow-wrap: break-word;
}
.panel .teams { overflow-wrap: break-word; }
.eyebrow { flex-wrap: wrap; gap: 4px 10px; }
.bar-legend { flex-wrap: wrap; row-gap: 4px; }
.bar-legend span { min-width: 0; }

/* The whole forecast card is the tap target; no explicit button. The JS in
   render.php opens the reader when the user taps anywhere inside the panel. */
.topic[data-slug] .panel-inner { cursor: pointer; }

/* Article page: title and deck wrap cleanly on narrow screens. */
.page h1 { overflow-wrap: break-word; }
.page .deck { overflow-wrap: break-word; }

/* First-visit onboarding overlay (ghost coachmarks). */
.onb {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(14,14,18,0.86);
  color: #f1f0ec;
  display: flex; flex-direction: column;
  padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.onb[hidden] { display: none; }
.onb-skip { display: flex; justify-content: flex-end; padding: 14px 18px 0; }
.onb-skip button {
  background: transparent; border: 0; color: rgba(241,240,236,0.7);
  font-family: var(--font-body); font-size: 14px; padding: 6px 10px; cursor: pointer;
  letter-spacing: 0.02em;
}
.onb-stage {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 20px; text-align: center;
}
.onb-step {
  display: none; max-width: 320px;
  flex-direction: column; align-items: center; gap: 18px;
}
.onb-step.is-active { display: flex; }
.onb-step h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  margin: 4px 0 0; letter-spacing: -0.02em;
}
.onb-step p { margin: 0; font-size: 15px; color: rgba(241,240,236,0.78); line-height: 1.45; }
.onb-gesture {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--signal);
}
.onb-gesture svg { width: 56px; height: 56px; fill: currentColor; }
.onb-vert { flex-direction: column; gap: 6px; }
.onb-vert svg:nth-child(1) { animation: onbUp 1.6s ease-in-out infinite; }
.onb-vert svg:nth-child(3) { animation: onbDown 1.6s ease-in-out infinite; }
.onb-horz svg:nth-child(1) { animation: onbLeft 1.6s ease-in-out infinite; }
.onb-horz svg:nth-child(3) { animation: onbRight 1.6s ease-in-out infinite; }
.onb-dot {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(241,240,236,0.4);
}
.onb-pill {
  display: inline-flex; align-items: center;
  background: var(--signal); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  animation: onbPulse 1.4s ease-in-out infinite;
}
/* Tap step: a small mock card outline behind the finger icon so the
   gesture clearly means "tap the content," not a specific button. */
.onb-tap { position: relative; }
.onb-card-mock {
  position: absolute; inset: 0; margin: auto;
  width: 120px; height: 80px;
  border: 1.5px solid rgba(241,240,236,0.35);
  border-radius: 10px;
  animation: onbPulse 1.4s ease-in-out infinite;
}
.onb-tap svg { position: relative; z-index: 1; }
@keyframes onbUp { 0%,100%{transform:translateY(6px);opacity:0.5;} 50%{transform:translateY(-2px);opacity:1;} }
@keyframes onbDown { 0%,100%{transform:translateY(-6px);opacity:0.5;} 50%{transform:translateY(2px);opacity:1;} }
@keyframes onbLeft { 0%,100%{transform:translateX(6px);opacity:0.5;} 50%{transform:translateX(-2px);opacity:1;} }
@keyframes onbRight { 0%,100%{transform:translateX(-6px);opacity:0.5;} 50%{transform:translateX(2px);opacity:1;} }
@keyframes onbPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }
.onb-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px 22px; gap: 16px;
}
.onb-dots { display: flex; gap: 6px; }
.onb-dots span {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(241,240,236,0.3);
}
.onb-dots span.on { background: #fff; }
.onb-foot button.primary {
  background: var(--signal); color: #fff; border: 0;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; min-height: 44px;
}

/* Reader overlay: a fresh horizontal pager, independent scroll context. */
.reader {
  position: fixed; inset: 0; z-index: 40;
  background: var(--paper); color: var(--ink);
  display: flex; flex-direction: column;
  padding-top: env(safe-area-inset-top);
}
.reader[hidden] { display: none; }
body.reader-open { overflow: hidden; }
body.reader-open .feed { overflow: hidden; }
.reader-bar {
  flex: 0 0 auto; height: var(--bar-h); padding: 0 14px 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); background: var(--paper);
}
.reader-counter { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.reader-counter .rc-label {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.reader-counter .rc-pos {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--muted);
}
.reader-close {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reader-track {
  flex: 1 1 auto; min-height: 0;
  display: flex; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  touch-action: pan-x; overscroll-behavior: contain;
  scrollbar-width: none;
}
.reader-track::-webkit-scrollbar { display: none; }
.station {
  flex: 0 0 100%; min-width: 100%; width: 100%; height: 100%;
  scroll-snap-align: start; scroll-snap-stop: always;
  overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.station-inner {
  box-sizing: border-box; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 22px 20px 32px;
  display: block;
}
.station-inner > *:first-child { margin-top: 0; }
.station-inner .ptitle { margin-top: 4px; }
.station-inner .sources li { word-break: break-word; }
/* Hide the per-station counter — the reader bar carries the global one. */
.station .depth { display: none; }
/* Compact thumbnail in the Forecast recap, consistent with the design. */
.station-thumb {
  width: 100%; max-width: 100%; height: auto;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--line);
  margin-bottom: 14px; display: block;
}

/* Resolution: "What happened" — final score banner + story + controversy. */
.resolution-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 4px 0 16px;
}
.resolution-score {
  font-family: var(--font-mono); font-weight: 500; font-size: 40px;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1;
}
.resolution-text { margin: 0 0 14px; color: var(--ink); }
.ptitle-sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 4.6vw, 22px); letter-spacing: -0.015em;
  margin: 18px 0 8px;
}
.resolution-tier h2 { color: var(--signal); }

/* Article page: last updated line. */
.updated {
  margin: 12px 0 0; font-family: var(--font-mono); font-size: 12.5px;
  color: var(--muted); letter-spacing: 0.02em;
}

/* Hub page: every prediction for a competition. */
.hub-list { list-style: none; padding: 0; margin: 24px 0 0; }
.hub-list li { border-bottom: 1px solid var(--line); }
.hub-list li:last-child { border-bottom: 0; }
.hub-list a {
  display: flex; flex-direction: column; gap: 6px; padding: 16px 0;
  text-decoration: none; color: var(--ink);
}
.hub-list .hub-title {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; overflow-wrap: anywhere;
}
.hub-list .hub-hook { font-size: 15px; color: var(--ink); line-height: 1.4; overflow-wrap: anywhere; }
.hub-list .hub-meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.hub-link { margin-top: 14px; font-size: 14px; }
.hub-link a { color: var(--signal); text-decoration: none; border-bottom: 1px solid var(--signal); padding-bottom: 1px; }

/* Article page: related predictions block. */
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { border-bottom: 1px solid var(--line); }
.related-list li:last-child { border-bottom: 0; }
.related-list a {
  display: flex; flex-direction: column; gap: 4px; padding: 12px 0;
  text-decoration: none; color: var(--ink);
}
.related-list .rel-title { font-weight: 500; font-size: 15px; }
.related-list .rel-meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }

/* ---------------------------------------------------------------------------
   Brand card. One component, two contexts.
   - On the page: scales fluidly from ~320px to the article max-width.
   - In public/cards/{slug}.html: rendered at viewport 1200x630 for Playwright
     to screenshot as the og:image.
   clamp() values are chosen so the card reads well at both scales.
--------------------------------------------------------------------------- */
.brand-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(16px, 3.4vw, 64px) clamp(18px, 3.8vw, 70px);
  display: flex; flex-direction: column;
  gap: clamp(10px, 1.6vw, 22px);
  font-family: var(--font-body);
  margin: 0 0 22px;
  overflow: hidden;
}
.bc-head { display: flex; align-items: center; }
.bc-wordmark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(18px, 3.0vw, 40px);
  letter-spacing: -0.03em;
  text-decoration: none; color: var(--ink);
}
.bc-wordmark span { color: var(--signal); }
.bc-eyebrow {
  margin: 0;
  font-size: clamp(11px, 1.9vw, 26px);
  color: var(--muted);
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
}
.bc-teams {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 5.8vw, 70px);
  line-height: 1.06; letter-spacing: -0.025em;
  margin: 0;
  overflow-wrap: anywhere; hyphens: auto;
}

/* The probability bar inside the brand card. Reuses .bar/.bar-track/.seg
   from the global rules; only sizes and spacing get scoped overrides here. */
.brand-card .bar { margin-top: 0; }
.brand-card .bar-track {
  height: clamp(28px, 3.8vw, 46px);
  border-radius: clamp(8px, 0.9vw, 14px);
}
.brand-card .bar-legend {
  font-size: clamp(11px, 1.6vw, 22px);
  margin-top: clamp(6px, 0.8vw, 12px);
}

.bc-result {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: clamp(6px, 1.2vw, 18px) clamp(10px, 1.8vw, 24px);
  margin-top: clamp(4px, 0.6vw, 10px);
}
.bc-fav-pct {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(40px, 7.2vw, 84px);
  color: var(--signal); line-height: 1;
}
.bc-fav-lbl, .bc-pick, .bc-called, .bc-final, .bc-badge, .bc-awaiting {
  font-size: clamp(14px, 2.5vw, 30px);
}
.bc-fav-lbl { color: var(--ink); }
.bc-pick { color: var(--muted); }
.bc-awaiting {
  color: var(--muted); font-style: italic;
  font-size: clamp(13px, 2.0vw, 24px);
}
.bc-result-resolved .bc-called { color: var(--muted); }
.bc-result-resolved .bc-final {
  font-family: var(--font-mono); font-weight: 600; color: var(--ink);
}
.bc-result-resolved .bc-badge {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(12px, 1.8vw, 22px);
  padding: 4px clamp(8px, 1vw, 14px);
  border-radius: 999px;
  background: var(--chip); color: var(--ink);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.bc-result-resolved.bc-hit .bc-badge { color: var(--hit); background: rgba(21,127,67,0.12); }
.bc-result-resolved.bc-miss .bc-badge { color: var(--miss); background: rgba(192,57,43,0.12); }

.bc-byline {
  margin: clamp(4px, 0.6vw, 10px) 0 0;
  font-size: clamp(11px, 1.6vw, 22px);
  color: var(--faint);
}

/* Reader recap: slim bar styling, light text rows. */
.recap-pick, .recap-verdict {
  margin: 14px 0 0; font-size: 15px; color: var(--ink);
}
.recap-pick b, .recap-verdict b { color: var(--ink); font-weight: 600; }
