@font-face {
  font-family: "Bangers";
  src: url("/fonts/Bangers.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #07111b;
  --navy: #091826;
  --navy-2: #102d42;
  --paper: #f2ead4;
  --cream: #fff8e7;
  --yellow: #f2b632;
  --red: #e54531;
  --teal: #28a9a2;
  --blue: #2476a8;
  --magenta: #d52c72;
  --purple: #7159bd;
  --muted: #485766;
  --white: #ffffff;
  --shadow: 7px 7px 0 var(--ink);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  overflow-x: clip;
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 999;
  transform: translateY(-180%);
  border: 3px solid var(--ink);
  background: var(--yellow);
  padding: var(--space-3) var(--space-4);
  color: var(--ink);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 4.8rem;
  border-bottom: 4px solid var(--ink);
  background: rgb(9 24 38 / 96%);
  padding: var(--space-3) clamp(1rem, 4vw, 3rem);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.brand span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.brand strong {
  font-family: "Bangers", Impact, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-2) var(--space-5);
}

.site-header nav a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.site-header nav a:hover {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

.hero {
  position: relative;
  min-height: min(83vh, 860px);
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
  background: var(--navy);
  color: var(--white);
}

.hero__art,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__art {
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  background:
    linear-gradient(90deg, rgb(5 15 25 / 98%) 0%, rgb(5 15 25 / 91%) 35%, rgb(5 15 25 / 34%) 65%, transparent 100%),
    linear-gradient(0deg, rgb(5 15 25 / 70%), transparent 45%);
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(83vh, 860px);
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 7rem) clamp(1rem, 5vw, 4rem);
  padding-right: max(clamp(1rem, 5vw, 4rem), calc(min(32vw, 22rem) + 3rem));
}

.kicker,
.section-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.19em;
  line-height: 1.25;
  text-transform: uppercase;
}

.kicker {
  width: fit-content;
  border: 3px solid var(--ink);
  background: var(--yellow);
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.hero h1,
.section-heading h2,
.explain-section h2,
.sources-section h2,
.method-section h2,
.race-strip h2 {
  font-family: "Bangers", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  margin: var(--space-5) 0 0;
  font-size: clamp(3.5rem, 10vw, 7.6rem);
  line-height: 0.84;
  text-shadow:
    -3px -3px 0 var(--ink),
    3px -3px 0 var(--ink),
    -3px 3px 0 var(--ink),
    3px 3px 0 var(--ink),
    7px 8px 0 rgb(0 0 0 / 45%);
  transform: rotate(-1.5deg);
}

.hero h1 span {
  color: var(--red);
}

.hero__portrait {
  position: absolute;
  right: clamp(1rem, 6vw, 5rem);
  bottom: 0;
  z-index: 2;
  width: min(32vw, 22rem);
  border: 5px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.ticker {
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: var(--red);
  color: var(--white);
}

.ticker__track {
  width: max-content;
  padding: 0.55rem 0;
  font-family: "Bangers", Impact, sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  animation: ticker 42s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__dek {
  max-width: 39rem;
  margin: var(--space-6) 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ink);
  padding: 0.8rem 1.25rem;
  font-family: "Bangers", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 130ms ease, box-shadow 130ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.button--ghost {
  border-color: var(--white);
  background: rgb(9 24 38 / 72%);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--red);
}

.hero__note {
  max-width: 43rem;
  margin: var(--space-6) 0 0;
  color: #d9e6ef;
  font-size: 0.9rem;
}

.race-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 1fr) auto;
  align-items: center;
  gap: var(--space-6);
  border-bottom: 5px solid var(--ink);
  background: var(--yellow);
  padding: var(--space-6) clamp(1rem, 5vw, 4rem);
}

.race-strip h2 {
  margin: var(--space-2) 0 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.race-strip__totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.race-strip__totals p {
  margin: 0;
  border-left: 4px solid var(--ink);
  padding-left: var(--space-4);
}

.race-strip__totals strong,
.race-strip__totals span {
  display: block;
}

.race-strip__totals strong {
  font-family: "Bangers", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.race-strip__totals span {
  margin-top: var(--space-1);
  font-size: 0.78rem;
  font-weight: 850;
}

.race-strip > a {
  font-weight: 950;
  text-underline-offset: 4px;
}

.paper-section,
.questions-section,
.sources-section,
.method-section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.paper-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, rgb(0 0 0 / 7%) 0 1px, transparent 1.6px) 0 0 / 9px 9px,
    var(--paper);
}

