/* JudiToday — daily combat-sport editorial reading room
   Grass Field light palette + Manrope pairing. Sharp editorial geometry. */

:root {
  --primary: #2C7A36;
  --primary-ink: #1F3020;
  --primary-deep: #1A4F22;
  --accent: #B05D00;
  --accent-soft: #F4E1C5;
  --background: #F6FBF3;
  --surface: #FFFFFF;
  --surface-2: #E6F2DF;
  --surface-3: #EDF7E7;
  --text: #1F3020;
  --muted: #5C705D;
  --border: #CBE0C4;
  --border-strong: #1F3020;
  --shadow-card: 0 1px 0 rgba(31,48,32,0.04);
  --shadow-hover: 0 6px 24px rgba(31,48,32,0.08);
  --radius-card: 6px;
  --radius-pill: 999px;
  --rule: 1px solid #CBE0C4;
  --rule-strong: 1px solid #1F3020;
  --container: 1240px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--text);
  font-family: 'Manrope', 'Noto Sans Devanagari', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; height: auto; display: block; }

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

main { min-height: 60vh; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: var(--background);
  border-bottom: var(--rule);
  backdrop-filter: saturate(180%) blur(8px);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-ink);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: -0.04em;
}
.brand-name { color: var(--primary-ink); }
.brand-name em {
  font-style: normal;
  color: var(--primary);
  font-weight: 800;
}
.brand-tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: var(--primary-ink);
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover {
  color: var(--primary);
  text-decoration: none;
  border-bottom-color: var(--primary);
}
.main-nav a.cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-card);
  border-bottom: 0;
}
.main-nav a.cta:hover {
  background: var(--primary-deep);
  color: #fff;
  border-bottom: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: var(--rule-strong);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  z-index: 300;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--primary-ink);
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 0;
  background: var(--background);
  z-index: 200;
  padding: 80px 24px 100px;
  overflow-y: auto;
  display: none;
}
.mobile-drawer[data-open="true"] { display: block; }
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.mobile-drawer nav a {
  color: var(--primary-ink);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: var(--rule);
}
.mobile-drawer .cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-drawer .cta-wrap .btn-primary {
  width: 100%;
  text-align: center;
}

body[data-drawer-open="true"] { overflow: hidden; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-deep);
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--primary-ink);
  border-color: var(--primary-ink);
}
.btn-secondary:hover {
  background: var(--primary-ink);
  color: #fff;
  text-decoration: none;
}
.btn-ghost {
  background: var(--accent);
  color: #fff;
}
.btn-ghost:hover {
  background: #8A4700;
  color: #fff;
  text-decoration: none;
}

/* ===== Dateline strip ===== */
.dateline-strip {
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  border-top: var(--rule-strong);
  border-bottom: var(--rule-strong);
}
.dateline-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.dateline-strip .live-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== Hero (magazine-grid) ===== */
.hero {
  padding: 56px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(36px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--primary-ink);
  margin: 0 0 18px;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
  border: 1px solid var(--primary-ink);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
}
.hero-photo .caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--background);
  border: 1px solid var(--primary-ink);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-ink);
}

/* ===== Trust strip ===== */
.trust-strip {
  border-top: var(--rule-strong);
  border-bottom: var(--rule-strong);
  padding: 26px 0;
  background: var(--surface);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-pillar .num {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 4px;
}
.trust-pillar h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-ink);
  letter-spacing: -0.01em;
}
.trust-pillar p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== Chapter section (signature device) ===== */
.chapter {
  padding: 64px 0;
  border-top: var(--rule);
}
.chapter.tonal {
  background: var(--surface);
  border-top: var(--rule-strong);
}
.chapter.deep {
  background: var(--surface-2);
  border-top: var(--rule-strong);
}
.chapter-head {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 32px;
  margin-bottom: 36px;
  align-items: end;
}
.chapter-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(80px, 11vw, 156px);
  line-height: 0.9;
  color: var(--primary);
  letter-spacing: -0.04em;
}
.chapter-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.chapter h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--primary-ink);
}
.chapter-lede {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
  margin: 0;
}

