:root {
  --paper: #171719;
  --deep: #0b0b0e;
  --ink: #f3eee6;
  --muted: #aaa49f;
  --line: rgba(243, 238, 230, 0.18);
  --plum: #5b0a35;
  --yellow: #f5bd18;
  --warm: #b6a9a1;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--deep);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }

.skip-link {
  position: absolute;
  top: 8px;
  left: -9999px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--deep);
}

.skip-link:focus { left: 8px; }

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 12px clamp(18px, 4vw, 54px);
  background:
    repeating-radial-gradient(ellipse at 78% 55%, transparent 0 44px, rgba(243, 238, 230, 0.07) 45px 46px, transparent 47px 76px),
    linear-gradient(90deg, var(--deep), #190d15);
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  display: block;
  width: 150px;
  height: 66px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
}

.primary-nav a,
.utility-nav a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.utility-nav a:hover,
.utility-nav a:focus-visible { color: var(--ink); }

.utility-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.shell { width: min(1180px, 100%); margin: 0 auto; }

.demo-banner {
  padding: 9px clamp(18px, 4vw, 54px);
  background: var(--yellow);
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.hero-media,
.article-hero,
.card-media,
.row-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--deep);
}

.home-hero { background: var(--deep); }

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 62px) clamp(20px, 5vw, 62px);
  background:
    repeating-radial-gradient(ellipse at 100% 45%, transparent 0 50px, rgba(243, 238, 230, 0.08) 51px 52px, transparent 53px 82px),
    var(--deep);
}

.kicker {
  color: var(--yellow);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.display-title {
  margin: 16px 0 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 8.2vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-transform: uppercase;
}

.display-title em { color: var(--yellow); font-style: normal; }

.dek {
  margin: 0 0 22px;
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.1vw, 1.38rem);
  font-style: italic;
  line-height: 1.48;
}

