/*
 * web-public/styles.css — "PRIME TIME PRODUCTIONS" cinematic system.
 *
 * Plain CSS, no framework, no build step (S3 + CloudFront servable). Shared by all
 * three public pages (index / info / wall).
 *
 * DESIGN DIRECTION (owner-blessed 2026-07-03 design deep-dive):
 *   The comedy engine of the owner's video ("Hard Mocks: Davante's Inferno",
 *   channel "The Deion") is THE COLLISION — the dead-serious cinematic gravity of
 *   an HBO "Hard Knocks" prestige documentary pointed at the utterly low-stakes
 *   world of a $100 friend league. So the FRAME is a documentary title card
 *   (letterbox, film grain, vignette, heavy condensed broadcast type, timecode /
 *   "REC" chrome) and the VOICE is Coach Prime swagger (gold, WE COMIN'). Loud
 *   words, serious frame.
 *
 * PHOTO SLOTS: the owner supplies his own Coach Prime imagery. Every `.prime-shot`
 *   is a drop-in slot — put a file at the path shown in its label (see
 *   `img/README.md`) and it fills; leave it empty and a labeled film-slate
 *   placeholder shows. Zero build step, zero JS beyond an inline onerror.
 *
 * PII INVARIANT (R-25): nothing here renders phone, full name, ammo, heat, or any
 *   non-public attribute. The Wall shows first name + paid/unpaid only, and player
 *   tiles carry NO per-player photo (the only faces on this site are Coach Prime).
 */

/* ============================ fonts ============================ */
/* Athletic broadcast display (Anton) + condensed UI (Oswald) + clean body (Inter).
   Public static site — external font CDN is fine here (this is not a CSP artifact). */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

/* ============================ tokens ============================ */
:root {
  /* Prime gold + film blacks */
  --gold: #ffcb05;
  --gold-dim: #c9a200;
  --gold-deep: #8a6d00;
  --ink: #08080a;
  --ink-2: #0e0f12;
  --panel: #131418;
  --panel-2: #1a1c22;
  --line: #2a2c34;
  --line-2: #383b45;
  --text: #f4f5f7;
  --muted: #9aa0ab;
  --faint: #6b7079;
  /* status */
  --green: #37d67a;
  --red: #e5372b;
  --red-deep: #7a1810;
  --amber: #ffb020;
  /* type */
  --f-display: "Anton", "Arial Narrow", "Impact", sans-serif;
  --f-cond: "Oswald", system-ui, "Segoe UI", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 4px; /* squarer, more broadcast-lower-third than soft-SaaS */
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  font-family: var(--f-body);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  /* stadium-light + vignette: a warm key light up top, darkness closing the edges */
  background-image:
    radial-gradient(1100px 520px at 82% -12%, rgba(255, 203, 5, 0.10) 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 8%, rgba(120, 140, 200, 0.06) 0%, transparent 55%),
    radial-gradient(1400px 900px at 50% 30%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  background-attachment: fixed;
}

/* ---- film grain: full-viewport, non-interactive, blended over everything ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- cinematic letterbox: thin fixed bars top & bottom, gold hairline ---- */
body::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  z-index: 9998;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 50%, var(--gold-deep));
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}

a { color: var(--gold); }

/* ============================ shared chrome ============================ */

/* documentary kicker — the "EPISODE 01 · A LEAGUE IN CRISIS" overline */
.kicker {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.kicker.rec::after {
  content: "● REC";
  color: var(--red);
  letter-spacing: 0.18em;
  font-weight: 700;
  animation: recblink 2s steps(1) infinite;
}
@keyframes recblink { 50% { opacity: 0.25; } }

/* ---- site nav (shared) ---- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  position: sticky;
  top: 6px; /* clear the letterbox hairline */
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(10px);
  z-index: 50;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--f-cond); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.08em; }
