/* =====================================================================
   esportswagerin.com — Broadcast esports newsroom
   Light-dominant ice-blue paper system, condensed-scoreboard Inter,
   technical-grid geometry. No external fonts beyond Inter + Inter Tight.
   ===================================================================== */

:root {
  --primary: #1769E8;          /* cobalt action */
  --primary-700: #0F4FB8;
  --primary-50: #E8F1FF;
  --accent: #0EA5A8;           /* cyan data highlight */
  --accent-700: #0A7A7C;
  --accent-50: #DEF6F6;
  --background: #F4F8FF;       /* ice-blue editorial canvas */
  --surface: #FFFFFF;
  --surface-2: #E8F1FF;        /* tonal band */
  --surface-3: #DCE7F8;        /* deeper tonal band */
  --ink: #13213A;              /* dark ink */
  --ink-2: #2A3A57;
  --muted: #52647C;
  --muted-2: #8497B0;
  --border: #C9D9F2;
  --border-strong: #92AEDC;
  --live: #E2345F;
  --warn: #B9750B;
  --ok: #0EA5A8;
  --shadow-card: 0 1px 0 rgba(19,33,58,0.04), 0 8px 24px -8px rgba(19,33,58,0.08);
  --shadow-pop: 0 4px 16px -4px rgba(23,105,232,0.20), 0 1px 0 rgba(19,33,58,0.05);
  --r-card: 12px;
  --r-input: 6px;
  --r-pill: 999px;
  --container: 1280px;
  --gutter: clamp(16px, 3.2vw, 32px);
  --header-h: 72px;
  --font-sans: "Inter", "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "JetBrains Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11", "tnum";
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--primary-700); text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .4em; color: var(--ink); font-weight: 700; letter-spacing: -0.012em; line-height: 1.18; }
h1 { font-size: clamp(28px, 4.6vw, 56px); letter-spacing: -0.025em; line-height: 1.04; }
h2 { font-size: clamp(22px, 3vw, 34px); letter-spacing: -0.018em; line-height: 1.14; }
h3 { font-size: clamp(18px, 2vw, 22px); line-height: 1.22; }
h4 { font-size: 16px; line-height: 1.3; }
p  { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
ul li, ol li { margin: 0 0 .35em; }
hr { border: 0; border-top: 1px solid var(--border); margin: 28px 0; }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-pop); }
.btn--primary:hover { background: var(--primary-700); color: #fff; }
.btn--ghost { background: transparent; color: var(--primary-700); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface-2); color: var(--primary-700); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); color: #fff; }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--block { display: flex; width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent-700);
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 6px;
  font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Header / masthead ---------- */
