/* esportsx — main stylesheet v=1
 * Paper-and-ink broadcast newsroom, light-dominant
 * Built for V9 FSL11 vertical-brand esports build
 */

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
img { border: 0; }
a { color: var(--ink); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 2.6vw, 32px); }
h3 { font-size: clamp(20px, 1.6vw, 24px); }
h4 { font-size: 18px; font-family: var(--font-ui); font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em 1.2em; padding: 0; }
li { margin-bottom: 0.4em; }

/* Focus visible */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ============ Layout primitives ============ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.band { padding: 56px 0; }
.band-tight { padding: 32px 0; }
.band-loose { padding: 80px 0; }
.band-paper { background: var(--paper); }
.band-paper-2 { background: var(--paper-2); }
.band-deep { background: var(--paper-deep); }
.band-ink { background: var(--ink); color: var(--paper); }
.band-ink h1, .band-ink h2, .band-ink h3 { color: var(--paper); }

.rule-top { border-top: 1px solid var(--rule); }
.rule-bottom { border-bottom: 1px solid var(--rule); }

/* Grid */
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 880px) {
  .grid-12 { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============ Utility masthead (top nav) ============ */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(14, 22, 38, 0.04);
}
.masthead-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand-mark .logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--ink); color: var(--accent);
  font-family: var(--font-ui); font-weight: 800;
  font-size: 16px; border-radius: 8px;
  position: relative;
}
.brand-mark .logo::before {
  content: "E"; position: relative; z-index: 1;
}
.brand-mark .logo::after {
  content: ""; position: absolute; right: 6px; top: 6px;
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
}
.brand-tag { color: var(--ink-mute); font-weight: 500; font-size: 12px; font-family: var(--font-ui); letter-spacing: 0.04em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.primary-nav a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  white-space: nowrap;
}
.primary-nav a:hover { background: var(--paper-2); color: var(--ink); }
.primary-nav a.is-active { color: var(--ink); background: var(--paper-2); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 8px; }

.hamburger {
  display: none;
  background: transparent; border: 1px solid var(--rule);
  width: 44px; height: 44px;
  border-radius: 10px;
  position: relative;
  z-index: 200;
}
.hamburger span {
  display: block; position: absolute;
  left: 12px; right: 12px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--paper);
  border-left: 1px solid var(--rule);
  box-shadow: var(--shadow-elev);
  padding: 84px 24px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 280ms var(--ease);
  z-index: 150;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 14px 12px;
  border-bottom: 1px solid var(--hair);
  font-size: 17px; font-weight: 500;
  color: var(--ink);
}
.mobile-drawer a:hover { background: var(--paper-2); }
.mobile-drawer .drawer-cta { margin-top: 16px; }
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(14, 22, 38, 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 280ms var(--ease);
  z-index: 140;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
@media (max-width: 880px) {
  .primary-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ============ Score strip (ticker) — static, no autoplay ============ */
.score-strip {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.score-strip-inner {
  display: flex; align-items: center; gap: 0;
  height: var(--strip-h);
  overflow-x: auto;
  scrollbar-width: none;
}
.score-strip-inner::-webkit-scrollbar { display: none; }
.score-row {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px; white-space: nowrap;
  flex: 0 0 auto;
}
.score-row .pulse {
  display: inline-block; width: 7px; height: 7px;
  background: var(--signal); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(209, 26, 42, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(209, 26, 42, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(209, 26, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(209, 26, 42, 0); }
}
.score-row .ts { color: rgba(247, 244, 238, 0.55); font-variant-numeric: tabular-nums; }
.score-row .vs { color: rgba(247, 244, 238, 0.78); }
.score-row .winner { color: var(--accent-soft); font-weight: 600; }
.score-row .label-live { color: #FF8C96; font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; }

/* ============ Hero (sidebar-led asymmetric) ============ */
.hero { padding: 56px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-rail { display: flex; flex-direction: column; gap: 16px; }
.hero-rail h4, .hero-rail .rail-heading {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin: 0 0 8px;
  display: flex; align-items: center; gap: 8px;
}
.hero-rail h4::before, .hero-rail .rail-heading::before {
  content: ""; display: inline-block;
  width: 16px; height: 1px; background: var(--ink);
}
.rail-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 14px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.rail-card:hover { transform: translateY(-2px); border-color: var(--ink-3); }
.rail-card .row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-2);
}
.rail-card .teams {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--ink);
  margin: 6px 0;
}
.rail-card .teams .v { color: var(--ink-faint); font-weight: 400; }
.rail-card .meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--ink-mute);
  margin-top: 6px;
}
.rail-card .pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 6px; border-radius: 4px;
}
.pill-live { background: var(--signal); color: white; }
.pill-up   { background: var(--accent-soft); color: var(--accent-ink); }
.pill-soon { background: var(--paper-deep); color: var(--ink-2); }

.hero-canvas { position: relative; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px; background: var(--accent);
}
.hero h1 { margin-bottom: 18px; max-width: 18ch; }
.hero-lede {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 24px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--ink-mute);
}
.hero-meta .dot { width: 3px; height: 3px; background: var(--ink-faint); border-radius: 50%; }