.nav-brand .brand-glasses {
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--gold), var(--gold-deep) 78%);
  border: 1px solid var(--gold);
  box-shadow: 0 0 14px rgba(255, 203, 5, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.nav-brand .brand-sub { color: var(--gold); }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
}
.nav-links a:hover { color: var(--text); border-color: var(--line); }
.nav-links a.is-current { color: var(--gold); border-color: var(--gold-dim); }
.nav-links a.nav-admin {
  color: var(--ink);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
  border-color: var(--gold);
  margin-left: 6px;
}
.nav-links a.nav-admin:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }

/*
 * Mobile nav: 7 links no longer wrap into a tall multi-row stack (pushing the
 * hero below the fold). Instead nav-links becomes a single horizontal-scroll
 * pill row — on-brand (same chip language as .trending-pill / .league-badge)
 * and compact. Scrollbar hidden; the row itself signals "more" by clipping the
 * last pill mid-way at the viewport edge.
 */
@media (max-width: 760px) {
  .site-nav { flex-wrap: wrap; }
  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Bleed to the physical screen edges (cancels .site-nav's 28px side padding)
       with NO trailing padding — a pill sliced by the glass edge is the scroll
       affordance. Leading padding keeps the first pill aligned with content. */
    margin: 0 -28px;
    padding: 0 0 4px 28px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; white-space: nowrap; padding: 9px 14px; }
  /* Plus a slim fade right at the edge so the slice reads as "continues," not
     "broken." app.js toggles .at-end when fully scrolled so the last pill (the
     gold Commish HQ button) is never left permanently dimmed. */
  .nav-links {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 28px), rgba(0, 0, 0, 0.25));
    mask-image: linear-gradient(to right, #000 calc(100% - 28px), rgba(0, 0, 0, 0.25));
  }
  .nav-links.at-end {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ---- generic layout ---- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
/*
 * Longhand top/bottom only — `.section` and `.wrap` land on the same element on
 * every page (`<section class="section wrap">`). A shorthand `padding: 54px 0`
 * here would win the whole property over `.wrap`'s `padding: 0 28px` (same
 * specificity, later in source), silently zeroing the horizontal gutter below
 * the 1120px `.wrap` max-width — i.e. on every phone/tablet viewport. Longhand
 * keeps the two rules on disjoint properties so both apply regardless of order.
 */
.section { padding-top: 54px; padding-bottom: 54px; }
.section h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.98;
  margin: 0 0 10px;
}
.section .lede { color: var(--muted); margin: 0 0 28px; font-size: 16px; max-width: 640px; }
.muted { color: var(--muted); }

/* ============================ hero (landing title card) ============================ */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 28px 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .hero-glasses { font-size: 40px; line-height: 1; margin-bottom: 6px; }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(46px, 8.5vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.002em;
  text-transform: uppercase;
  margin: 6px 0 14px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.hero h1 .accent { color: var(--gold); }
.hero .hero-tag {
  font-family: var(--f-cond);
  font-size: 20px;
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.hero .hero-sub { color: var(--muted); font-size: 16px; max-width: 540px; margin: 0 0 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ============================ prime photo slots ============================ */
/*
 * Drop-in Coach Prime imagery. Put a file at the path in the label to fill the
 * slot; leave it and a film-slate placeholder shows. The <img> uses an inline
 * onerror to hide itself when the file is absent, revealing the label beneath.
 */
.prime-shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background:
    repeating-linear-gradient(-45deg, rgba(255, 203, 5, 0.06) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, var(--panel-2), var(--ink-2));
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.prime-shot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.prime-shot__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 18px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--faint);
}
.prime-shot__label .slate { font-size: 30px; opacity: 0.7; }
.prime-shot__label code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: var(--gold-dim);
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0;
}
/* gold corner ticks — "framed shot" film-slate feel */
.prime-shot::before,
.prime-shot::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
  border: 2px solid var(--gold);
  opacity: 0.75;
}
.prime-shot::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.prime-shot::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
/* optional caption strip overlaid on the photo (lower-third) */
.prime-shot__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 22px 14px 12px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
}
.prime-shot__cap b { color: var(--gold); }

/* hero portrait: taller, letterboxed feel */
.prime-shot--hero { aspect-ratio: 3 / 4; }

