:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #66615b;
  --paper: #fffaf0;
  --panel: #ffffff;
  --line: #1f1d1a;
  --red: #e83d3d;
  --yellow: #ffd84d;
  --blue: #2d6cdf;
  --green: #20a676;
  --pink: #ff6fae;
  --shadow: 8px 8px 0 #171717;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 3px solid var(--line);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 3px solid var(--line);
  background: var(--yellow);
  font-weight: 850;
  box-shadow: 4px 4px 0 var(--line);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a,
.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  padding: 8px 14px;
  background: var(--panel);
  text-decoration: none;
  font-weight: 750;
  box-shadow: 3px 3px 0 var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav a:hover,
.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--line);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(34px, 7vw, 92px) clamp(18px, 4vw, 56px);
  border-bottom: 3px solid var(--line);
}

.hero-art {
  min-height: 520px;
  position: relative;
}

.poster {
  position: absolute;
  width: min(58%, 390px);
  min-height: 285px;
  border: 4px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    radial-gradient(circle at 20% 20%, var(--yellow) 0 8px, transparent 9px),
    radial-gradient(circle at 80% 65%, var(--blue) 0 7px, transparent 8px);
  background-size: 36px 36px;
}

.poster-one {
  left: 0;
  top: 4%;
  rotate: -4deg;
  background: #fff2bf;
}

.poster-two {
  right: 1%;
  top: 24%;
  rotate: 3deg;
  background: #dff2ff;
}

.poster-three {
  left: 18%;
  bottom: 0;
  rotate: 1deg;
  background: #ffe5ef;
}

.stamp,
.bubble,
.paper,
.stage,
.crowd,
.meter,
.caption {
  position: absolute;
  z-index: 1;
}

.stamp {
  left: 26px;
  top: 28px;
  border: 4px solid var(--red);
  color: var(--red);
  padding: 8px 12px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 850;
  text-transform: uppercase;
  rotate: -10deg;
}

.paper {
  width: 110px;
  height: 138px;
  border: 3px solid var(--line);
  background: white;
  bottom: 76px;
}

.paper::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 70px;
  height: 58px;
  background: repeating-linear-gradient(var(--line) 0 3px, transparent 3px 14px);
}

.paper-a {
  left: 46px;
  rotate: -9deg;
}

.paper-b {
  right: 54px;
  rotate: 11deg;
}

.bubble {
  right: 34px;
  top: 30px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--yellow);
  padding: 14px 20px;
  font-weight: 850;
  font-size: 1.25rem;
}

.bubble-alt {
  left: 28px;
  right: auto;
  top: 88px;
  background: var(--red);
  color: white;
}

.meter {
  left: 34px;
  right: 34px;
  bottom: 92px;
  height: 36px;
  border: 3px solid var(--line);
  background: white;
}

.meter i {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--green);
}

.stage {
  left: 30px;
  right: 30px;
  top: 42px;
  height: 72px;
  border: 3px solid var(--line);
  background: var(--blue);
}

.stage::before,
.stage::after {
  content: "";
  position: absolute;
  bottom: -76px;
  width: 38px;
  height: 88px;
  border: 3px solid var(--line);
  background: white;
}

.stage::before {
  left: 66px;
}

.stage::after {
  right: 66px;
}

.crowd {
  left: 32px;
  right: 32px;
  height: 42px;
  background: repeating-linear-gradient(90deg, var(--line) 0 14px, transparent 14px 22px);
}

.crowd-a {
  bottom: 104px;
}

.crowd-b {
  bottom: 72px;
  transform: translateX(10px);
}

.caption {
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-top: 4px solid var(--line);
  background: var(--panel);
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #3d3935;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary {
  background: var(--red);
  color: white;
}

.secondary {
  background: var(--yellow);
}

.ticker {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 13px clamp(18px, 4vw, 56px);
  border-bottom: 3px solid var(--line);
  background: var(--ink);
  color: white;
  font-weight: 750;
  white-space: nowrap;
}

.ticker span {
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  padding-right: 18px;
}

.section {
  padding: clamp(44px, 8vw, 96px) clamp(18px, 4vw, 56px);
  border-bottom: 3px solid var(--line);
}

.split,
.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}

.split > p,
.section-head > p {
  max-width: 760px;
  color: #3d3935;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.meme-card {
  display: grid;
  min-height: 500px;
  grid-template-rows: 1fr auto;
  border: 4px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.meme-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-bottom: 4px solid var(--line);
  background: var(--card-bg);
}

.meme-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 3px solid var(--line);
  background:
    linear-gradient(var(--card-accent) 0 0) top left / 42% 18px no-repeat,
    linear-gradient(var(--card-accent) 0 0) bottom right / 34% 18px no-repeat,
    rgba(255, 255, 255, 0.62);
}

.meme-figure {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 142px;
  height: 142px;
  transform: translate(-50%, -50%);
  border: 4px solid var(--line);
  border-radius: 50%;
  background: var(--card-accent);
}

.meme-figure::before,
.meme-figure::after {
  content: "";
  position: absolute;
  background: var(--line);
}

.meme-figure::before {
  left: 28px;
  top: 45px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 62px 0 0 var(--line);
}

.meme-figure::after {
  left: 40px;
  top: 90px;
  width: 62px;
  height: 10px;
}

.meme-tag {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 1;
  border: 3px solid var(--line);
  background: white;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.meme-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  border: 3px solid var(--line);
  background: var(--yellow);
  padding: 11px 12px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.meme-body {
  padding: 18px;
}

.meme-body p {
  color: #403c38;
}

.meme-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  border: 2px solid var(--line);
  padding: 5px 8px;
  background: #f4f4f4;
  font-size: 0.78rem;
  font-weight: 750;
}

.timeline-section {
  background: #f2f8ff;
}

.timeline {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 130px 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 3px solid var(--line);
  padding: 16px;
  background: white;
  box-shadow: 5px 5px 0 var(--line);
}

.timeline time,
.timeline strong {
  font-weight: 850;
}

.timeline time {
  color: var(--red);
}

.copyright {
  background: #fff6d8;
}

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

.policy-grid article {
  border: 3px solid var(--line);
  padding: 18px;
  background: white;
  box-shadow: 5px 5px 0 var(--line);
}

.legal-note {
  max-width: 880px;
  margin: 24px 0 0;
  color: #4a453f;
}

.sources {
  background: #f5fff8;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.source-list a {
  display: block;
  border: 3px solid var(--line);
  padding: 14px 16px;
  background: white;
  font-weight: 750;
  text-decoration-thickness: 2px;
  box-shadow: 4px 4px 0 var(--line);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: white;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    order: 2;
    min-height: 460px;
  }

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

  .timeline li {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .timeline li span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav a {
    flex: 1 1 auto;
  }

  .hero-art {
    min-height: 560px;
  }

  .poster {
    width: 82%;
    min-height: 240px;
  }

  .poster-one {
    left: 0;
    top: 0;
  }

  .poster-two {
    right: 0;
    top: 168px;
  }

  .poster-three {
    left: 6%;
    bottom: 0;
  }

  .meme-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .meme-card {
    min-height: 460px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