/* Chapter 01: prediction cards */
.prediction-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.prediction-card {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.prediction-card .portrait {
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
  border-bottom: 1px solid var(--primary-ink);
  overflow: hidden;
}
.prediction-card .portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); }
.prediction-card .body { padding: 18px 18px 20px; }
.prediction-card .match {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.prediction-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.prediction-card p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.verdict-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--surface-2);
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 2px;
}
.verdict-chip.amber { background: var(--accent-soft); border-color: var(--accent); color: #6E3A00; }
.verdict-chip.ink { background: var(--primary-ink); border-color: var(--primary-ink); color: #fff; }

/* Chapter 02: fighter ledger */
.fighter-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
}
.fighter-card {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 20px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
}
.fighter-card .thumb {
  width: 96px;
  height: 120px;
  border: 1px solid var(--primary-ink);
  background: var(--surface-2);
  overflow: hidden;
}
.fighter-card .thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.fighter-card .meta { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.fighter-card h3 { margin: 0 0 6px; font-size: 17px; font-weight: 800; color: var(--primary-ink); line-height: 1.2; }
.fighter-card .record { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.fighter-card .notes { font-size: 13.5px; color: var(--text); line-height: 1.55; margin: 0; }
.fighter-ledger .right-col { display: flex; flex-direction: column; gap: 20px; }

/* Chapter 03: tournament bracket */
.bracket {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 28px;
}
.bracket h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; color: var(--primary-ink); }
.bracket .bracket-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.bracket-tree {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.bracket-col h4 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.bracket-match {
  border: 1px solid var(--primary-ink);
  padding: 12px 14px;
  margin-bottom: 10px;
  background: var(--background);
}
.bracket-match .row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.bracket-match .row + .row { border-top: var(--rule); margin-top: 8px; padding-top: 8px; }
.bracket-match .name { font-weight: 700; color: var(--primary-ink); }
.bracket-match .seed { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.bracket-match .pick { font-weight: 800; color: var(--primary); font-size: 13px; }

/* Chapter 04: tabbed evidence desk */
.tabs {
  border: 1px solid var(--primary-ink);
  background: var(--surface);
}
.tab-strip {
  display: flex;
  border-bottom: 1px solid var(--primary-ink);
  overflow-x: auto;
}
.tab-strip button {
  background: transparent;
  border: 0;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid var(--primary-ink);
}
.tab-strip button[aria-selected="true"] {
  background: var(--primary-ink);
  color: #fff;
}
.tab-panel { padding: 28px; display: none; }
.tab-panel[data-active="true"] { display: block; }
.tab-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}
.tab-panel th, .tab-panel td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: var(--rule);
  word-break: break-word;
  overflow-wrap: break-word;
}
.tab-panel th:nth-child(1), .tab-panel td:nth-child(1) { width: 28%; }
.tab-panel th:nth-child(2), .tab-panel td:nth-child(2) { width: 22%; }
.tab-panel th:nth-child(3), .tab-panel td:nth-child(3) { width: 30%; }
.tab-panel th:nth-child(4), .tab-panel td:nth-child(4) { width: 20%; }
.tab-panel th {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tab-panel td .bar {
  display: inline-block;
  height: 6px;
  background: var(--primary);
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Chapter 05: ruled explainer */
.ruled { background: var(--surface); border: 1px solid var(--primary-ink); padding: 28px; }
.ruled h3 { margin: 0 0 16px; font-size: 20px; font-weight: 800; color: var(--primary-ink); }
.ruled dl { margin: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0 28px; }
.ruled dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 0 6px;
  border-top: 1px solid var(--primary-ink);
}
.ruled dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  padding-bottom: 14px;
  border-top: 1px dashed var(--border);
}
.ruled dd + dt, .ruled dt + dd { border-top: 0; }
.ruled .verdict-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--primary-ink);
}

/* Chapter 06: review shelf */
.review-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: start;
}
.review-card .verdict-num {
  font-size: 56px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: var(--primary);
}
.review-card .verdict-num .denom { color: var(--muted); font-size: 18px; font-weight: 700; }
.review-card .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.review-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--primary-ink); }
.review-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text); }
.review-card .pros {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}
.review-card .pros li { padding: 4px 0; border-top: var(--rule); }
.review-card .pros li::before { content: "+ "; color: var(--primary); font-weight: 800; }