/* full-bleed B-roll interstitial strip */
.prime-strip {
  position: relative;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 203, 5, 0.05) 0 12px, transparent 12px 24px),
    linear-gradient(120deg, var(--ink-2), var(--panel));
}
.prime-strip__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(0.15) contrast(1.05);
}
/* dark scrim so the centered quote stays readable over any photo */
.prime-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.55) 50%, rgba(8, 8, 10, 0.9));
}
.prime-strip__quote {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 28px;
  max-width: 900px;
}
.prime-strip__quote .mark {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.02;
  color: var(--text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
  margin: 0;
}
.prime-strip__quote .mark .accent { color: var(--gold); }
.prime-strip__quote .who {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--gold);
  margin: 14px 0 0;
}
.prime-strip__label {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 14px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--faint);
}
.prime-strip__label code { font-family: ui-monospace, Menlo, monospace; color: var(--gold-dim); }

/* ============================ buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--line-2);
  background: var(--panel-2);
  color: var(--text);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { border-color: var(--gold-dim); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #1a1500; border-color: var(--gold); }
.btn-primary:hover { background: #ffd633; }

/* ============================ stat band (landing) ============================ */
.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.stat-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .big {
  display: block;
  font-family: var(--f-display);
  font-size: 46px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.stat-card .lbl {
  font-family: var(--f-cond);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.stat-card.paid { border-top-color: var(--green); }
.stat-card.paid .big { color: var(--green); }
.stat-card.owe { border-top-color: var(--red); }
.stat-card.owe .big { color: var(--red); }

/* ============================ feature cards (landing) ============================ */
.card-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.feat-card {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.feat-card .prime-shot { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; aspect-ratio: 16 / 10; box-shadow: none; }
.feat-card .feat-body { padding: 20px 22px 24px; }
.feat-card .step-no {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.feat-card h3 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.03em; margin: 6px 0 8px; font-size: 20px; }
.feat-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ============================ info / FAQ ============================ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.info-card {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 12px; font-size: 17px; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.info-card p { margin: 0 0 8px; font-size: 14px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card dl { margin: 0; }
.info-card dt { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; font-size: 13px; margin-top: 12px; color: var(--text); }
.info-card dt:first-child { margin-top: 0; }
.info-card dd { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.info-card .pay-note { font-size: 13px; color: var(--faint); margin-top: 14px; font-style: italic; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.faq-item h3 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 6px; font-size: 16px; color: var(--text); }
.faq-item p { margin: 0; color: var(--muted); font-size: 14px; }

/* ============================ WALL OF SHAME — "cut day" boards ============================ */
.wall-hero {
  text-align: center;
  padding: 8px 0 4px;
}
.wall-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 30px;
}
.wall-legend span { display: inline-flex; align-items: center; gap: 8px; }

.cutboards { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 26px; }

/* one franchise "cut board" (dossier) */
.cutboard {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cutboard__head {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 203, 5, 0.05), transparent);
}
/* the GM (Coach Prime) presiding over the board */
.cutboard__gm { aspect-ratio: 1 / 1; border-radius: 3px; }
.cutboard__title { min-width: 0; }
.cutboard__title .franchise {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 0.95;
  margin: 0;
}
.cutboard__title .subhead {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--gold);
  margin: 4px 0 0;
}
.cutboard__record {
  font-family: var(--f-cond);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.cutboard__record b { color: var(--green); }

.rosterbar {
  height: 8px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.rosterbar .fill { height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--green)); }

.cutboard__group { padding: 16px 18px; }
.cutboard__group + .cutboard__group { border-top: 1px dashed var(--line); }
.group-title {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.group-title.active { color: var(--green); }
.group-title.cut { color: var(--red); }
.group-title .n { color: var(--faint); font-weight: 400; }

.roster-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }

/* ACTIVE (paid) player tile */
.roster-list.active li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 3px;
  background: rgba(55, 214, 122, 0.05);
  font-family: var(--f-cond);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.roster-list.active li::before { content: "✓"; color: var(--green); font-weight: 700; }
.roster-list.active li .tag {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--green);
  border: 1px solid rgba(55, 214, 122, 0.4);
  border-radius: 3px;
  padding: 2px 6px;
}

/* CUT (still duckin') player tile — the "cut card" with a DID NOT REPORT stamp */
.roster-list.cut li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--red-deep);
  border-radius: 3px;
  background: repeating-linear-gradient(-45deg, rgba(229, 55, 43, 0.08) 0 8px, transparent 8px 16px);
  font-family: var(--f-cond);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #ffd9d5;
  overflow: hidden;
}
.roster-list.cut li .duck { font-size: 15px; }
.roster-list.cut li .stamp {
  margin-left: auto;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 3px;
  padding: 2px 7px;
  transform: rotate(-6deg);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.92;
}

