:root {
  --paper: #ece9e1;
  --paper-bright: #faf8f2;
  --ink: #23302d;
  --ink-soft: #606b67;
  --blue: #346b63;
  --blue-dark: #1f4e48;
  --red: #bd6b55;
  --yellow: #c2a45c;
  --green: #779684;
  --line: rgba(35, 48, 45, 0.22);
  --shadow: 8px 8px 0 #23302d;
  --display: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a,
button {
  color: inherit;
}

button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 14px clamp(22px, 4vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 223, 0.94);
  backdrop-filter: blur(10px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 55px);
}

.desktop-nav a {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 25px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

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

.button--small {
  min-height: 42px;
  padding: 0 18px;
}

.button--dark {
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--red);
  color: white;
}

.button--dark:hover {
  box-shadow: 1px 1px 0 var(--red);
}

.button--light {
  border-color: white;
  background: white;
  box-shadow: 5px 5px 0 var(--red);
  color: var(--ink);
}

.button--light:hover {
  box-shadow: 1px 1px 0 var(--red);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  background:
    radial-gradient(circle at 51% 32%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(rgba(20, 34, 74, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 34, 74, 0.055) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  display: flex;
  flex-direction: column;
}

.hero::before,
.hero::after {
  position: absolute;
  top: 0;
  bottom: 59px;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero::before {
  left: 8vw;
}

.hero::after {
  right: 8vw;
}

.network-lines {
  position: absolute;
  top: 14%;
  right: 0;
  left: 0;
  width: 100%;
  height: 310px;
  fill: none;
  opacity: 0.28;
  pointer-events: none;
  stroke: var(--blue);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.network-lines__nodes {
  fill: var(--paper);
  stroke-width: 1.5;
}

.network-lines__dead-ends {
  stroke: var(--red);
  stroke-width: 1.75;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1140px, 84vw);
  margin: 0 auto;
  padding: 65px 0 90px;
  text-align: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(35px, 6vh, 70px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.date-stamp {
  padding: 6px 9px;
  border: 1px solid var(--ink);
}

.kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__title-wrap {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: clamp(67px, 10vw, 144px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.76;
}

.hero h1 span {
  display: block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.46em;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__scribble {
  width: 60%;
  height: 35px;
  margin-top: 7px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-width: 3;
}

.hero__dek {
  max-width: 840px;
  margin: clamp(28px, 5vh, 48px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
}

.hero__dek strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.95em;
  font-weight: 500;
  white-space: nowrap;
}

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

.text-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.race-strip {
  z-index: 2;
  display: flex;
  height: 59px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: white;
}

.race-strip__label {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(20px, 4vw, 60px);
  border-right: 2px solid white;
  background: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.race-strip__label span {
  padding: 2px 5px;
  background: white;
  color: var(--red);
}

.ticker {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

.ticker__track span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

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

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

.section-shell {
  padding-inline: max(7vw, 24px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.section-label span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

.section-label p {
  margin: 0;
}

.section-label::after {
  height: 1px;
  background: currentColor;
  content: "";
  flex: 1;
  opacity: 0.25;
}

.statement {
  position: relative;
  padding-top: clamp(90px, 12vw, 160px);
  padding-bottom: clamp(100px, 14vw, 180px);
}

.statement::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24vw;
  height: 24vw;
  background:
    linear-gradient(45deg, transparent 47%, rgba(38, 71, 216, 0.18) 48% 52%, transparent 53%);
  background-size: 20px 20px;
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.paper-card {
  position: relative;
  z-index: 1;
  width: min(910px, 100%);
  margin: 0 auto;
  border: 1px solid var(--ink);
  background:
    linear-gradient(rgba(20, 34, 74, 0.04) 1px, transparent 1px),
    var(--paper-bright);
  background-size: 100% 31px;
  box-shadow: var(--shadow);
}

.paper-card__meta {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.statement__copy {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: clamp(40px, 7vw, 85px) clamp(30px, 8vw, 100px) 35px;
  font-size: 17px;
  line-height: 1.75;
}

.statement__copy p {
  margin: 0;
}

.statement__lead {
  color: var(--blue-dark);
  font-size: clamp(21px, 2.5vw, 29px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.4 !important;
}

.statement blockquote {
  position: relative;
  margin: 20px clamp(30px, 8vw, 100px) 40px;
  padding: 38px 38px 40px;
  border: 2px solid var(--blue);
  background: rgba(38, 71, 216, 0.06);
  color: var(--blue-dark);
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.statement blockquote svg {
  position: absolute;
  top: -17px;
  left: 24px;
  width: 45px;
  padding: 5px;
  background: var(--paper-bright);
  fill: var(--red);
}

.statement blockquote p {
  margin: 0;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(30px, 8vw, 100px) 70px;
}

.signature-line__mark {
  flex: 0 0 auto;
  padding: 8px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--mono);
  font-weight: 500;
  transform: rotate(-4deg);
}

.signature-line p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.signature-line strong {
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 500;
}

.paper-card__punches {
  position: absolute;
  top: 90px;
  left: -8px;
  display: flex;
  flex-direction: column;
  gap: 145px;
}

.paper-card__punches span {
  width: 15px;
  height: 15px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.standings {
  position: relative;
  padding-top: clamp(90px, 10vw, 135px);
  padding-bottom: clamp(100px, 13vw, 170px);
  background:
    radial-gradient(circle at 12% 17%, rgba(189, 107, 85, 0.12), transparent 20%),
    linear-gradient(rgba(35, 48, 45, 0.035) 1px, transparent 1px),
    #e5e9e4;
  background-size: auto, 100% 31px, auto;
  color: var(--ink);
}

.standings::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 150px;
  height: 42px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(var(--ink), var(--ink)) 82px 14px / 20px 13px no-repeat,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 25px 100%,
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 14px;
  content: "";
}

.standings__header,
.unsignatories__heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}

.standings__header h2,
.unsignatories__heading h2,
.cta h2 {
  margin: 0;
  font-size: clamp(43px, 6.5vw, 86px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.standings__header p,
.unsignatories__heading p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.report-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 17px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: rgba(250, 248, 242, 0.68);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.report-meta span:last-child {
  color: var(--red);
}

.scoreboard {
  border: 1px solid var(--ink);
  background: rgba(250, 248, 242, 0.58);
  font-family: var(--mono);
}

.scoreboard__row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.75fr;
  gap: 28px;
  align-items: center;
  min-height: 90px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.scoreboard__row strong {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.scoreboard__head {
  min-height: 48px;
  background: rgba(35, 48, 45, 0.05);
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.scoreboard__row:last-child {
  border-bottom: 0;
}

.scoreboard__row > :nth-child(2):not(.redaction) {
  color: var(--ink-soft);
  font-size: 13px;
}

.scoreboard__row > :nth-child(3) {
  justify-self: start;
}

.pill {
  width: max-content;
  padding: 5px 9px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 10px;
}

.pill--hot {
  border-color: var(--red);
  color: var(--red);
}

.pill--warn {
  border-color: var(--yellow);
  color: var(--yellow);
}

.pill--off {
  border-color: var(--line);
  color: var(--ink-soft);
}

.pace {
  color: var(--ink);
  font-size: 28px;
  text-align: left;
}

.pace--muted {
  color: var(--ink-soft);
  font-size: 17px;
}

.redaction {
  display: inline-block;
  width: max-content;
  padding: 3px 7px;
  background: var(--ink);
  color: transparent;
  font-size: 12px;
  transform: rotate(-0.4deg);
  user-select: none;
}

.legend {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.legend__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.legend__dot--green {
  background: var(--green);
}

.legend__dot--amber {
  background: var(--yellow);
}

.legend__dot--red {
  background: var(--red);
}

.unsignatories {
  padding-top: clamp(90px, 12vw, 155px);
  padding-bottom: clamp(100px, 14vw, 175px);
}

.unsignatories__heading p {
  color: var(--ink-soft);
}

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

.quote-card {
  --card-accent: var(--blue);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--card-accent);
  background: var(--paper-bright);
  box-shadow: 0 12px 30px rgba(35, 48, 45, 0.08);
  color: var(--ink);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-card:hover {
  box-shadow: 0 18px 38px rgba(35, 48, 45, 0.13);
  transform: translateY(-5px);
}

.quote-card--blue {
  --card-accent: var(--blue);
  background: #edf2ef;
}

.quote-card--yellow {
  --card-accent: var(--yellow);
  background: #f5f0e3;
}

.quote-card--ink {
  --card-accent: var(--ink);
  background: #e7ebe8;
}

.quote-card--cream {
  --card-accent: #9b8c72;
  background:
    linear-gradient(rgba(35, 48, 45, 0.045) 1px, transparent 1px),
    var(--paper-bright);
  background-size: 100% 31px;
}

.quote-card--green {
  --card-accent: var(--green);
  background: #edf1ec;
}

.quote-card--red {
  --card-accent: var(--red);
  background: #f4ebe7;
}

.quote-card:nth-child(1),
.quote-card:nth-child(7),
.quote-card:nth-child(11) {
  grid-column: span 2;
}

.quote-card:nth-child(16) {
  grid-column: span 2;
}

.quote-card__number {
  position: absolute;
  top: 22px;
  right: 25px;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.55;
}

.quote-card > p {
  max-width: 680px;
  margin: 25px 0 50px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.19;
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
}

.quote-card footer strong {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.quote-card footer span {
  margin-top: 3px;
  font-size: 10px;
  opacity: 0.65;
}

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(110px, 14vw, 185px);
  padding-bottom: clamp(100px, 12vw, 160px);
  overflow: hidden;
  background: var(--blue);
  color: white;
  text-align: center;
}

.cta::before,
.cta::after {
  position: absolute;
  width: 380px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    60px 30px 0 rgba(255, 255, 255, 0.3),
    -80px 62px 0 rgba(255, 255, 255, 0.3);
  content: "";
  transform: rotate(-12deg);
}

.cta::before {
  top: 110px;
  left: -130px;
}

.cta::after {
  right: -90px;
  bottom: 100px;
}

.cta__flag {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  height: 26px;
}

.cta__flag span {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
}

.cta__flag span:nth-child(even) {
  background: transparent;
}

.cta__flag span:nth-child(13) {
  background: var(--ink);
}

.cta .kicker {
  color: var(--yellow);
}

.cta h2 {
  position: relative;
  max-width: 930px;
}

.cta__copy {
  max-width: 690px;
  margin: 28px 0 35px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.8vw, 20px);
}

.cta__fineprint {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  min-height: 150px;
  padding: 35px max(7vw, 24px);
  border-top: 1px solid var(--line);
}

.site-footer > p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.join-dialog {
  width: min(560px, calc(100vw - 28px));
  padding: 46px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper-bright);
  box-shadow: 10px 10px 0 var(--red);
  color: var(--ink);
}

.join-dialog::backdrop {
  background: rgba(20, 34, 74, 0.78);
  backdrop-filter: blur(4px);
}

.join-dialog[open] {
  animation: dialog-in 0.25s ease-out;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
  }
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1;
}

.dialog-stamp {
  width: max-content;
  margin-bottom: 30px;
  padding: 6px 9px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  transform: rotate(-3deg);
}

.join-dialog h2 {
  margin: 0 0 16px;
  font-size: clamp(35px, 7vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.join-dialog > p:not(.kicker, .dialog-fineprint) {
  color: var(--ink-soft);
  font-size: 14px;
}

.join-dialog form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 25px;
}

.join-dialog label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
}

.join-dialog label:has(input:checked) {
  border-color: var(--blue);
  background: rgba(38, 71, 216, 0.06);
}

.join-dialog input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.join-dialog .button {
  width: 100%;
  margin-top: 15px;
}

.dialog-fineprint {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.21, 0.75, 0.35, 1);
}

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

@media (max-width: 1100px) {
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-card:nth-child(n) {
    grid-column: auto;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 92px);
  }

  .standings__header,
  .unsignatories__heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
    text-align: center;
  }

  .site-footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 580px) {
  .site-header {
    min-height: 76px;
    padding: 10px 18px;
  }

  .site-header .wordmark span {
    display: none;
  }

  .site-header .button {
    min-height: 38px;
    padding: 0 12px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 9px;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__inner {
    width: calc(100% - 36px);
    padding: 55px 0 65px;
  }

  .eyebrow-row {
    gap: 8px;
    margin-bottom: 48px;
    font-size: 8px;
  }

  .date-stamp {
    padding: 5px 6px;
  }

  .hero h1 {
    font-size: clamp(60px, 20vw, 94px);
    line-height: 0.8;
  }

  .hero h1 span {
    font-size: 0.38em;
    line-height: 1.55;
  }

  .hero__scribble {
    width: 75%;
    height: 23px;
  }

  .hero__dek {
    max-width: 370px;
    font-size: 16px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .race-strip__label {
    padding: 0 15px;
    font-size: 9px;
  }

  .race-strip__label span {
    display: none;
  }

  .section-label {
    margin-bottom: 38px;
  }

  .paper-card {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .paper-card__meta {
    padding: 12px 14px;
    font-size: 7px;
  }

  .statement__copy {
    padding: 40px 25px 25px;
    font-size: 15px;
    line-height: 1.65;
  }

  .statement blockquote {
    margin: 15px 25px 35px;
    padding: 32px 22px 27px;
    font-size: 19px;
  }

  .signature-line {
    align-items: flex-start;
    padding: 0 25px 45px;
  }

  .paper-card__punches {
    display: none;
  }

  .scoreboard__row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 20px 17px;
  }

  .scoreboard__row > :nth-child(3) {
    display: inline-flex;
    margin-top: 4px;
  }

  .scoreboard__row strong {
    font-size: 14px;
  }

  .pace {
    font-size: 21px;
    text-align: left;
  }

  .scoreboard__head {
    display: none;
  }

  .report-meta {
    flex-direction: column;
    gap: 4px;
  }

  .legend {
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .quote-card {
    min-height: 330px;
  }

  .quote-card > p {
    font-size: 25px;
  }

  .cta h2 {
    font-size: 48px;
  }

  .join-dialog {
    padding: 38px 23px 27px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}

@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;
  }
}

@media print {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .skip-link,
  .toast {
    display: none !important;
  }
}
