:root {
  --ink: #171923;
  --ink-soft: #4d5262;
  --paper: #f6f2e9;
  --paper-2: #fffdf8;
  --panel: #ebe5da;
  --line: #d5cec1;
  --brand: #b52a2f;
  --brand-dark: #811d25;
  --gold: #e7a92d;
  --night: #10141f;
  --max: 1180px;
  --reading: 760px;
  --shadow: 0 16px 50px rgba(26, 22, 18, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}
a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }
img, iframe { max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 99; background: #fff; padding: .65rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { background: var(--night); color: #fff; border-bottom: 3px solid var(--gold); }
.header-inner { max-width: var(--max); margin: auto; min-height: 74px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; color: var(--night); background: var(--gold); font: 900 15px/1 ui-sans-serif, system-ui; }
.site-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.site-nav a { color: #e7e9ee; text-decoration: none; font-size: .88rem; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); }

.breadcrumb { max-width: var(--max); margin: 0 auto; padding: 18px 24px 0; font-size: .78rem; color: var(--ink-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #9b9487; }
.breadcrumb a { color: inherit; }

.hero { position: relative; overflow: hidden; background: var(--night); color: white; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(231,169,45,.34), transparent 26%), linear-gradient(115deg, rgba(181,42,47,.75), transparent 52%); }
.hero::after { content: "FIGHT"; position: absolute; right: -2vw; bottom: -5vw; color: rgba(255,255,255,.035); font: 950 clamp(7rem, 18vw, 16rem)/.8 Impact, sans-serif; letter-spacing: -.06em; }
.hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: auto; padding: clamp(58px, 9vw, 118px) 24px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero h1, .article-header h1 { max-width: 920px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 6vw, 5.1rem); line-height: .98; letter-spacing: -.045em; }
.hero .deck { max-width: 700px; margin: 24px 0 0; color: #e7e9ee; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.fact-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.fact-pill { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .82rem; font-weight: 700; }

.article-header { max-width: var(--max); margin: 0 auto; padding: clamp(44px, 7vw, 84px) 24px 40px; }
.article-header h1 { max-width: 980px; font-size: clamp(2.25rem, 5vw, 4.35rem); line-height: 1.04; }
.deck { max-width: 780px; color: var(--ink-soft); font-size: 1.16rem; line-height: 1.55; }
.byline { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 24px; color: var(--ink-soft); font-size: .78rem; }

.page-shell { max-width: var(--max); margin: 0 auto; padding: 0 24px 72px; display: grid; grid-template-columns: minmax(0, var(--reading)) 250px; gap: 64px; align-items: start; }
.article { min-width: 0; }
.article > p:first-child { font-size: 1.12rem; }
.article h2 { margin: 2.8rem 0 .8rem; font: 750 clamp(1.55rem, 3vw, 2.2rem)/1.18 Georgia, serif; letter-spacing: -.025em; scroll-margin-top: 24px; }
.article h3 { margin: 2rem 0 .5rem; font-size: 1.12rem; line-height: 1.35; }
.article p { margin: 0 0 1.25rem; }
.article ul, .article ol { padding-left: 1.3rem; }
.article li { margin-bottom: .45rem; }
.article blockquote { margin: 1.7rem 0; padding: 1rem 1.25rem; border-left: 4px solid var(--gold); background: var(--paper-2); }
.article table { width: 100%; margin: 1.5rem 0; border-collapse: collapse; font-size: .92rem; }
.article th, .article td { padding: .78rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article th { background: var(--night); color: #fff; }
.article tbody tr:nth-child(even) { background: rgba(255,255,255,.42); }
.toc { position: sticky; top: 22px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,253,248,.75); font-size: .82rem; }
.toc strong { display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; }
.toc ol { margin: 0; padding-left: 1.15rem; }
.toc li { margin: .45rem 0; }
.toc a { color: var(--ink-soft); text-decoration: none; }

.answer-box, .status-box, .spoiler-box { margin: 0 0 2rem; padding: 20px 22px; border-radius: 12px; background: var(--paper-2); box-shadow: var(--shadow); border: 1px solid var(--line); }
.answer-box { border-top: 4px solid var(--brand); }
.answer-box strong, .status-box strong { display: block; margin-bottom: 6px; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.status-box { border-left: 4px solid var(--gold); }
.spoiler-box { border: 2px solid var(--brand); color: var(--brand-dark); font-weight: 800; }
.tag { display: inline-block; padding: 3px 8px; margin-right: 6px; border-radius: 999px; background: #e8e1d6; color: var(--ink-soft); font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.section-wrap { max-width: var(--max); margin: 0 auto; padding: 64px 24px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-head h2 { margin: 0; font: 750 clamp(1.8rem, 4vw, 3rem)/1.08 Georgia, serif; letter-spacing: -.035em; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { display: flex; flex-direction: column; min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; color: inherit; background: var(--paper-2); text-decoration: none; box-shadow: 0 8px 30px rgba(25,22,18,.04); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { color: inherit; transform: translateY(-3px); box-shadow: var(--shadow); }
.card .kicker { color: var(--brand); font-size: .7rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.card h3 { margin: 12px 0 8px; font: 750 1.4rem/1.18 Georgia, serif; }
.card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.card .more { margin-top: auto; padding-top: 22px; color: var(--brand-dark); font-weight: 800; font-size: .8rem; }

.video-wrap { position: relative; width: 100%; padding-top: 56.25%; margin: 1.5rem 0 2rem; overflow: hidden; background: #000; border-radius: 12px; box-shadow: var(--shadow); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ad-slot { display: grid; place-items: center; min-height: 120px; margin: 2.2rem 0; overflow: hidden; }
.ad-slot:empty { display: none; }
.sources, .related { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.sources h2, .related h2 { margin-top: 0; font-size: 1.35rem; }
.sources { font-size: .85rem; }
.related-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.related-links a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px; background: var(--paper-2); text-decoration: none; font-weight: 700; }

.site-footer { padding: 48px 24px; color: #cbd0db; background: var(--night); font-size: .82rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
.footer-copy, .copyright { color: #aeb3bf; font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; align-content: start; }
.footer-links a { color: #fff; }
.disclaimer { max-width: 760px; color: #999fac; }

@media (max-width: 900px) {
  .page-shell { grid-template-columns: 1fr; gap: 0; }
  .toc { position: static; grid-row: 1; margin-bottom: 28px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-inner { align-items: flex-start; flex-direction: column; padding-top: 14px; padding-bottom: 14px; gap: 12px; }
  .site-nav { gap: 8px 14px; }
  .grid, .related-links, .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 60px; padding-bottom: 68px; }
  .article-header { padding-top: 38px; }
  .page-shell { padding-left: 18px; padding-right: 18px; }
  .article table { display: block; overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { transition: none; }
}