.section-heading {
  width: min(100%, 72rem);
  margin: 0 auto var(--space-7);
}

.section-heading .section-label,
.explain-section .section-label,
.sources-section .section-label,
.method-section .section-label {
  color: #a52b1e;
}

.section-heading h2,
.explain-section h2,
.sources-section h2,
.method-section h2 {
  margin: var(--space-3) 0 0;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.92;
}

.section-heading h2 span {
  color: var(--red);
}

.section-heading > p:last-child,
.sources-section__intro > div > p:last-child {
  max-width: 50rem;
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.comic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
  width: min(100%, 72rem);
  margin: 0 auto;
}

.comic-card {
  position: relative;
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--card);
  padding: clamp(1.25rem, 4vw, 2rem);
  padding-bottom: 2.2rem;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.comic-card__pattern {
  position: absolute;
  inset: -15%;
  z-index: -2;
  opacity: 0.18;
  transform: rotate(-7deg) scale(1.1);
  background-size: 74px 74px;
}

.comic-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgb(255 255 255 / 10%), transparent 38%, rgb(0 0 0 / 15%));
}

.motif-courthouse,
.motif-scales {
  background-image: repeating-radial-gradient(circle at 40% 40%, var(--ink) 0 2px, transparent 3px 34px);
}

.motif-shield {
  background-image: repeating-linear-gradient(45deg, var(--ink) 0 3px, transparent 3px 22px);
}

.motif-docket {
  background-image: linear-gradient(var(--ink) 2px, transparent 2px), linear-gradient(90deg, var(--ink) 2px, transparent 2px);
}

.motif-ballot {
  background-image: radial-gradient(circle, var(--ink) 0 4px, transparent 5px);
}

.motif-search,
.motif-records {
  background-image: repeating-conic-gradient(from 45deg, var(--ink) 0 10deg, transparent 10deg 35deg);
}

.motif-cuffs,
.motif-ice {
  background-image: repeating-linear-gradient(-25deg, var(--ink) 0 2px, transparent 2px 18px);
}

.motif-badge,
.motif-shield {
  background-image: repeating-radial-gradient(circle at 50% 50%, var(--ink) 0 2px, transparent 3px 28px);
}

.motif-victims {
  background-image: radial-gradient(circle, var(--ink) 0 3px, transparent 4px);
}

.motif-sports {
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 16px);
}

.motif-hobbs,
.motif-lawfare {
  background-image: repeating-linear-gradient(135deg, var(--ink) 0 4px, transparent 4px 14px);
}

.motif-gavel,
.motif-pills {
  background-image: radial-gradient(circle at 30% 30%, var(--ink) 0 5px, transparent 6px);
}