.masthead {
  position: sticky; top: 0; z-index: 310;
  background: rgba(244,248,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.masthead__bar { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; letter-spacing: 0.04em;
}
.brand__name { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; line-height: 1; }
.brand__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  display: inline-flex; align-items: center; height: 36px;
  padding: 0 12px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  border-radius: 8px;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }
.main-nav a.is-current { color: var(--primary-700); background: var(--primary-50); }
.header-cta { display: inline-flex; align-items: center; gap: 8px; margin-left: 8px; }
.header-cta-ghost { display: none; }
@media (min-width: 1024px) {
  .header-cta-ghost { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--border); border-radius: 8px;
  position: relative; z-index: 320;
  margin-left: 8px;
}
.hamburger span {
  display: block; position: absolute;
  left: 9px; right: 9px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .15s ease, top .25s ease;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 86vw);
  background: var(--surface); border-left: 1px solid var(--border);
  box-shadow: -16px 0 40px -8px rgba(19,33,58,0.18);
  transform: translateX(100%); transition: transform .28s ease;
  z-index: 300;
  display: flex; flex-direction: column;
  padding: 88px 20px 24px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer li { margin: 0; }
.mobile-drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 6px; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.mobile-drawer a:hover { background: var(--surface-2); text-decoration: none; }
.mobile-drawer .drawer-foot { margin-top: auto; padding-top: 18px; display: grid; gap: 10px; }
.scrim {
  position: fixed; inset: 0; background: rgba(19,33,58,0.36);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
  z-index: 290;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Ticker masthead (live tournament ticker) ---------- */
.ticker {
  background: var(--ink); color: #DCE7F8;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.ticker__row {
  display: flex; align-items: center; gap: 18px;
  padding: 8px 0;
  white-space: nowrap;
  animation: tickerScroll 42s linear infinite;
}
.ticker__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 12px; height: 24px;
  border: 1px solid rgba(220,231,248,0.16); border-radius: var(--r-pill);
  color: #DCE7F8;
}
.ticker__chip--live { color: #FFD1DA; border-color: rgba(226,52,95,0.5); }
.ticker__chip--live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(226,52,95,0.6); animation: pulse 1.6s ease-out infinite; }
.ticker__chip--soon { color: #BFE4F0; border-color: rgba(14,165,168,0.45); }
.ticker__chip--new { color: #FFE6BD; border-color: rgba(185,117,11,0.5); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(226,52,95,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(226,52,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,52,95,0); }
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section { padding: clamp(40px, 6vw, 72px) 0; }
section.is-tight { padding: clamp(28px, 4vw, 48px) 0; }
.section__head { max-width: 65ch; margin-bottom: 28px; }
.section__head h2 { margin: 0 0 10px; }
.section__head p { color: var(--ink-2); margin: 0; }
.section__head--split {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  max-width: none;
}
.section__head--split p { max-width: 56ch; }

.band { background: var(--surface-2); }
.band--deep { background: var(--surface-3); }
.band--ink { background: var(--ink); color: #DCE7F8; }
.band--ink h2, .band--ink h3, .band--ink h4 { color: #fff; }
.band--ink a { color: #9CC0F4; }
.band--ink .eyebrow { color: #7BD8DC; }

/* ---------- Hero: mosaic-newsroom ---------- */
.mosaic-hero { padding-top: 24px; padding-bottom: 16px; }
.mosaic-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.mosaic-hero__lead {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  min-height: 380px;
}
.mosaic-hero__lead-img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  filter: saturate(1.02);
}
.mosaic-hero__lead-img-wrap { position: relative; padding-bottom: 62%; min-height: 260px; overflow: hidden; }
.mosaic-hero__lead-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mosaic-hero__lead-body { position: relative; z-index: 2; margin-top: auto; padding: 20px 24px 24px; background: linear-gradient(180deg, rgba(19,33,58,0) 0%, rgba(19,33,58,0.85) 65%, rgba(19,33,58,0.95) 100%); color: #fff; }
.mosaic-hero__lead-body h1 { color: #fff; margin: 0 0 8px; }
.mosaic-hero__lead-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #BFE4F0; margin-bottom: 12px; }
.mosaic-hero__lead-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; }
.mosaic-hero__lead-lede { color: #DCE7F8; margin: 0 0 16px; max-width: 56ch; font-size: 15px; line-height: 1.55; }
.mosaic-hero__lead-cta { display: flex; gap: 8px; flex-wrap: wrap; }

.mosaic-hero__frag {
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mosaic-hero__frag-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.mosaic-hero__frag-body { padding: 14px 16px; }
.mosaic-hero__frag-meta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-700); margin-bottom: 6px; }
.mosaic-hero__frag h3 { font-size: 16px; line-height: 1.25; margin: 0 0 6px; }
.mosaic-hero__frag p { color: var(--muted); font-size: 13.5px; margin: 0; }
.mosaic-hero__frag--patch { background: var(--ink); color: #DCE7F8; border-color: transparent; }
.mosaic-hero__frag--patch h3 { color: #fff; }
.mosaic-hero__frag--patch p { color: #B0C2DB; }
.mosaic-hero__frag--patch .mosaic-hero__frag-meta { color: #7BD8DC; }
.mosaic-hero__frag--patch-img { aspect-ratio: 16 / 9; opacity: 0.92; }

@media (max-width: 900px) {
  .mosaic-hero__grid { grid-template-columns: 1fr; }
  .mosaic-hero__lead { grid-column: 1; grid-row: auto; min-height: 320px; }
  .mosaic-hero__lead-body { padding: 14px 16px 18px; }
}

/* ---------- Category rail ---------- */
.cat-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.cat-rail a {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  text-decoration: none; color: var(--ink);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.cat-rail a:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-pop); text-decoration: none; }
.cat-rail__num { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; color: var(--accent-700); }
.cat-rail__title { font-size: 17px; font-weight: 700; line-height: 1.2; }
.cat-rail__count { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
@media (max-width: 1024px) { .cat-rail { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-rail { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Split-axis timeline (signature) ---------- */
.split-axis {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px;
}
.split-axis__rail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.split-axis__rail-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.split-axis__row {
  display: grid; grid-template-columns: 64px 1fr auto;
  align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.split-axis__row:last-child { border-bottom: 0; }
.split-axis__time {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  color: var(--ink); letter-spacing: 0.02em;
}
.split-axis__time small { display: block; font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.split-axis__title { font-size: 15px; font-weight: 600; line-height: 1.25; color: var(--ink); }
.split-axis__title small { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 4px; letter-spacing: 0.06em; }
.split-axis__tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px; border-radius: var(--r-pill); border: 1px solid var(--border); color: var(--muted);
  white-space: nowrap;
}
.split-axis__tag--live { color: var(--live); border-color: rgba(226,52,95,0.4); background: rgba(226,52,95,0.06); }
.split-axis__tag--soon { color: var(--accent-700); border-color: rgba(14,165,168,0.4); background: rgba(14,165,168,0.07); }
.split-axis__tag--final { color: var(--ink); border-color: var(--border-strong); background: var(--surface-2); }

.split-axis__editor {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 22px;
}
.split-axis__editor h3 { font-size: 18px; margin: 0 0 8px; }
.split-axis__editor .byline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-700); margin-bottom: 14px; }
.split-axis__editor p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; margin: 0 0 12px; }
.split-axis__editor .pull { font-size: 15px; color: var(--ink); border-left: 3px solid var(--primary); padding: 4px 0 4px 14px; margin: 14px 0; font-weight: 600; }

@media (max-width: 900px) { .split-axis { grid-template-columns: 1fr; } }

/* ---------- Calendar ledger ---------- */
.ledger {
  width: 100%;
  border-collapse: separate; border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  font-size: 14px;
}
.ledger thead th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  padding: 12px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.ledger tbody td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.ledger tbody tr:last-child td { border-bottom: 0; }
.ledger tbody tr:hover { background: var(--surface-2); }
.ledger .col-event { font-weight: 600; color: var(--ink); }
.ledger .col-event small { display: block; color: var(--muted); font-weight: 500; margin-top: 2px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; }
.ledger .col-date { font-family: var(--font-mono); font-weight: 600; color: var(--ink); white-space: nowrap; }
.ledger .col-region, .ledger .col-format { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); white-space: nowrap; }
.ledger .col-source { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; }
.ledger .src-confirmed { color: var(--accent-700); }
.ledger .src-pending { color: var(--warn); }
.ledger .src-rumor { color: var(--muted); }
@media (max-width: 800px) {
  .ledger thead { display: none; }
  .ledger, .ledger tbody, .ledger tr, .ledger td { display: block; }
  .ledger tr { border-bottom: 1px solid var(--border); padding: 12px 14px; }
  .ledger tbody tr:last-child { border-bottom: 0; }
  .ledger td { border: 0; padding: 4px 0; }
  .ledger td::before { content: attr(data-label); display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
}

/* ---------- Dossier cards (teams & players) ---------- */
.dossier-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.dossier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.dossier__media { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.dossier__body { padding: 16px 18px 18px; }
.dossier__chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.dossier__chips span { padding: 3px 8px; border-radius: var(--r-pill); border: 1px solid var(--border); color: var(--muted); }
.dossier__chips .chip-region { color: var(--accent-700); border-color: rgba(14,165,168,0.3); background: var(--accent-50); }
.dossier__chips .chip-verify { color: var(--primary-700); border-color: rgba(23,105,232,0.3); background: var(--primary-50); }
.dossier h3 { margin: 0 0 6px; font-size: 18px; }
.dossier p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }
.dossier__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.dossier__row dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0; }
.dossier__row dd { margin: 0; font-weight: 700; color: var(--ink); font-size: 14px; }

@media (max-width: 980px) { .dossier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .dossier-grid { grid-template-columns: 1fr; } }

/* ---------- Patch workshop (split text) ---------- */
.patch-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
.patch-notes {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 22px 22px 8px;
}
.patch-notes h3 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-700); margin: 0 0 14px; }
.patch-notes ol { padding-left: 1.2em; }
.patch-notes li { margin-bottom: 14px; font-size: 14.5px; color: var(--ink-2); }
.patch-notes li b { color: var(--ink); }
.patch-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }

.patch-reading { display: flex; flex-direction: column; gap: 14px; }
.patch-reading__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 18px 20px;
}
.patch-reading__card .label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.patch-reading__card h4 { font-size: 16px; margin: 0 0 6px; }
.patch-reading__card p { font-size: 14px; color: var(--ink-2); margin: 0; }

@media (max-width: 900px) { .patch-grid { grid-template-columns: 1fr; } }

/* ---------- Tactical map notebook ---------- */
.tactical {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px; align-items: start;
}
.tactical__board {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.tactical__board img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.tactical__board-foot { padding: 14px 18px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }

.tactical__notes { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 20px 22px; }
.tactical__notes h3 { font-size: 18px; margin: 0 0 6px; }
.tactical__notes ol { margin: 0; padding-left: 1.2em; }
.tactical__notes li { margin-bottom: 10px; font-size: 14.5px; color: var(--ink-2); }
.tactical__notes li b { color: var(--ink); }

@media (max-width: 900px) { .tactical { grid-template-columns: 1fr; } }

/* ---------- Match preview ledger ---------- */
.match-list { display: grid; gap: 12px; }
.match {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px 18px;
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) auto;
  gap: 18px; align-items: center;
}
.match__pair { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.match__team { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.match__team small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); margin-left: 4px; }
.match__vs { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent-700); padding: 2px 8px; border: 1px solid rgba(14,165,168,0.3); border-radius: var(--r-pill); background: var(--accent-50); }
.match__meta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--muted); }
.match__meta b { color: var(--ink); font-weight: 600; }
.match__verdict { font-size: 13.5px; color: var(--ink-2); }

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

/* ---------- Streaming viewing matrix ---------- */
.matrix {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.matrix__row {
  display: grid; grid-template-columns: minmax(120px, 1.2fr) repeat(4, minmax(0, 1fr)) minmax(80px, 0.6fr);
  border-bottom: 1px solid var(--border);
}
.matrix__row:last-child { border-bottom: 0; }
.matrix__cell {
  padding: 12px 14px;
  font-size: 13.5px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.matrix__cell:last-child { border-right: 0; }
.matrix__row--head .matrix__cell {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
}
.matrix__platform { font-weight: 700; color: var(--ink); }
.tick { width: 14px; height: 14px; border-radius: 50%; display: inline-block; background: var(--accent); position: relative; }
.tick::after { content:""; position: absolute; left: 4px; top: 7px; width: 4px; height: 2px; background: #fff; transform: rotate(45deg); }
.tick::before { content:""; position: absolute; left: 6px; top: 6px; width: 8px; height: 2px; background: #fff; transform: rotate(-45deg); }
.cross { width: 14px; height: 14px; border-radius: 50%; background: var(--muted-2); display: inline-block; opacity: .55; }
@media (max-width: 900px) {
  .matrix { overflow-x: auto; }
  .matrix__row { min-width: 720px; }
}

/* ---------- Film room ---------- */
.film {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.film__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.film__card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.film__body { padding: 16px 18px; }
.film__chip { display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px; border-radius: var(--r-pill); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-700); background: var(--accent-50); border: 1px solid rgba(14,165,168,0.3); margin-bottom: 8px; }
.film__card h4 { font-size: 16px; margin: 0 0 6px; }
.film__card p { font-size: 13.5px; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .film { grid-template-columns: 1fr; } }

/* ---------- Evidence register ---------- */
.evidence { display: grid; gap: 12px; }
.evidence__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--r-card);
  padding: 16px 18px;
  display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 18px; align-items: start;
}
.evidence__level { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-700); }
.evidence__item h4 { font-size: 15px; margin: 0 0 4px; }
.evidence__item p { font-size: 13.5px; color: var(--ink-2); margin: 0; }
.evidence__item .source { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 6px; }
@media (max-width: 640px) { .evidence__item { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Responsible play banner ---------- */
.responsible {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center;
}
.responsible__badge { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--accent-700); padding: 6px 12px; border: 1px solid rgba(14,165,168,0.4); border-radius: var(--r-pill); background: var(--accent-50); display: inline-block; margin-bottom: 12px; }
.responsible h3 { font-size: 22px; margin: 0 0 8px; }
.responsible p { color: var(--ink-2); margin: 0 0 14px; max-width: 56ch; font-size: 14.5px; }
.responsible__route {
  font-family: var(--font-mono); font-size: 12px;
  padding: 12px 16px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-card);
  background: var(--surface-2);
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.responsible__route code { background: var(--surface); padding: 3px 7px; border-radius: 4px; border: 1px solid var(--border); }
@media (max-width: 720px) { .responsible { grid-template-columns: 1fr; } }

/* ---------- Reader questions desk (tabbed) ---------- */
.tabs { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; }
.tabs__bar {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  overflow-x: auto;
}
.tabs__btn {
  background: transparent; border: 0;
  padding: 14px 18px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.tabs__btn:hover { color: var(--ink); }
.tabs__btn[aria-selected="true"] { color: var(--primary-700); border-bottom-color: var(--primary); background: var(--surface); font-weight: 700; }
.tabs__panel { padding: 20px 24px 24px; display: none; }
.tabs__panel.is-active { display: block; }
.tabs__panel h4 { font-size: 15px; margin: 18px 0 6px; }
.tabs__panel h4:first-child { margin-top: 0; }
.tabs__panel p { font-size: 14.5px; color: var(--ink-2); margin: 0 0 12px; }
.tabs__panel ul { padding-left: 1.2em; }
.tabs__panel li { font-size: 14px; color: var(--ink-2); margin-bottom: 6px; }

/* ---------- Editorial colophon ---------- */
.colophon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px; align-items: start;
}
.colophon h3 { font-size: 22px; margin: 0 0 10px; }
.colophon p { color: var(--ink-2); margin: 0 0 12px; font-size: 14.5px; }
.colophon dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 14px; }
.colophon dt { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); align-self: center; }
.colophon dd { margin: 0; color: var(--ink); }
@media (max-width: 900px) { .colophon { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #B0C2DB;
  padding: 56px 0 24px;
  margin-top: 24px;
}
.footer a { color: #9CC0F4; }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 28px; padding-bottom: 36px; border-bottom: 1px solid rgba(220,231,248,0.12); }
.footer h4 { color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 14px; }
.footer__brand p { font-size: 14px; max-width: 38ch; color: #B0C2DB; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 0 0 8px; font-size: 14px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #8497B0; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky affiliate CTA ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 250;
  display: none;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 28px -8px rgba(19,33,58,0.45), 0 0 0 1px rgba(220,231,248,0.18);
}
.sticky-cta.is-shown { display: block; }
.sticky-cta a {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.sticky-cta a:hover { color: #fff; text-decoration: none; }
.sticky-cta small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: #7BD8DC; display: block; font-weight: 500; }
.sticky-cta__icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--primary); color: #fff; border-radius: 50%; font-weight: 800; }
.sticky-cta__label { font-size: 14.5px; line-height: 1.1; }

@media (max-width: 1024px) {
  body { padding-bottom: 80px; }
  .sticky-cta { display: block; }
}

@media (min-width: 1024px) {
  .sticky-cta { display: none !important; }
  body { padding-bottom: 0; }
}

/* ---------- Inline image row ---------- */
.inline-image {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px; align-items: center;
  margin: 28px 0;
}
.inline-image img { width: 100%; height: auto; border-radius: var(--r-card); border: 1px solid var(--border); aspect-ratio: 16/10; object-fit: cover; }
.inline-image figcaption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); margin-top: 8px; }
@media (max-width: 800px) { .inline-image { grid-template-columns: 1fr; } }

/* ---------- Helpers ---------- */
.mono { font-family: var(--font-mono); }
.muted { color: var(--muted); }
.text-accent { color: var(--accent-700); }
.text-primary { color: var(--primary-700); }
.flex-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.center { text-align: center; }

/* ---------- Responsive global ---------- */
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .masthead__bar { gap: 10px; }
  .brand { min-width: 0; }
  .brand > span:last-child { min-width: 0; }
  .brand__name, .brand__tag { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-cta { margin-left: auto; min-width: 0; }
  .header-cta .btn { display: none; }
  .hamburger { flex: 0 0 40px; margin-left: 0; }
  .mobile-drawer { width: min(360px, 86vw); max-width: 100vw; }
  body { overflow-x: clip; }
}
@media (max-width: 390px) {
  .brand__tag { display: none; }
  .brand__name { font-size: 15px; }
}
@media (max-width: 720px) {
  h1 { font-size: clamp(26px, 7.5vw, 36px); }
}

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

/* ---------- Print ---------- */
@media print {
  .masthead, .sticky-cta, .hamburger, .mobile-drawer, .scrim, .ticker { display: none !important; }
  body { padding-bottom: 0; }
}