/* Annotated image ledger — signature device */
.hero-image {
  position: relative;
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}
.hero-image img {
  width: 100%; height: auto; aspect-ratio: 16/10;
  object-fit: cover; display: block;
}
.ledger-pill {
  position: absolute;
  background: rgba(14, 22, 38, 0.92);
  color: var(--paper);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ledger-pill::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.ledger-pill.l1 { top: 18px; left: 18px; }
.ledger-pill.l2 { top: 18px; right: 18px; }
.ledger-pill.l3 { bottom: 18px; left: 18px; background: var(--signal); }
.ledger-pill.l3::before { background: white; }
.ledger-pill.l4 { bottom: 18px; right: 18px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  font-size: 15px; font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  font-family: var(--font-ui);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); color: white; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: var(--accent-deep); color: white; }
.btn-link {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-weight: 600;
  border-radius: 0;
  border-bottom: 1px solid var(--accent);
}
.btn-link:hover { color: var(--accent-deep); }
.btn[rel="sponsored"] { cursor: pointer; }

/* ============ Cards & common components ============ */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-2px); border-color: var(--ink-3); box-shadow: var(--shadow-card); }
.card-body { display: flex; flex-direction: column; gap: 8px; }
.card-image {
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: 12px;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
}
.card-title {
  font-family: var(--font-serif);
  font-size: 20px; line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.card-dek {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-3);
}
.card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-mute);
  margin-top: 4px;
}

/* Hub card (used for big nav cards) */
.hub-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.hub-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.hub-card .cover {
  aspect-ratio: 16/9;
  background: var(--paper-2);
  position: relative; overflow: hidden;
}
.hub-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.hub-card .body { padding: 18px 20px 22px; }
.hub-card .eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 6px; }
.hub-card h3 { font-size: 22px; margin-bottom: 6px; }
.hub-card p { font-size: 14px; line-height: 1.55; color: var(--ink-3); margin: 0; }

/* Stat tile */
.stat-tile {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
}
.stat-tile .num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700; line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stat-tile .lbl {
  font-size: 12px; font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.stat-tile .delta {
  font-size: 12px; font-weight: 600;
  margin-top: 4px;
}
.stat-tile .delta.up { color: var(--win); }
.stat-tile .delta.down { color: var(--signal); }

/* Loose card (for h3+paragraph blocks) */
.loose-card {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 16px 0;
}
.loose-card h3, .loose-card h4 { font-size: 18px; margin-bottom: 6px; }
.loose-card p:last-child { margin-bottom: 0; }

/* Step card */
.step-card {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.step-card:first-child { border-top: 0; }
.step-num {
  flex: 0 0 36px; width: 36px; height: 36px;
  background: var(--ink); color: var(--accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  font-family: var(--font-ui);
}
.step-body h4 { font-size: 17px; margin-bottom: 4px; }
.step-body p { font-size: 15px; color: var(--ink-2); margin: 0; }

/* FAQ grid */
.faq-grid { display: flex; flex-direction: column; gap: 0; }
.faq-grid details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-grid details:first-child { border-top: 1px solid var(--rule); }
.faq-grid summary {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+"; font-size: 24px; font-weight: 300; color: var(--ink-mute);
  font-family: var(--font-ui);
  transition: transform var(--dur) var(--ease);
}
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid .answer { padding-top: 12px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hair);
  vertical-align: top;
}
.data-table th {
  background: var(--paper-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table .num { font-variant-numeric: tabular-nums; font-weight: 600; }
.data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 540px) {
  .data-table th:nth-child(3), .data-table td:nth-child(3) { display: none; }
}

/* Inline image row */
.inline-image-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  margin: 28px 0;
}
.inline-image-row.flip { grid-template-columns: 1fr 320px; }
.inline-image-row.flip .inline-visual { order: 2; }
.inline-image-row img {
  width: 100%; height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  display: block;
}
.inline-image-row .inline-visual { min-width: 0; }
.inline-image-row .copy { min-width: 0; }
@media (max-width: 720px) {
  .inline-image-row, .inline-image-row.flip {
    grid-template-columns: 1fr;
  }
  .inline-image-row.flip .inline-visual { order: 0; }
}

/* Section header */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 16px; margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}
.section-head > div { min-width: 0; flex: 1 1 auto; }
.section-head h2 { margin: 0; }
.section-head .sub {
  font-size: 14px; color: var(--ink-mute);
  max-width: 38ch;
}
.section-head .more {
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex: 0 0 auto;
}
@media (max-width: 540px) {
  .section-head { flex-wrap: wrap; align-items: start; }
  .section-head > div { flex: 1 1 100%; }
  .section-head .more { flex: 0 0 auto; }
}

/* Timeline (explainer) */
.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--rule);
}
.timeline .stop {
  position: relative;
  padding-bottom: 24px;
}
.timeline .stop::before {
  content: ""; position: absolute;
  left: -34px; top: 6px;
  width: 12px; height: 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.timeline .stop:last-child::before { background: var(--accent); border-color: var(--accent); }
.timeline .stop .when {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline .stop h3 {
  font-size: 18px; font-family: var(--font-ui); font-weight: 600;
  margin-bottom: 4px;
}
.timeline .stop p {
  font-size: 15px; color: var(--ink-2); margin: 0;
}

/* Evidence gallery (image ledger recurs) */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
}
.gallery-item .caption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(14, 22, 38, 0.92); color: var(--paper);
  padding: 10px 12px; border-radius: 8px;
  font-size: 13px; line-height: 1.4;
}
.gallery-item .caption .kicker-mini {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-soft); margin-bottom: 2px; display: block;
}