.comic-card__eyebrow,
.comic-card__answer {
  position: relative;
  margin: 0;
  font-family: "Bangers", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comic-card__eyebrow {
  max-width: 17ch;
  color: var(--white);
  font-size: clamp(1.75rem, 4.2vw, 2.7rem);
  line-height: 0.92;
  text-shadow:
    -2px -2px 0 var(--ink),
    2px -2px 0 var(--ink),
    -2px 2px 0 var(--ink),
    2px 2px 0 var(--ink),
    4px 5px 0 rgb(0 0 0 / 38%);
  transform: rotate(-2deg);
}

.comic-card__answer {
  max-width: 16ch;
  margin-top: var(--space-5);
  color: var(--white);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 0.88;
  text-shadow:
    -3px -3px 0 var(--ink),
    3px -3px 0 var(--ink),
    -3px 3px 0 var(--ink),
    3px 3px 0 var(--ink),
    5px 6px 0 rgb(0 0 0 / 42%);
}

.comic-card__detail {
  margin: auto 0 0;
  border-top: 3px solid rgb(7 17 27 / 45%);
  padding-top: var(--space-4);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.comic-card__link {
  width: fit-content;
  margin-top: var(--space-4);
  border: 3px solid var(--ink);
  background: var(--ink);
  padding: 0.45rem 0.65rem;
  color: var(--white);
  font-family: "Bangers", Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.comic-card__url {
  position: absolute;
  right: 0.7rem;
  bottom: 0.45rem;
  color: rgb(255 255 255 / 45%);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.comic-card--light .comic-card__eyebrow,
.comic-card--light .comic-card__answer {
  color: var(--ink);
  text-shadow:
    -2px -2px 0 var(--white),
    2px -2px 0 var(--white),
    -2px 2px 0 var(--white),
    2px 2px 0 var(--white),
    4px 5px 0 rgb(0 0 0 / 25%);
}

.comic-card--light .comic-card__url {
  color: rgb(7 17 27 / 45%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) rotate(0.8deg);
  transition: opacity 450ms ease var(--delay), transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.gallery-section {
  border-block: 5px solid var(--ink);
  background:
    repeating-linear-gradient(135deg, transparent 0 24px, rgb(255 255 255 / 2%) 24px 26px),
    var(--navy);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  width: min(100%, 72rem);
  margin: 0 auto;
}

.evidence-card {
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: #050b11;
  box-shadow: var(--shadow);
}

.evidence-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.evidence-card figcaption {
  padding: var(--space-4);
  color: var(--white);
}

.evidence-card strong {
  display: block;
  font-family: "Bangers", Impact, sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.evidence-card span {
  display: block;
  margin-top: var(--space-2);
  color: #d8e1e8;
  font-size: 0.88rem;
  font-weight: 700;
}

.petersen-section {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-bottom: 5px solid var(--ink);
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100vw - 72rem) / 2));
}

.petersen-section img {
  width: 100%;
  border: 5px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.petersen-section h2 {
  margin: var(--space-3) 0 0;
  font-family: "Bangers", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 0.92;
}

.petersen-section p:not(.section-label) {
  max-width: 42rem;
  margin: var(--space-5) 0 0;
  color: #2d3b47;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.explain-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-block: 5px solid var(--ink);
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100vw - 72rem) / 2));
}

.explain-section__art-wrap {
  border: 5px solid var(--ink);
  background: var(--blue);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.explain-section__art-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.explain-section__copy > p:not(.section-label) {
  max-width: 42rem;
  margin: var(--space-5) 0 0;
  color: #2d3b47;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.inline-sources {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.inline-sources a,
.source-chip {
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 0.35rem 0.55rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
}

.inline-sources a:hover,
.source-chip:hover {
  background: var(--white);
}

.questions-section {
  background:
    repeating-linear-gradient(135deg, transparent 0 24px, rgb(255 255 255 / 2%) 24px 26px),
    var(--navy);
  color: var(--white);
}

.section-heading--light .section-label {
  color: var(--yellow);
}

.section-heading--light > p:last-child {
  color: #d8e1e8;
}

.filters {
  display: grid;
  gap: var(--space-5);
  width: min(100%, 72rem);
  margin: 0 auto var(--space-7);
  border: 4px solid var(--ink);
  background: var(--cream);
  padding: var(--space-5);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}

.search-box {
  display: grid;
  gap: var(--space-2);
  font-weight: 950;
}

.search-box input {
  min-height: 3.3rem;
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  font-size: 1rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.filter-button,
.empty-state button {
  min-height: 2.75rem;
  border: 3px solid var(--ink);
  background: var(--white);
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
}

.filter-button:hover,
.filter-button.is-active,
.empty-state button:hover {
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.result-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  width: min(100%, 72rem);
  margin: 0 auto;
}

.question-card {
  position: relative;
  border: 4px solid var(--ink);
  background: var(--cream);
  padding: var(--space-5);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgb(229 69 49 / 90%);
}

.question-card:nth-child(4n + 2) {
  box-shadow: 5px 5px 0 rgb(40 169 162 / 90%);
}

.question-card:nth-child(4n + 3) {
  box-shadow: 5px 5px 0 rgb(242 182 50 / 90%);
}

.question-card:nth-child(4n) {
  box-shadow: 5px 5px 0 rgb(113 89 189 / 90%);
}

.question-card:target {
  outline: 6px solid var(--yellow);
  outline-offset: 6px;
}

.question-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.question-card__number {
  font-family: "Bangers", Impact, sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.06em;
}

.status-badge {
  border: 2px solid var(--ink);
  background: var(--navy);
  padding: 0.25rem 0.45rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.question-card h3 {
  margin: var(--space-4) 0 0;
  font-family: "Bangers", Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1;
}

.question-card__punch {
  margin: var(--space-3) 0 0;
  color: var(--red);
  font-family: "Bangers", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.question-card > p {
  margin: var(--space-4) 0 0;
  color: #334452;
  font-size: 0.93rem;
  font-weight: 650;
}

.question-card__sources {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.source-chip {
  font-size: 0.7rem;
}

.empty-state {
  width: min(100%, 42rem);
  margin: 0 auto;
  border: 4px solid var(--ink);
  background: var(--cream);
  padding: var(--space-7);
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow);
}

.empty-state h3 {
  margin: 0;
  font-family: "Bangers", Impact, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.sources-section {
  background:
    radial-gradient(circle at 18% 22%, rgb(0 0 0 / 6%) 0 1px, transparent 1.6px) 0 0 / 10px 10px,
    var(--paper);
}

.sources-section__intro {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: min(100%, 72rem);
  margin: 0 auto var(--space-8);
}

.sources-section__intro img {
  aspect-ratio: 1;
  width: 100%;
  border: 5px solid var(--ink);
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.source-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  border: 3px solid var(--ink);
  background: var(--cream);
  padding: var(--space-4);
  box-shadow: 4px 4px 0 var(--ink);
}

.source-row__index {
  color: var(--red);
  font-family: "Bangers", Impact, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.source-row__kind {
  margin: 0 0 var(--space-1);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-row a {
  font-weight: 850;
  line-height: 1.25;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.method-section {
  border-top: 5px solid var(--ink);
  background: var(--teal);
}

.method-section > .section-label {
  color: var(--ink);
}

.method-section > .section-label,
.method-section > h2,
.method-grid {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-7);
}

.method-grid article {
  border: 4px solid var(--ink);
  background: var(--cream);
  padding: var(--space-5);
  box-shadow: 5px 5px 0 var(--ink);
}

.method-grid strong {
  display: inline-block;
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 0.25rem 0.45rem;
  font-family: "Bangers", Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.method-grid article:nth-child(n + 3) strong {
  background: var(--red);
  color: var(--ink);
}

.method-grid p {
  margin: var(--space-4) 0 0;
  font-weight: 700;
}

.site-footer {
  border-top: 5px solid var(--ink);
  background: #050b11;
  padding: var(--space-8) max(1rem, calc((100vw - 72rem) / 2));
  color: #cbd6df;
  text-align: center;
}

.site-footer__brand {
  color: var(--white);
  font-family: "Bangers", Impact, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  letter-spacing: 0.05em;
}

.site-footer__brand span {
  color: var(--red);
}

.footer-logo {
  display: inline-flex;
  margin-top: var(--space-6);
}

.footer-logo img {
  width: min(100%, 17rem);
  height: auto;
  margin-inline: auto;
}

.site-footer > p {
  max-width: 48rem;
  margin: var(--space-4) auto 0;
}

.disclaimer {
  width: min(100%, 40rem);
  margin: var(--space-7) auto 0;
  border: 4px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--red);
}

.disclaimer > span {
  display: block;
  border-bottom: 3px solid var(--ink);
  padding: var(--space-2);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.disclaimer strong {
  display: block;
  padding: var(--space-5) var(--space-5) 0;
  font-family: "Bangers", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.disclaimer p {
  margin: var(--space-3) 0 0;
  padding: 0 var(--space-5) var(--space-5);
  font-size: 0.8rem;
  font-weight: 750;
}

.site-footer__legal,
.visit-count {
  color: #8fa1af;
  font-size: 0.75rem;
}

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

  .race-strip > a {
    width: fit-content;
  }

  .explain-section,
  .petersen-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__portrait {
    width: min(46vw, 11rem);
    right: 0.75rem;
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explain-section__art-wrap {
    width: min(100%, 34rem);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 7.8rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-3);
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    gap: var(--space-3) var(--space-4);
  }

  .site-header nav a {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 44rem;
  }

  .hero__content {
    min-height: 44rem;
    justify-content: flex-end;
    padding-top: 8rem;
  }

  .hero__art {
    object-position: 67% center;
  }

  .hero__scrim {
    background: linear-gradient(0deg, rgb(5 15 25 / 99%) 0%, rgb(5 15 25 / 91%) 48%, rgb(5 15 25 / 18%) 100%);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .race-strip__totals,
  .comic-grid,
  .question-grid,
  .source-list,
  .method-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .hero__portrait {
    display: none;
  }

  .comic-card {
    min-height: 20rem;
  }

  .sources-section__intro {
    grid-template-columns: 1fr;
  }

  .sources-section__intro img {
    width: min(100%, 28rem);
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .site-header nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .site-header nav a {
    text-align: center;
  }

  .race-strip__totals {
    gap: var(--space-5);
  }

  .filter-button {
    flex: 1 1 46%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker__track {
    animation: none;
  }
}
