@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap");

:root {
  --ink: #11100e;
  --paper: #f4efd9;
  --red: #ef3f2f;
  --blue: #58c9ed;
  --yellow: #ffe13b;
  --muted: #b9b39f;
  --white: #fffdf5;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --page: min(100% - 40px, 1240px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgb(17 16 14 / 0.035) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 65%, rgb(17 16 14 / 0.035) 0 1px, transparent 2px),
    var(--paper);
  background-size: 15px 15px, 19px 19px, auto;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 10px max(20px, calc((100vw - 1240px) / 2));
  border-bottom: var(--border);
  background: rgb(244 239 217 / 0.94);
  backdrop-filter: blur(12px);
  transition:
    min-height 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  box-shadow: 0 4px 0 rgb(17 16 14 / 0.14);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.brand__name,
.site-footer__brand {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brand__place {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(1.5deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.65fr);
  gap: 48px;
  align-items: center;
  width: var(--page);
  min-height: min(880px, calc(100vh - 78px));
  margin-inline: auto;
  padding: 80px 0 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 8px;
  background: var(--red);
  content: "";
}

.eyebrow--light::before {
  background: var(--yellow);
}

.hero__title,
.section-heading h2,
.story__intro h2,
.interview__heading h2,
.finale h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero__title {
  max-width: 900px;
  font-size: clamp(4.7rem, 10.5vw, 10.5rem);
}

.hero__title span {
  display: block;
  width: fit-content;
  color: var(--red);
  text-shadow:
    3px 3px 0 var(--paper),
    7px 7px 0 var(--ink);
  transform: rotate(-2deg);
}

.hero__lead {
  max-width: 610px;
  margin: 42px 0 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 56px;
  padding: 12px 20px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    box-shadow 150ms ease,
    transform 150ms ease;
}

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

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

.button--yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--blue);
}

.text-link,
.source-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span,
.source-link span {
  transition: transform 150ms ease;
}

.text-link:hover span,
.source-link:hover span {
  transform: translateX(4px);
}

.hero-poster {
  position: relative;
  min-height: 560px;
  padding: 24px;
  border: var(--border);
  background:
    linear-gradient(115deg, transparent 54%, rgb(255 255 255 / 0.11) 54% 55%, transparent 55%),
    var(--blue);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-poster::before,
.hero-poster::after {
  position: absolute;
  z-index: -1;
  width: 62px;
  height: 150px;
  background: var(--red);
  content: "";
}

.hero-poster::before {
  top: -28px;
  right: 42px;
  transform: rotate(12deg);
}

.hero-poster::after {
  bottom: -34px;
  left: 34px;
  background: var(--yellow);
  transform: rotate(-16deg);
}

.hero-poster__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--ink);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-poster__number {
  margin: 22px 0 -10px;
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 11rem);
  letter-spacing: -0.13em;
  line-height: 0.8;
}

.hero-poster__arrows {
  display: grid;
  gap: 0;
  margin: 24px -24px 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: 6.2rem;
  line-height: 0.45;
  text-shadow: 4px 4px 0 var(--paper);
}

.hero-poster__arrows span:nth-child(2) {
  color: var(--red);
  text-align: right;
}

.hero-poster__seal {
  position: absolute;
  top: 205px;
  right: 28px;
  display: grid;
  width: 100px;
  aspect-ratio: 1;
  place-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  text-align: center;
  transform: rotate(12deg);
}

.hero-poster__seal span {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.hero-poster__seal small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-poster__claim {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-poster__claim strong {
  display: block;
  font-family: var(--display);
  font-size: 2.15rem;
  letter-spacing: -0.04em;
}

.hero__aside {
  position: absolute;
  bottom: 28px;
  left: 0;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: var(--border);
  background: var(--yellow);
  transform: rotate(-1deg) scale(1.015);
}

.ticker__track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  padding: 15px 0;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  animation: ticker 30s linear infinite;
}

.ticker__track i {
  color: var(--red);
  font-style: normal;
}

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

.section-dark {
  color: var(--paper);
  background:
    linear-gradient(120deg, transparent 70%, rgb(255 225 59 / 0.04) 70%),
    var(--ink);
}

.viral {
  padding: 150px max(20px, calc((100vw - 1240px) / 2)) 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}

.section-heading h2,
.story__intro h2,
.interview__heading h2 {
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
}

.section-heading h2 span,
.story__intro h2 span,
.interview__heading h2 span {
  display: block;
  color: var(--blue);
}

.viral__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.6fr);
  gap: 60px;
  align-items: center;
}