.roster-empty { color: var(--faint); font-size: 13px; font-style: italic; font-family: var(--f-body); padding: 4px 0; }

/* ============================ footer ============================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 28px 48px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer .footer-shot {
  width: 96px;
  margin: 0 auto 18px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
}
.site-footer .footer-shot .prime-shot__label { font-size: 9px; letter-spacing: 0.06em; }
.site-footer .footer-shot::before,
.site-footer .footer-shot::after { display: none; }
.site-footer .signoff {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.site-footer .swag { color: var(--gold); font-style: italic; font-weight: 700; }
.site-footer .credit {
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: var(--faint);
  margin-top: 16px;
}

/* ============================ responsive ============================ */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 360px; margin: 0 auto; width: 100%; }
}
@media (max-width: 620px) {
  .cutboards { grid-template-columns: 1fr; }
  /* Longhand — see the `.section` rule above; a shorthand here would re-zero
     `.wrap`'s horizontal gutter on every phone width. */
  .section { padding-top: 40px; padding-bottom: 40px; }
}

/* ======================================================================
 * THE DEION UNIVERSE — extensions on top of the cinematic system above.
 * Same tokens, same type scale, same .prime-shot / .kicker / .btn language.
 * Sub-brand accents are applied via an inline `--accent` custom property on
 * the nearest ancestor (`style="--accent:#FFD24A"`), never a forked palette.
 * ====================================================================== */

/* ---- sub-brand accent hookup (Deion's League gold / Bo Jackson blue) ---- */
:root { --accent-deions: #ffd24a; --accent-bojackson: #3fa7ff; }
.league-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent, var(--gold));
  border: 1px solid color-mix(in srgb, var(--accent, var(--gold)) 45%, transparent);
  border-radius: var(--radius);
  padding: 3px 9px;
}
.league-badge::before { content: "●"; font-size: 8px; }
.accent-text { color: var(--accent, var(--gold)); }
.accent-rule { height: 2px; background: var(--accent, var(--gold)); }

/* ---- nav: brand umbrella + wider link set (shared across all pages) ---- */
.nav-brand .brand-sub { color: var(--gold); }

/* ---- phase-morphing hero: one shared shell, six swappable variants ---- */
/* app.js shows the variant whose [data-phase] matches the resolved phase and
   hides the rest — every variant ships in the HTML so the page renders fully
   offline/static, no per-phase fetch branching. */
.phase-hero[hidden] { display: none !important; }

.hero-quickglance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 0;
}
.glance-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, var(--gold));
  border-radius: var(--radius);
  font-family: var(--f-cond);
}
.glance-row .team { font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; }
.glance-row .rec { color: var(--muted); font-size: 12px; }
.glance-row .pts { font-family: var(--f-display); font-size: 20px; color: var(--accent, var(--gold)); }

/* mini score-bug: two teams colliding, used in the playoffs hero + bowl teaser */
.scorebug {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.scorebug .side { flex: 1; text-align: center; }
.scorebug .side .lg { font-size: 11px; letter-spacing: 0.1em; }
.scorebug .side .nm { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; margin: 6px 0 2px; line-height: 1; }
.scorebug .side .pt { font-family: var(--f-cond); font-size: 28px; color: var(--gold); }
.scorebug .side.deions { --accent: var(--accent-deions); }
.scorebug .side.bojackson { --accent: var(--accent-bojackson); }
.scorebug .side .nm { color: var(--accent, var(--text)); }
.scorebug .vs { font-family: var(--f-display); color: var(--faint); font-size: 16px; }

/* celebratory / status badges reused across hero variants */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  border: 1px solid rgba(55, 214, 122, 0.4);
  background: rgba(55, 214, 122, 0.08);
  border-radius: var(--radius);
  padding: 8px 14px;
  margin: 0 0 16px;
}