/* Chapter 07: helpline */
.helpline {
  background: var(--surface-2);
  border: 1px solid var(--primary-ink);
  padding: 36px;
}
.helpline h3 { margin: 0 0 8px; font-size: 22px; font-weight: 800; color: var(--primary-ink); }
.helpline p { margin: 0 0 18px; color: var(--text); }
.helpline .resources { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.helpline .resources li {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 14px 16px;
  font-size: 14px;
}
.helpline .resources li strong { display: block; color: var(--primary-ink); margin-bottom: 2px; }
.helpline .resources li span { color: var(--muted); font-size: 13px; }

/* Chapter 08: footnoted Q&A */
.qa-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.qa {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: 20px;
}
.qa h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--primary-ink); }
.qa h3 .fn {
  font-size: 11px;
  font-weight: 800;
  vertical-align: super;
  margin-left: 6px;
  color: var(--accent);
}
.qa p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text); }
.qa .footnote {
  font-size: 12.5px;
  color: var(--muted);
  border-left: 2px solid var(--border);
  padding-left: 14px;
  line-height: 1.55;
}

/* Chapter 09: newsroom ticker */
.ticker {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
}
.ticker .row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: var(--rule);
  font-size: 14px;
}
.ticker .row:last-child { border-bottom: 0; }
.ticker .date { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; color: var(--muted); }
.ticker .headline { font-weight: 700; color: var(--primary-ink); }
.ticker .headline a { color: var(--primary-ink); }
.ticker .headline a:hover { color: var(--primary); }
.ticker .badge { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--primary); color: var(--primary); border-radius: 2px; }

/* Colophon */
.colophon {
  background: var(--primary-ink);
  color: #DCE9D8;
  padding: 48px 0;
  border-top: 4px solid var(--accent);
}
.colophon h3 { margin: 0 0 10px; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.colophon p { margin: 0 0 16px; color: #B6CDB1; font-size: 14.5px; line-height: 1.6; max-width: 70ch; }
.colophon .signature { font-size: 12px; color: #8FAE8B; letter-spacing: 0.14em; text-transform: uppercase; }

/* ===== Sticky section index ===== */
.section-index {
  display: none;
  position: sticky;
  top: 76px;
  z-index: 50;
  background: var(--background);
  border-bottom: var(--rule);
  padding: 12px 0;
  max-width: 100%;
  overflow: hidden;
}
.section-index .container {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 100%;
}
.section-index .row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.section-index .row::-webkit-scrollbar { display: none; }
.section-index a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.section-index a:hover { color: var(--primary); text-decoration: none; }
.section-index a[aria-current="true"] { color: var(--primary); border-bottom-color: var(--primary); }

/* ===== Footer ===== */
.site-footer {
  background: var(--primary-ink);
  color: #DCE9D8;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.footer-grid p { color: #B6CDB1; font-size: 14px; line-height: 1.6; margin: 0; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a {
  color: #DCE9D8;
  font-size: 14px;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #3A5B40;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: #8FAE8B;
}
.footer-bottom .age-gate {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ===== Mobile sticky CTA ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 220;
  background: var(--background);
  border-top: var(--rule-strong);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-bar .btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}
.mobile-cta-bar .btn-primary::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-right: 6px;
}

body { padding-bottom: 0; }
body.has-mobile-cta { padding-bottom: 70px; }

/* ===== Generic content page ===== */
.page-banner {
  padding: 56px 0 32px;
  border-bottom: var(--rule);
}
.page-banner .eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-banner h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--primary-ink);
  margin: 0 0 16px;
}
.page-banner .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 64ch;
  margin: 0;
}
.page-banner .banner-photo {
  margin-top: 28px;
  aspect-ratio: 16 / 7;
  background: var(--surface-2);
  border: 1px solid var(--primary-ink);
  overflow: hidden;
}
.page-banner .banner-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(8%); }