.video-frame {
  position: relative;
  padding: 12px;
  border: 3px solid var(--paper);
  background: var(--red);
  box-shadow: 12px 12px 0 var(--blue);
  transform: rotate(-0.6deg);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-frame__label {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: 24px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.viral__story > p:not(.story-index, .viral__note) {
  margin: 20px 0 34px;
  font-size: 1.2rem;
  line-height: 1.55;
}

.story-index {
  margin: 0;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.viral__story blockquote {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.4vw, 4.7rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-transform: uppercase;
}

.viral__note {
  padding-top: 24px;
  border-top: 1px solid rgb(244 239 217 / 0.4);
  color: var(--muted);
  font-size: 0.88rem;
}

.manifesto {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 720px;
  padding: 150px 20px 110px;
  overflow: hidden;
  text-align: center;
}

.manifesto::before {
  position: absolute;
  z-index: -1;
  top: 64px;
  width: min(74vw, 870px);
  aspect-ratio: 1;
  border: 42px solid var(--red);
  border-radius: 50%;
  content: "";
  opacity: 0.92;
}

.manifesto__burst {
  position: absolute;
  top: 28px;
  right: 8%;
  color: var(--blue);
  font-size: 10rem;
  line-height: 1;
  transform: rotate(12deg);
}

.manifesto__kicker {
  margin: 0 0 44px;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.manifesto__quote {
  max-width: 1050px;
  margin: 0 0 60px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.94;
  text-transform: uppercase;
}

.manifesto__quote strong {
  color: var(--red);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
}

.source-link {
  font-size: 0.68rem;
}

.national-notice {
  position: relative;
  width: min(100% - 40px, 1240px);
  margin: 0 auto 140px;
  border: var(--border);
  background: var(--blue);
  box-shadow: 14px 14px 0 var(--ink);
  overflow: hidden;
}

.national-notice::before {
  position: absolute;
  top: 52px;
  right: -80px;
  width: 330px;
  aspect-ratio: 1;
  border: 45px solid rgb(244 239 217 / 0.35);
  border-radius: 50%;
  content: "";
}

.national-notice__bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 13px 20px;
  border-bottom: var(--border);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.national-notice__bar span:last-child {
  text-align: right;
}

.national-notice__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
  align-items: center;
  padding: 70px 64px 58px;
}

.national-notice__stamp {
  display: grid;
  width: min(100%, 260px);
  aspect-ratio: 1;
  place-content: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--red);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.national-notice__stamp span {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.national-notice__stamp small {
  margin-top: 10px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.national-notice__copy h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 7.3rem);
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-transform: uppercase;
}

.national-notice__copy h2 span {
  display: block;
  color: var(--red);
  text-shadow: 4px 4px 0 var(--ink);
  -webkit-text-stroke: 2px var(--ink);
}

.national-notice__punch {
  max-width: 700px;
  margin: 42px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.national-notice__punch strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.national-notice__closing {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 22px 64px;
  border-top: var(--border);
  background: var(--paper);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  text-align: center;
}

.national-notice__closing strong {
  color: var(--red);
  font-weight: 900;
}

.story {
  padding: 140px max(20px, calc((100vw - 1240px) / 2));
  border-top: var(--border);
}

.story__intro {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  column-gap: 80px;
  align-items: end;
}

.story__intro .eyebrow {
  align-self: start;
}

.story__intro h2 {
  grid-column: 1 / -1;
}

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

.story__intro > p:last-child {
  grid-column: 2;
  max-width: 590px;
  margin: 44px 0 70px;
  font-size: 1.28rem;
}

.story-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border: var(--border);
  box-shadow: 7px 7px 0 var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.story-card--blue {
  background: var(--blue);
}

.story-card--yellow {
  background: var(--yellow);
  transform: translateY(34px);
}

.story-card--yellow:hover {
  transform: translate(4px, 38px);
}

.story-card--red {
  background: var(--red);
}

.story-card--cream {
  background: var(--white);
  transform: translateY(34px);
}

.story-card--cream:hover {
  transform: translate(4px, 38px);
}

.story-card__number {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--display);
  font-size: 4.5rem;
  letter-spacing: -0.1em;
  line-height: 1;
  opacity: 0.16;
}

.story-card__meta {
  margin: 0 0 70px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card h3,
.legacy h3 {
  max-width: 500px;
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.story-card > p:last-child {
  max-width: 560px;
  margin: 0;
}

.legacy {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 1.35fr;
  gap: 70px;
  align-items: center;
  margin-top: 110px;
  padding: 52px;
  border: var(--border);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
}

.legacy__stamp {
  margin: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10rem);
  letter-spacing: -0.1em;
  line-height: 0.8;
  transform: rotate(-5deg);
}

.legacy h3 {
  max-width: none;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
}

.legacy > div > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
}

.interview {
  padding: 140px max(20px, calc((100vw - 1240px) / 2));
}

.interview__heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  column-gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.interview__heading .eyebrow {
  grid-column: 1 / -1;
}

.interview__heading h2 span {
  color: var(--yellow);
}

.interview__heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.video-frame--interview {
  border-color: var(--ink);
  background: var(--blue);
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(0.5deg);
}

.interview__footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 46px;
}

.interview__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.interview__footer p a {
  color: var(--paper);
  font-weight: 700;
}

.finale {
  position: relative;
  padding: 160px max(20px, calc((100vw - 1240px) / 2)) 80px;
  overflow: hidden;
}

.finale::after {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -170px;
  width: 500px;
  aspect-ratio: 1;
  border: 75px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.finale__pre {
  margin: 0 0 24px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.finale h2 {
  font-size: clamp(4.6rem, 12vw, 12rem);
}

.finale h2 span {
  display: block;
  color: var(--red);
  text-shadow: 5px 5px 0 var(--ink);
  -webkit-text-stroke: 2px var(--ink);
}

.finale__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
  padding-top: 24px;
  border-top: var(--border);
}

.finale__line p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.finale__line a {
  display: grid;
  width: 62px;
  aspect-ratio: 1;
  place-content: center;
  border: var(--border);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform 150ms ease;
}

.finale__line a:hover {
  transform: translateY(-5px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 42px max(20px, calc((100vw - 1240px) / 2));
  border-top: var(--border);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.68rem;
}

.site-footer p {
  margin: 0;
}

.site-footer__brand {
  margin-bottom: 8px !important;
  color: var(--yellow);
}

.site-footer > p {
  color: var(--muted);
}

.site-footer > a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

.hero-poster.reveal.is-visible {
  transform: rotate(2deg);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 70px;
  }

  .hero__copy {
    max-width: 800px;
  }

  .hero-poster {
    width: min(100%, 620px);
    min-height: 500px;
    justify-self: end;
  }

  .hero__aside {
    position: static;
    grid-column: 1;
  }

  .section-heading,
  .viral__grid,
  .interview__heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .viral__grid {
    gap: 70px;
  }

  .viral__story {
    max-width: 650px;
  }

  .interview__heading {
    gap: 36px;
  }

  .legacy {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .national-notice__body {
    grid-template-columns: 1fr;
  }

  .national-notice__stamp {
    width: 190px;
  }

  .legacy__stamp {
    font-size: 7rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --page: min(100% - 28px, 1240px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand__place,
  .header-badge span {
    display: none;
  }

  .header-badge {
    padding: 7px 9px;
    font-size: 0.6rem;
  }

  .hero {
    min-height: 0;
    padding: 62px 0 70px;
  }

  .hero__title {
    font-size: clamp(4rem, 21vw, 6.3rem);
  }

  .hero__title span {
    text-shadow:
      2px 2px 0 var(--paper),
      5px 5px 0 var(--ink);
  }

  .hero__lead {
    margin-top: 34px;
  }

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

  .hero-poster {
    min-height: 470px;
    padding: 18px;
  }

  .hero-poster__number {
    margin-top: 28px;
    font-size: 8.5rem;
  }

  .hero-poster__arrows {
    margin-inline: -18px;
    font-size: 5.2rem;
  }

  .hero-poster__claim {
    right: 18px;
    left: 18px;
  }

  .ticker__track {
    font-size: 1rem;
  }

  .viral,
  .story,
  .interview {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .story__intro h2,
  .interview__heading h2 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .video-frame {
    padding: 7px;
    box-shadow: 7px 7px 0 var(--blue);
  }

  .manifesto {
    min-height: 660px;
    padding: 120px 16px 90px;
  }

  .manifesto::before {
    top: 100px;
    width: 580px;
    border-width: 28px;
  }

  .manifesto__burst {
    right: -20px;
    font-size: 7rem;
  }

  .manifesto__quote {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .manifesto__quote strong {
    -webkit-text-stroke-width: 1px;
    text-shadow: 3px 3px 0 var(--ink);
  }

  .source-link {
    max-width: 320px;
    line-height: 1.5;
  }

  .national-notice {
    width: min(100% - 28px, 1240px);
    margin-bottom: 100px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .national-notice__bar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: 14px;
    font-size: 0.55rem;
  }

  .national-notice__bar span:nth-child(2) {
    display: none;
  }

  .national-notice__body {
    gap: 46px;
    padding: 50px 24px 42px;
  }

  .national-notice__stamp {
    width: 155px;
  }

  .national-notice__copy h2 {
    font-size: clamp(3rem, 14.5vw, 4.8rem);
  }

  .national-notice__copy h2 span {
    text-shadow: 3px 3px 0 var(--ink);
    -webkit-text-stroke-width: 1px;
  }

  .national-notice__closing {
    padding: 20px 24px;
    text-align: left;
  }

  .story__intro {
    display: block;
  }

  .story__intro > p:last-child {
    margin: 34px 0 52px;
  }

  .story-list {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card--yellow,
  .story-card--cream {
    min-height: 355px;
    padding: 28px;
    transform: none;
  }

  .story-card--yellow:hover,
  .story-card--cream:hover {
    transform: translate(4px, 4px);
  }

  .story-card__meta {
    margin-bottom: 55px;
  }

  .legacy {
    margin-top: 70px;
    padding: 34px 26px;
    box-shadow: 7px 7px 0 var(--red);
  }

  .interview__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .finale {
    padding-top: 110px;
  }

  .finale h2 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .finale h2 span {
    text-shadow: 3px 3px 0 var(--ink);
    -webkit-text-stroke-width: 1px;
  }

  .finale__line {
    align-items: flex-start;
    gap: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer > a {
    grid-column: auto;
  }
}

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

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

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