/* ============================ payouts strip ============================ */
.payouts-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.payout-chip {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.payout-chip.place-1 { border-top-color: var(--gold); }
.payout-chip .place { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--muted); }
.payout-chip .amt { display: block; font-family: var(--f-display); font-size: 38px; color: var(--gold); line-height: 1.1; margin: 6px 0 4px; }
.payout-chip .lbl { font-size: 12px; color: var(--muted); }
.payout-chip .who { display: block; margin-top: 8px; font-family: var(--f-cond); font-size: 12px; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }

/* pot thermometer — syrup/pancake motif, "Coach Prime's Cut" skim line */
.pot-therm {
  margin-top: 24px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.pot-therm__head { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.pot-therm__head b { color: var(--gold); font-family: var(--f-display); font-size: 20px; letter-spacing: 0.01em; }
.pot-therm__bar { position: relative; height: 16px; border-radius: 999px; background: var(--ink); border: 1px solid var(--line); overflow: hidden; }
.pot-therm__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), #ffe27a);
  background-size: 200% 100%;
  animation: syrupflow 3.5s linear infinite;
  border-radius: 999px 0 0 999px;
}
@keyframes syrupflow { from { background-position: 0% 0; } to { background-position: 200% 0; } }
.pot-therm__skim { margin: 8px 0 0; font-size: 11px; font-style: italic; color: var(--faint); }

/* ============================ THE DEION BOWL — bracket ============================ */
.bowl-stage {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px) 1fr;
  gap: 24px;
  align-items: center;
}
.ladder { display: flex; gap: 18px; }
.ladder.ladder--right { flex-direction: row-reverse; }
.ladder-round { display: flex; flex-direction: column; justify-content: space-around; gap: 22px; min-width: 190px; }
.ladder-round .round-lbl { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; color: var(--faint); text-align: center; margin: 0 0 4px; }

.bmatch {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bmatch .bteam {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  font-family: var(--f-cond);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.bmatch .bteam + .bteam { border-top: 1px dashed var(--line); }
.bmatch .bteam.winner { color: var(--text); background: rgba(255, 203, 5, 0.06); }
.bmatch .bteam.winner .seed { color: var(--gold); }
.bmatch .bteam.loser { color: var(--faint); }
.bmatch .bteam .seed { font-size: 10px; color: var(--faint); margin-right: 6px; }
.bmatch .bteam .pts { font-family: var(--f-display); font-size: 15px; }

/* connector lines — fixed 2-round shape (2 semis -> 1 final), drawn with borders.
   These live on `.bmatch-slot` (NOT `.bmatch`, which needs overflow:hidden for its
   border-radius — that would clip a line poking out past its own edge). */
.ladder-round--r1 .bmatch-slot { position: relative; }
.ladder-round--r1 .bmatch-slot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--faint);
}
.ladder .ladder-round--r1 .bmatch-slot::after { right: -18px; }
.ladder--right .ladder-round--r1 .bmatch-slot::after { right: auto; left: -18px; }
.ladder-round--r1 { position: relative; }
.ladder-round--r1::before {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  width: 2px;
  background: var(--faint);
  right: -18px;
}
.ladder--right .ladder-round--r1::before { right: auto; left: -18px; }

.bowl-cup {
  text-align: center;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--accent, var(--gold));
  margin-top: 10px;
}
.bowl-cup .cupname { font-family: var(--f-display); font-size: 15px; letter-spacing: 0.03em; display: block; margin-top: 2px; }