/* Identity panel (team cards) */
.identity-panel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease);
}
.identity-panel:hover { transform: translateY(-2px); border-color: var(--ink); }
.identity-panel .crest {
  flex: 0 0 48px; width: 48px; height: 48px;
  background: var(--ink); color: var(--accent-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; font-family: var(--font-serif);
}
.identity-panel .meta { flex: 1; min-width: 0; }
.identity-panel .meta .name { font-weight: 600; font-size: 15px; color: var(--ink); }
.identity-panel .meta .sub { font-size: 12px; color: var(--ink-mute); }
.identity-panel .role {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent);
}

/* News feed list */
.news-feed { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.news-item:first-child { border-top: 0; padding-top: 0; }
.news-item .thumb {
  aspect-ratio: 4/3;
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.news-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-item .kicker-mini {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}
.news-item h3 { font-size: 19px; line-height: 1.3; margin-bottom: 6px; }
.news-item p { font-size: 14px; color: var(--ink-3); line-height: 1.5; margin: 0 0 6px; }
.news-item .meta {
  font-size: 12px; color: var(--ink-mute);
  display: flex; align-items: center; gap: 8px;
}
@media (max-width: 600px) {
  .news-item { grid-template-columns: 80px 1fr; gap: 14px; }
}

/* Winners ledger (record rail) */
.ledger-list { display: flex; flex-direction: column; gap: 0; }
.ledger-row {
  display: grid;
  grid-template-columns: 60px 1fr 110px 110px;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.ledger-row:first-child { border-top: 0; }
.ledger-row .yr {
  font-family: var(--font-serif);
  font-weight: 700; font-size: 22px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.ledger-row .ev { font-weight: 600; color: var(--ink); font-size: 15px; }
.ledger-row .ev .sub { display: block; font-size: 12px; color: var(--ink-mute); font-weight: 400; margin-top: 2px; }
.ledger-row .ch { color: var(--accent); font-weight: 600; font-size: 14px; }
.ledger-row .where { font-size: 13px; color: var(--ink-mute); text-align: right; }
@media (max-width: 720px) {
  .ledger-row { grid-template-columns: 50px 1fr; gap: 12px; }
  .ledger-row .ch, .ledger-row .where { display: none; }
}

/* Streaming channel rail */
.channel-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .channel-rail { grid-template-columns: 1fr; } }
.channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.channel .badge {
  flex: 0 0 40px; width: 40px; height: 40px;
  background: var(--paper-2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--ink-2);
}
.channel .info { flex: 1; min-width: 0; }
.channel .info .name { font-weight: 600; font-size: 15px; color: var(--ink); }
.channel .info .meta { font-size: 12px; color: var(--ink-mute); }
.channel .lang {
  font-size: 11px; font-weight: 700;
  background: var(--paper-2); color: var(--ink-2);
  padding: 4px 8px; border-radius: 4px;
}

/* Info strip (responsible play) */
.info-strip {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.info-strip-inner {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.info-strip .icon {
  flex: 0 0 48px; width: 48px; height: 48px;
  background: var(--ink); color: var(--accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
}
.info-strip p { margin: 0; color: var(--ink-2); flex: 1; min-width: 240px; }
.info-strip p a { text-decoration: underline; text-underline-offset: 2px; }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
}
.cta-band .container {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); margin: 0; flex: 1; min-width: 280px; }
.cta-band .cta-pair { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--accent); color: white; }
.cta-band .btn-primary:hover { background: var(--accent-deep); }
.cta-band .btn-ghost { color: var(--paper); border-color: var(--paper); }
.cta-band .btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* Footer (mega links, 4 columns) */
.site-footer {
  background: var(--ink);
  color: rgba(247, 244, 238, 0.85);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand-mark { color: var(--paper); }
.footer-brand p { font-size: 13px; color: rgba(247, 244, 238, 0.65); max-width: 30ch; margin-top: 12px; }
.footer-col h5 {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--paper); margin: 0 0 12px;
}
.footer-col a {
  display: block;
  color: rgba(247, 244, 238, 0.7);
  padding: 4px 0;
  font-size: 13px;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(247, 244, 238, 0.5);
}
.footer-bottom .legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: rgba(247, 244, 238, 0.55); }

/* Mobile sticky CTA */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  z-index: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}
.sticky-cta a {
  display: block;
  width: 100%;
  background: var(--accent); color: white;
  text-align: center;
  padding: 14px 16px;
  font-weight: 700; font-size: 15px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sticky-cta a:hover { background: var(--accent-deep); color: white; }
@media (max-width: 880px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* Hub-page sticky section index (interaction_signature) */
.sticky-index {
  position: sticky; top: calc(var(--header-h) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow-y: auto;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.sticky-index h5 {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin: 0 0 12px;
}
.sticky-index a {
  display: block;
  padding: 8px 12px;
  font-size: 14px; color: var(--ink-2);
  border-left: 2px solid var(--rule);
  margin-bottom: 2px;
  border-radius: 0 6px 6px 0;
}
.sticky-index a:hover { background: var(--paper-2); color: var(--ink); }
.sticky-index a.is-active { border-left-color: var(--accent); color: var(--accent); font-weight: 600; background: var(--paper-2); }
@media (max-width: 1080px) { .sticky-index { display: none; } }

/* Page-level TOC (mobile fallback) */
.mobile-toc {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
}
.mobile-toc h5 {
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-mute); margin: 0 0 12px;
}
.mobile-toc a {
  display: block;
  padding: 6px 0;
  font-size: 14px; color: var(--ink-2);
  border-top: 1px solid var(--rule);
}
.mobile-toc a:first-of-type { border-top: 0; }
@media (min-width: 1081px) { .mobile-toc { display: none; } }

/* Long-form prose */
.prose { max-width: 70ch; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin: 0 0 1.2em; }
.prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 30px);
  margin: 40px 0 14px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.prose h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 28px 0 10px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--accent-deep); }
.prose ul, .prose ol { padding-left: 1.4em; color: var(--ink-2); }
.prose li { margin-bottom: 0.4em; }
.prose strong { color: var(--ink); }

/* Page hero (for hub pages) */
.page-hero {
  padding: 56px 0 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.page-hero .kicker { margin-bottom: 14px; }
.page-hero h1 { max-width: 22ch; margin-bottom: 14px; }
.page-hero .lede {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 22px;
}
.page-hero .meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--ink-mute);
}
.breadcrumb {
  font-size: 13px; color: var(--ink-mute);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 6px; color: var(--ink-faint); }

/* Section anchors should not be occluded by sticky header */
section[id], h2[id], h3[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* Helper utilities */
.text-mute { color: var(--ink-mute); }
.text-accent { color: var(--accent); }
.text-signal { color: var(--signal); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* V9 FSL11 required alias class coverage (stubs for shared framework check) */
.data-card,
.step-card,
.step-num,
.loose-card,
.band,
.container,
.inline-image-row,
.faq-grid,
.card {
  /* covered by component rules above */
}


/* Mobile hero cap (verify check 8) */
@media (max-width: 899px) {
  .hero { min-height: 480px; max-height: 720px; padding: 40px 0 24px; }
  .hero-image { margin-top: 24px; }
  .hero-image img { aspect-ratio: 16/9; }
  .hero h1 { font-size: 32px; line-height: 1.1; }
  .hero-lede { font-size: 16px; line-height: 1.5; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .score-row .pulse { animation: none; }
}