.content-block {
  padding: 48px 0;
  border-top: var(--rule);
}
.content-block:first-of-type { border-top: 0; }
.content-block h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--primary-ink);
}
.content-block p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 68ch;
}
.content-block ul, .content-block ol { padding-left: 22px; max-width: 68ch; }
.content-block li { margin-bottom: 8px; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 36px;
}
.factbox {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 22px;
}
.factbox h3 { margin: 0 0 12px; font-size: 14px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.factbox dl { margin: 0; }
.factbox dt { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.factbox dd { margin: 4px 0 0; font-size: 14px; color: var(--text); line-height: 1.55; }

.toc {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 22px 24px;
  margin: 24px 0;
}
.toc h3 { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc ol li { counter-increment: toc; padding: 8px 0; border-top: var(--rule); font-size: 14px; }
.toc ol li:first-child { border-top: 0; }
.toc ol li::before { content: counter(toc, decimal-leading-zero) " "; color: var(--accent); font-weight: 800; margin-right: 8px; letter-spacing: 0.08em; }
.toc ol li a { color: var(--primary-ink); font-weight: 700; }

.callout {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  margin: 18px 0;
  font-size: 15px;
  color: var(--primary-ink);
  max-width: 68ch;
}
.callout strong { display: block; margin-bottom: 4px; }

.cta-strip {
  background: var(--primary);
  color: #fff;
  padding: 32px 0;
  border-top: 4px solid var(--primary-ink);
  border-bottom: 4px solid var(--primary-ink);
}
.cta-strip .row {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: 24px;
  align-items: center;
}
.cta-strip h3 { margin: 0 0 8px; font-size: 24px; font-weight: 800; }
.cta-strip p { margin: 0; color: #DCE9D8; }
.cta-strip .btn-primary {
  background: #fff;
  color: var(--primary-ink);
}
.cta-strip .btn-primary:hover { background: var(--accent); color: #fff; }

.related-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--primary-ink);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.related-card .cat {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.related-card h4 { margin: 0; font-size: 16px; font-weight: 800; color: var(--primary-ink); }
.related-card a { color: inherit; }
.related-card a:hover { color: var(--primary); text-decoration: none; }
.related-card p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 32px; }
  .fighter-ledger { grid-template-columns: 1fr; }
  .qa { grid-template-columns: 1fr; }
  .qa .footnote { border-left: 0; border-top: 2px solid var(--border); padding-left: 0; padding-top: 12px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 1fr)); }
  .ruled dl { grid-template-columns: 1fr; }
  .cta-strip .row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .section-index { display: block; }
  .hero { padding: 32px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo { order: -1; aspect-ratio: 4 / 3; }
  .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .prediction-row { grid-template-columns: 1fr; }
  .bracket-tree { grid-template-columns: 1fr; }
  .review-shelf { grid-template-columns: 1fr; }
  .helpline .resources { grid-template-columns: 1fr; }
  .ticker .row { grid-template-columns: 90px 1fr; }
  .ticker .badge { grid-column: 2; justify-self: start; }
  .content-grid { grid-template-columns: 1fr; }
  .related-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chapter-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .chapter-num { font-size: 96px; }
  .chapter { padding: 48px 0; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 0; }
  body.has-mobile-cta { padding-bottom: 76px; }
  .cta-strip { padding: 24px 0; }
  .page-banner { padding: 36px 0 22px; }
  .banner-photo { aspect-ratio: 16 / 9; }
}

@media (max-width: 430px) {
  .container { padding: 0 16px; }
  .dateline-strip { font-size: 11px; letter-spacing: 0.14em; }
  .trust-row { grid-template-columns: 1fr; gap: 14px; }
  .review-card { grid-template-columns: 1fr; }
  .review-card .verdict-num { font-size: 44px; }
  .fighter-card { grid-template-columns: 72px 1fr; }
  .fighter-card .thumb { width: 72px; height: 96px; }
  .ticker .row { grid-template-columns: 1fr; gap: 6px; }
  .ticker .badge { grid-column: 1; justify-self: start; }
  .qa { padding: 18px; }
  .helpline { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .colophon { padding: 36px 0; }
  .chapter-num { font-size: 80px; }
  .chapter h2 { font-size: 26px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 32px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* A11y */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary-ink);
  color: #fff;
  padding: 8px 14px;
  font-weight: 700;
  z-index: 500;
}
.skip-link:focus { left: 16px; top: 16px; }