/* center stage: THE PRIMETIME glowing at the middle of the collision */
.bowl-center { text-align: center; position: relative; }
.bowl-center .prime-shot {
  aspect-ratio: 3 / 4;
  box-shadow: 0 0 70px 10px rgba(255, 203, 5, 0.25), var(--shadow);
  animation: trophyglow 3.2s ease-in-out infinite;
}
@keyframes trophyglow {
  0%, 100% { box-shadow: 0 0 60px 8px rgba(255, 203, 5, 0.22), var(--shadow); }
  50% { box-shadow: 0 0 90px 16px rgba(255, 203, 5, 0.38), var(--shadow); }
}
.bowl-center h3 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--gold);
  margin: 14px 0 4px;
  line-height: 1;
}
.bowl-center .sub { font-family: var(--f-cond); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0; }

.deionbowl-card {
  margin-top: 22px;
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.deionbowl-card table { width: 100%; border-collapse: collapse; font-family: var(--f-cond); font-size: 13px; }
.deionbowl-card th { text-align: left; text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; color: var(--faint); padding: 6px 8px; border-bottom: 1px solid var(--line); }
.deionbowl-card td { padding: 8px; border-bottom: 1px solid var(--line); }
.deionbowl-card tr:last-child td { border-bottom: 0; }
.deionbowl-card td.total { font-family: var(--f-display); color: var(--gold); font-size: 16px; }
.deionbowl-card .src-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 1px 5px;
  margin-left: 6px;
}
.deionbowl-card .src-tag.live { color: var(--red); border-color: var(--red-deep); animation: recblink 2s steps(1) infinite; }

@media (max-width: 980px) {
  .bowl-stage { grid-template-columns: 1fr; }
  .ladder, .ladder.ladder--right { flex-direction: column; }
  .ladder-round--r1::before, .ladder-round--r1 .bmatch-slot::after { display: none; }
  .ladder-round { min-width: 0; }
}

/* ============================ league hub (Around the League) ============================ */
.league-panel {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent, var(--gold));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 20px 22px;
}
.league-panel + .league-panel { margin-top: 20px; }
.league-panel__head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; margin: 0 0 14px; }
.league-panel__head h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 24px; margin: 0; }

/* wraps standings/bracket tables — real Sleeper team names/handles are dynamic
   and unbounded, so these scroll horizontally in their own box rather than
   ever pushing the page wide (iOS Safari needs the wrapping div; overflow set
   directly on <table> doesn't reliably scroll there). */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.standings-table { width: 100%; border-collapse: collapse; font-family: var(--f-cond); font-size: 13px; }
.standings-table th { text-align: left; text-transform: uppercase; letter-spacing: 0.06em; font-size: 10px; color: var(--faint); padding: 8px 10px; border-bottom: 1px solid var(--line); }
.standings-table td { padding: 9px 10px; border-bottom: 1px solid var(--line); }
.standings-table tr:last-child td { border-bottom: 0; }
.standings-table td.rk { color: var(--accent, var(--gold)); font-family: var(--f-display); width: 30px; }
.standings-table td.rec { color: var(--muted); }
.standings-table td.pf { text-align: right; }

.matchup-row-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-top: 14px; }
.matchup-mini { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel-2); font-family: var(--f-cond); font-size: 13px; }
.matchup-mini .t { display: flex; flex-direction: column; }
.matchup-mini .t .nm { text-transform: uppercase; }
.matchup-mini .t .sc { font-family: var(--f-display); color: var(--text); font-size: 16px; }
.matchup-mini .t.hi .sc { color: var(--accent, var(--gold)); }
.matchup-mini .vsdash { color: var(--faint); font-size: 11px; }

/* power rankings + cope meter */
.rankings-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.rank-row { display: grid; grid-template-columns: 34px 1fr 90px; align-items: center; gap: 12px; padding: 10px 12px; background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); }
.rank-row .rk { font-family: var(--f-display); font-size: 20px; color: var(--gold); text-align: center; }
.rank-row .body .nm { font-family: var(--f-cond); text-transform: uppercase; font-size: 14px; letter-spacing: 0.02em; }
.rank-row .body .rec { color: var(--muted); font-size: 11px; margin-left: 6px; }
.rank-row .body .blurb { margin: 3px 0 0; color: var(--muted); font-size: 12.5px; }
.cope-meter { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.cope-meter .lbl { font-family: var(--f-cond); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.cope-meter .bar { width: 84px; height: 7px; border-radius: 999px; background: var(--ink); border: 1px solid var(--line); overflow: hidden; }
.cope-meter .bar .fill { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--amber) 60%, var(--red)); }