.meta {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  padding: 13px 17px;
  background: var(--yellow);
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.section { padding: clamp(36px, 6vw, 76px) clamp(20px, 5vw, 62px); }
.section + .section { border-top: 1px solid var(--line); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.section-heading h2,
.article-body h2,
.article-side h2 {
  margin: 0;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: right;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card { border-top: 3px solid var(--yellow); padding-top: 12px; }
.story-card h3,
.archive-card h2 {
  margin: 10px 0 8px;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.1;
}

.story-card h3 a,
.archive-card h2 a,
.row-story h3 a { text-decoration: none; }
.story-card h3 a:hover,
.archive-card h2 a:hover,
.row-story h3 a:hover { color: var(--yellow); }

.story-card p,
.archive-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.card-meta { display: block; margin-top: 14px; color: var(--muted); font-size: 0.72rem; }
.card-image-link { display: block; background: var(--deep); }
.card-image-link:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.signal-strip {
  display: grid;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr));
  background: var(--deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip > div { min-height: 102px; padding: 22px; border-right: 1px solid var(--line); }
.signal-strip > div:last-child { border-right: 0; }
.signal-label { display: flex; align-items: center; color: var(--yellow); font-family: Impact, "Arial Narrow", sans-serif; font-size: 1.4rem; text-transform: uppercase; }
.signal-strip strong { display: block; margin-bottom: 8px; font-family: Didot, "Bodoni MT", Georgia, serif; font-size: 1.05rem; font-weight: 500; }
.signal-strip span { color: var(--muted); font-size: 0.75rem; line-height: 1.45; }

.row-list { border-top: 1px solid var(--line); }
.row-story { display: grid; grid-template-columns: 160px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.row-story h3 { margin: 0 0 7px; font-family: Didot, "Bodoni MT", Georgia, serif; font-size: 1.25rem; font-weight: 500; line-height: 1.15; }
.row-story p { margin: 0; color: var(--muted); font-size: 0.75rem; }
.views { color: var(--yellow); font-size: 0.75rem; white-space: nowrap; }

.newsletter { padding: clamp(40px, 6vw, 72px) 24px; background: linear-gradient(120deg, var(--plum), #210d1a); text-align: center; }
.newsletter h2 { margin: 10px 0; font-family: Didot, "Bodoni MT", Georgia, serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 500; line-height: 1; }
.newsletter p { max-width: 620px; margin: 0 auto; color: var(--warm); font-size: 0.88rem; line-height: 1.55; }

.page-intro { max-width: 820px; padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 62px) 38px; }
.page-intro h1,
.article-header h1 { margin: 14px 0 18px; font-family: Impact, "Arial Narrow", sans-serif; font-weight: 500; letter-spacing: -0.025em; line-height: 0.87; text-transform: uppercase; }
.page-intro h1 { font-size: clamp(3.4rem, 9vw, 7.8rem); }
.article-header h1 { font-size: clamp(3rem, 7vw, 6rem); overflow-wrap: anywhere; }
.page-intro p { margin: 0; color: var(--warm); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-style: italic; line-height: 1.5; }

.archive-controls { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.archive-controls label { display: grid; gap: 7px; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.archive-controls input,
.archive-controls select { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 0; background: var(--deep); color: var(--ink); }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.archive-card { min-width: 0; padding: 13px; background: var(--deep); border-top: 3px solid var(--yellow); }
.archive-card[hidden] { display: none; }
.archive-empty { display: none; padding: 34px 0; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-style: italic; }
.archive-count { margin: 0 0 18px; color: var(--muted); font-size: 0.75rem; }

.breadcrumb { margin-bottom: 24px; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.breadcrumb a { text-decoration: none; }
.article-header { max-width: 930px; padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 62px) 40px; }
.article-header h1 em { color: var(--yellow); font-style: normal; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: clamp(34px, 6vw, 70px); max-width: 980px; margin: 0 auto; padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 62px); }
.article-header, .article-layout, .article-body, .article-side { min-width: 0; }
.article-header .dek, .article-header .meta { overflow-wrap: anywhere; }
.article-body { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.05rem, 1.9vw, 1.22rem); line-height: 1.75; }
.article-body p { margin: 0 0 1.45em; }
.article-body h2 { margin: 2em 0 0.65em; }
.answer-block { margin-bottom: 2.2em; padding: 24px; background: #21141c; border-left: 4px solid var(--yellow); }
.answer-block h2 { margin-top: 0.35em; }
.answer-block p:last-child { margin-bottom: 0; }
.evidence-section { margin: 2.4em 0; padding: 24px; background: linear-gradient(145deg, rgba(245, 189, 24, 0.09), rgba(84, 10, 50, 0.18)); border: 1px solid var(--line); }
.evidence-section h2 { margin-top: 0.35em; }
.evidence-list { margin: 1.3em 0 0; padding: 0; list-style: none; }
.evidence-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.evidence-list li:first-child { border-top-color: var(--yellow); }
.evidence-list a { display: flex; align-items: baseline; gap: 12px; font-family: Arial, Helvetica, sans-serif; text-decoration: none; }
.evidence-list a:hover strong { text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 4px; }
.evidence-time { flex: 0 0 auto; padding: 3px 7px; background: var(--yellow); color: #111; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; }
.evidence-list strong { color: var(--ink); font-size: 0.88rem; }
.evidence-list p { margin: 9px 0 0; color: var(--warm); font-size: 0.94rem; line-height: 1.55; }
.evidence-note { margin: 8px 0 0 !important; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 0.74rem; line-height: 1.55; }
.independent-section { margin: 2.4em 0; padding: 24px; background: #15181a; border-top: 3px solid #d9d3ca; }
.independent-section h2 { margin-top: 0.35em; }
.independent-section > p { color: var(--warm); }
.independent-list { margin: 1.4em 0 0; padding: 0; list-style: none; }
.independent-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.independent-list h3 { margin: 0 0 5px; font-family: Arial, Helvetica, sans-serif; font-size: 0.95rem; line-height: 1.35; }
.independent-list h3 a { text-decoration-color: var(--yellow); text-underline-offset: 4px; }
.independent-list span { display: block; margin-bottom: 11px; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 0.7rem; line-height: 1.45; }
.independent-list p { margin: 6px 0; color: var(--warm); font-family: Arial, Helvetica, sans-serif; font-size: 0.8rem; line-height: 1.55; }
.independent-list strong { color: var(--ink); }
.verification-status { margin: 17px 0 0 !important; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted) !important; font-family: Arial, Helvetica, sans-serif; font-size: 0.74rem; line-height: 1.5; text-transform: capitalize; }
.caution-note { margin: 2em 0; padding: 22px; background: rgba(245, 189, 24, 0.08); border: 1px solid rgba(245, 189, 24, 0.42); }
.caution-note strong { display: block; margin-bottom: 10px; color: var(--yellow); font-family: Arial, Helvetica, sans-serif; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.caution-note p:last-child { margin-bottom: 0; }
.pullquote { margin: 1.7em 0; padding: 0.8em 0; color: var(--yellow); border-top: 3px solid var(--yellow); border-bottom: 1px solid var(--line); font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-style: italic; line-height: 1.22; }
.article-side { align-self: start; padding: 20px; background: var(--deep); border-top: 3px solid var(--yellow); }
.article-side h2 { margin-bottom: 16px; font-size: 1.35rem; }
.article-side ul { margin: 0; padding-left: 18px; color: var(--warm); font-size: 0.82rem; line-height: 1.55; }
.article-side li + li { margin-top: 12px; }
.article-facts { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
.article-facts dt { color: var(--yellow); font-size: 0.65rem; letter-spacing: 0.09em; text-transform: uppercase; }
.article-facts dd { margin: 5px 0 15px; color: var(--warm); font-size: 0.78rem; line-height: 1.45; }
.source-section { margin-top: 3em; padding-top: 0.5em; border-top: 1px solid var(--line); }
.video-frame { position: relative; width: 100%; margin: 1.3em 0; aspect-ratio: 16 / 9; overflow: hidden; background: var(--deep); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.source-list { margin: 0; padding: 0; list-style: none; }
.source-list li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.source-list a { font-weight: 700; text-decoration-color: var(--yellow); text-underline-offset: 3px; }
.source-list span { display: block; margin-top: 5px; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 0.72rem; line-height: 1.45; }
.source-disclosure { margin-top: 18px !important; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 0.74rem; line-height: 1.55; }
.source-ledger { margin-top: 2.4em; padding-top: 1.4em; border-top: 1px solid var(--line); }
.source-ledger dt { color: var(--yellow); font-family: Arial, Helvetica, sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.source-ledger dd { margin: 7px 0 19px; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 0.82rem; line-height: 1.5; }
.source-ledger a { text-decoration-color: var(--yellow); text-underline-offset: 3px; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 28px; padding: 28px clamp(20px, 5vw, 62px); background: var(--deep); border-top: 1px solid var(--line); color: var(--muted); font-size: 0.74rem; line-height: 1.55; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.site-footer a { text-decoration: none; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 150px 1fr; }
  .primary-nav { display: none; }
  .utility-nav { justify-content: flex-end; }
  .hero-copy { grid-template-columns: 1fr; }
  .story-grid, .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signal-strip { grid-template-columns: 1fr 1fr; }
  .signal-strip > div { border-bottom: 1px solid var(--line); }
  .article-layout { grid-template-columns: 1fr; }
  .article-side { order: -1; }
}

@media (max-width: 560px) {
  .site-header { grid-template-columns: 120px 1fr; padding-inline: 16px; }
  .brand-logo { width: 116px; height: 54px; }
  .utility-nav a:first-child { display: none; }
  .article-header, .article-layout { padding-inline: 16px; }
  .article-header h1 { font-size: clamp(2.1rem, 10.8vw, 2.7rem); line-height: 0.91; }
  .answer-block, .evidence-section, .independent-section { padding: 18px; }
  .story-grid, .archive-grid, .archive-controls, .signal-strip { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading p { text-align: left; }
  .row-story { grid-template-columns: 100px minmax(0, 1fr); gap: 13px; }
  .views { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