/* duck of the week feature box */
.duck-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  background: repeating-linear-gradient(-45deg, rgba(229, 55, 43, 0.06) 0 10px, transparent 10px 20px), linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--red-deep);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.duck-feature .duckemoji { font-size: 52px; line-height: 1; }
.duck-feature h3 { font-family: var(--f-display); text-transform: uppercase; margin: 0 0 4px; color: var(--red); font-size: 22px; }
.duck-feature p { margin: 0; color: var(--muted); font-size: 14px; }

/* activity feed */
.feed-list { display: flex; flex-direction: column; gap: 10px; }
.feed-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--line); border-left: 3px solid var(--line-2); border-radius: var(--radius); background: var(--panel-2); }
.feed-item[data-type="trade"] { border-left-color: var(--amber); }
.feed-item[data-type="waiver"] { border-left-color: var(--green); }
.feed-item[data-type="free_agent"] { border-left-color: var(--gold-dim); }
.feed-item[data-type="drop"] { border-left-color: var(--red); }
.feed-item .tag { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; color: var(--faint); white-space: nowrap; padding-top: 2px; }
.feed-item .body p { margin: 0; font-size: 13.5px; }
.feed-item .body .ts { display: block; margin-top: 3px; font-size: 11px; color: var(--faint); }

.trending-row { display: flex; flex-wrap: wrap; gap: 8px; }
.trending-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-cond); font-size: 12px; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line); background: var(--panel-2); }
.trending-pill.add { color: var(--green); border-color: rgba(55, 214, 122, 0.35); }
.trending-pill.drop { color: var(--red); border-color: rgba(229, 55, 43, 0.35); }

/* ============================ lore page ============================ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.video-card { background: linear-gradient(180deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--ink-2); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .video-body { padding: 16px 18px 20px; }
.video-card h3 { font-family: var(--f-cond); text-transform: uppercase; font-size: 16px; margin: 0 0 6px; }
.video-card p { margin: 0; color: var(--muted); font-size: 13px; }

.poop-headline {
  position: relative;
  text-align: center;
  padding: 50px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(-45deg, rgba(255, 203, 5, 0.05) 0 12px, transparent 12px 24px), linear-gradient(120deg, var(--ink-2), var(--panel));
}
.poop-headline .kicker { justify-content: center; }
.poop-headline h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(32px, 6vw, 64px); line-height: 0.92; margin: 8px 0 14px; }
.poop-headline h2 .accent { color: var(--gold); }
.poop-headline p { max-width: 720px; margin: 0 auto; color: var(--text); font-size: 16px; }
.poop-headline .quote { margin-top: 16px; font-style: italic; color: var(--gold); font-family: var(--f-cond); font-size: 15px; }

/* pantheon retired-jerseys rafter */
.rafter { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 22px; padding: 10px 0 4px; }
.jersey {
  position: relative;
  text-align: center;
  padding: 26px 12px 16px;
  background: linear-gradient(180deg, var(--panel-2), var(--ink-2));
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-dim);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.jersey .num { font-family: var(--f-display); font-size: 40px; color: var(--gold); line-height: 1; }
.jersey .nm { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; margin-top: 8px; }
.jersey .role { color: var(--faint); font-size: 11px; margin-top: 4px; }

/* commissioner's office block */
.commish-block { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: center; }
.commish-block .prime-shot { aspect-ratio: 1 / 1; }
.commish-block .commish-copy h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 26px; margin: 0 0 10px; }
.commish-block .commish-copy p { color: var(--muted); font-size: 14px; }
.commish-block .commish-copy .quote { color: var(--gold); font-style: italic; font-family: var(--f-cond); }
@media (max-width: 760px) { .commish-block { grid-template-columns: 1fr; } }

/* ============================ Winners Circle timeline ============================ */
.circle-trophy { text-align: center; margin: 0 0 36px; }
.circle-trophy .prime-shot { max-width: 320px; margin: 0 auto; aspect-ratio: 3 / 4; box-shadow: 0 0 70px 10px rgba(255, 203, 5, 0.25), var(--shadow); }
.circle-trophy h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 22px; color: var(--gold); margin: 14px 0 2px; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold-deep), var(--line)); }
.timeline-stop { position: relative; padding-bottom: 36px; }
.timeline-stop:last-child { padding-bottom: 0; }
.timeline-stop::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--gold-dim);
}
.timeline-stop.is-current::before { border-color: var(--red); animation: recblink 2s steps(1) infinite; }
.timeline-stop .season-tag { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--gold); }
.timeline-stop h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 26px; margin: 4px 0 8px; }
.timeline-stop .champ { font-family: var(--f-cond); font-size: 14px; color: var(--text); margin: 0 0 6px; }
.timeline-stop .champ b { color: var(--gold); }
.timeline-stop p.story { margin: 0; color: var(--muted); font-size: 14px; max-width: 640px; }
.timeline-stop .pending { color: var(--faint); font-style: italic; }
.timeline-footnote { font-size: 12px; font-style: italic; color: var(--faint); margin: 10px 0 0; max-width: 640px; }

/* two-league champ pairing within a single timeline stop */
.champ-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 10px 0 12px; max-width: 640px; }
.champ-block { padding: 10px 14px; background: var(--panel-2); border: 1px solid var(--line); border-left: 3px solid var(--accent, var(--gold)); border-radius: var(--radius); }
.champ-block .league-badge { margin-bottom: 6px; }
.champ-block .champ { margin: 0 0 2px; }
.champ-block .champ b { color: var(--accent, var(--gold)); }
.champ-block .champ .handle { color: var(--faint); font-weight: 400; }
.champ-block .runner-up { margin: 0; font-size: 12px; color: var(--muted); }
.timeline-stop .deionbowl-note { font-size: 12px; color: var(--faint); font-style: italic; margin: 8px 0 0; }

/* ============================ IMPEACH THE COMMISH ============================ */
.impeach-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  color: var(--faint);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px 9px;
  margin-left: 8px;
  background: none;
  cursor: pointer;
  vertical-align: middle;
}
.impeach-badge:hover { color: var(--red); border-color: var(--red-deep); }
/* invisible hit-slop — the visible pill stays small/on-brand, but the tap
   target grows to ~44px; a pseudo-element (not a separate DOM node) still
   dispatches its click to the button, and it's the only interactive control
   in the footer credit line so there's no adjacent-target overlap risk. */
.impeach-badge::before { content: ""; position: absolute; inset: -13px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 4, 6, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.modal-box h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 24px; margin: 0 0 10px; color: var(--red); }
.modal-box p { color: var(--muted); font-size: 14px; }
.modal-box .tally { font-family: var(--f-cond); margin: 16px 0; padding: 12px; background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.modal-box .tally b { font-family: var(--f-display); font-size: 24px; color: var(--gold); display: block; }
.modal-box .actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.modal-box .fee-note { font-size: 12px; font-style: italic; color: var(--faint); margin-top: 12px; }

/* ============================ 404 ============================ */
.notfound {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 28px;
}
.notfound .glasses { font-size: 56px; }
.notfound h1 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(40px, 9vw, 90px); margin: 10px 0; line-height: 0.92; }
.notfound p { color: var(--muted); max-width: 480px; }

/* ============================ Prime Mode (Konami easter egg) ============================ */
body.prime-mode { animation: primemode-pulse 2.4s ease-in-out infinite; }
@keyframes primemode-pulse {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.5) brightness(1.08); }
}
body.prime-mode .hero h1, body.prime-mode .section h2 { text-shadow: 0 0 24px rgba(255, 203, 5, 0.6); }
@media (prefers-reduced-motion: reduce) {
  body.prime-mode { animation: none; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-copy { animation: none; }
  .kicker.rec::after { animation: none; }
  html { scroll-behavior: auto; }
  .pot-therm__fill { animation: none; }
  .bowl-center .prime-shot { animation: none; }
  .timeline-stop.is-current::before { animation: none; }
}
