:root {
  --blue: #073f91;
  --blue-dark: #05275c;
  --red: #ef2635;
  --yellow: #ffd43b;
  --paper: #fffdf5;
  --ink: #090909;
  --white: #ffffff;
  --shadow: 8px 8px 0 var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

.campaign-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  place-items: center;
  gap: clamp(0.75rem, 2vh, 1.5rem);
  min-height: 100dvh;
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 212, 59, 0.95) 0 2px, transparent 3px) 0 0 / 26px 26px,
    var(--blue);
  transition: transform 500ms cubic-bezier(.77, 0, .18, 1), opacity 300ms ease 150ms;
}

.campaign-loader::before,
.campaign-loader::after {
  content: "";
  position: absolute;
  left: -5%;
  z-index: -1;
  width: 110%;
  height: clamp(48px, 9vh, 92px);
  background: repeating-linear-gradient(165deg, var(--red) 0 34px, var(--paper) 34px 68px);
  border-block: 5px solid var(--ink);
}

.campaign-loader::before { top: clamp(74px, 12vh, 120px); transform: rotate(-1deg); }
.campaign-loader::after { bottom: clamp(88px, 15vh, 150px); transform: rotate(1deg); }
.campaign-loader[hidden] { display: none; }
.campaign-loader.is-exiting { transform: translateY(-105%); opacity: 0; }

.loader-stars {
  position: absolute;
  inset: 1rem 1.25rem auto auto;
  color: var(--yellow);
  font-size: clamp(1rem, 2vw, 1.75rem);
  letter-spacing: 0.35em;
  text-shadow: 3px 3px 0 var(--ink);
  transform: rotate(4deg);
}

.loader-lockup {
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: 0.07em;
  text-shadow: 4px 4px 0 var(--ink);
}

.loader-lockup strong {
  display: inline-block;
  min-width: 4.6ch;
  padding: 0.15rem 0.55rem;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.82em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
  transform: rotate(-3deg);
}

.loader-race {
  position: relative;
  z-index: 2;
  width: min(1080px, 92vw);
  align-self: center;
  animation: chase-arrival 650ms cubic-bezier(.2, .8, .2, 1) both;
}

.loader-race img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 54vh;
  object-fit: contain;
  filter: drop-shadow(10px 12px 0 rgba(0, 0, 0, 0.9));
  animation: campaign-bob 400ms ease-in-out infinite alternate;
}

.loader-road {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 8%;
  height: 13px;
  background: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: 0 8px 0 var(--red);
  transform: skewX(-20deg);
}

.loader-status {
  z-index: 2;
  width: min(760px, 92vw);
  padding: 0.8rem 1rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 5px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(-0.5deg);
}

.loader-copy { display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.loader-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.035em;
}
.loader-copy span { color: var(--red); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(1.4rem, 4vw, 2.8rem); }
.loader-status > p { margin: 0.45rem 0 0; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.16em; }

.loader-bar { height: 25px; margin-top: 0.7rem; overflow: hidden; background: var(--white); border: 4px solid var(--ink); }
.loader-bar span { display: block; width: 0%; height: 100%; background: repeating-linear-gradient(135deg, var(--red) 0 18px, var(--yellow) 18px 36px); transition: width 90ms linear; }

.loader-skip {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: var(--ink);
  border: 3px solid var(--white);
  box-shadow: 4px 4px 0 var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

@keyframes chase-arrival {
  from { transform: translateX(-120vw) rotate(-3deg); }
  to { transform: translateX(0) rotate(0); }
}

@keyframes campaign-bob {
  from { transform: translateY(-5px) rotate(-0.35deg); }
  to { transform: translateY(6px) rotate(0.35deg); }
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  border: 3px solid var(--ink);
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem clamp(1rem, 4vw, 4.5rem);
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.brand-star {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  transform: rotate(-6deg);
}

nav { display: flex; gap: 2rem; }
nav a {
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover, nav a:focus-visible { text-decoration: underline 3px var(--red); text-underline-offset: 6px; }

.header-cta {
  justify-self: end;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.header-cta:hover, .header-cta:focus-visible { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 6vw, 7rem) 8rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0 2px, transparent 3px) 0 0 / 19px 19px,
    var(--blue);
  border-bottom: 5px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 48%;
  height: 100%;
  background: repeating-linear-gradient(175deg, var(--red) 0 12%, var(--paper) 12% 24%);
  border-left: 5px solid var(--ink);
  z-index: -2;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0 8px, rgba(0,0,0,0.08) 8px 9px);
  mix-blend-mode: multiply;
}

.hero-copy { color: var(--white); max-width: 720px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow span { width: 38px; height: 5px; background: var(--yellow); border: 1px solid var(--ink); }
.eyebrow-dark { color: var(--ink); }

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

h1 {
  margin-bottom: 0.5rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.6rem, 8.5vw, 8.5rem);
  line-height: 0.82;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-text-stroke: 4px var(--ink);
  paint-order: stroke fill;
  filter: drop-shadow(9px 9px 0 var(--ink));
}
h1 span { display: inline; color: var(--red); }

.hero-kicker {
  margin: 1.8rem 0 1rem;
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-shadow: 3px 3px 0 var(--ink);
}

.hero-body { max-width: 560px; font-size: 1.08rem; font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.button:hover, .button:focus-visible { transform: translate(4px, 4px); box-shadow: 2px 2px 0 var(--ink); }
.button-primary { color: var(--ink); background: var(--yellow); }
.button-secondary { color: var(--ink); background: var(--paper); }
.button-x { color: var(--white); background: var(--ink); }
.button-telegram { color: var(--white); background: #168ac0; }

.hero-art { position: relative; width: min(768px, 100%); aspect-ratio: 1; min-width: 0; justify-self: center; }
.art-burst {
  position: absolute;
  inset: -7% -9%;
  background: var(--yellow);
  clip-path: polygon(50% 0, 58% 31%, 78% 8%, 73% 36%, 100% 30%, 78% 50%, 100% 68%, 72% 64%, 77% 94%, 57% 70%, 49% 100%, 41% 71%, 18% 92%, 27% 62%, 0 69%, 22% 49%, 0 29%, 29% 36%, 22% 7%, 42% 31%);
  border: 5px solid var(--ink);
  transform: rotate(4deg);
}
.pfp-card {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  background: var(--paper);
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}
.pfp-card img { display: block; width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; }

.sticker {
  position: absolute;
  z-index: 3;
  margin: 0;
  padding: 0.55rem 0.9rem;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  letter-spacing: 0.08em;
}
.sticker-top { top: -1.6rem; right: -1.3rem; color: var(--white); background: var(--red); transform: rotate(7deg); }

.contract-card {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  width: min(1040px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.25rem;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  transform: translateX(-50%) rotate(-0.35deg);
}
.contract-card > div { min-width: 0; }
.contract-label { display: block; margin-bottom: 0.2rem; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.contract-card code { display: block; font-size: clamp(0.78rem, 1.5vw, 1rem); font-weight: 800; overflow-wrap: anywhere; }
.icon-copy {
  flex: 0 0 auto;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.ticker { overflow: hidden; color: var(--ink); background: var(--yellow); border-bottom: 5px solid var(--ink); }
.ticker-track { display: flex; width: max-content; animation: ticker 20s linear infinite; }
.ticker span { padding: 0.85rem 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 1.35rem; letter-spacing: 0.08em; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

.podium-section { position: relative; min-height: 360px; overflow: hidden; background: var(--ink); border-bottom: 5px solid var(--ink); }
.podium-section img { width: 100%; height: clamp(360px, 42vw, 660px); object-fit: cover; object-position: center; opacity: 0.92; }
.podium-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.12) 55%, transparent); }
.podium-caption { position: absolute; z-index: 2; left: clamp(1rem, 7vw, 7rem); top: 50%; transform: translateY(-50%) rotate(-1deg); color: var(--white); }
.podium-caption p { width: fit-content; margin-bottom: 0.8rem; padding: 0.35rem 0.7rem; color: var(--ink); background: var(--yellow); border: 3px solid var(--ink); font-weight: 900; text-transform: uppercase; }
.podium-caption h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3rem, 6.5vw, 6.5rem); line-height: 0.9; letter-spacing: 0.02em; text-shadow: 6px 6px 0 var(--ink); }

.section { padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 7vw, 7rem); }
.sightings {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(0,0,0,0.08) 50%, transparent 50.5%) 0 0 / 32px 32px,
    var(--yellow);
  border-bottom: 5px solid var(--ink);
}
.sightings-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.sightings-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -0.8rem; }
.sightings-heading h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(4rem, 8vw, 8rem); line-height: 0.8; color: var(--red); -webkit-text-stroke: 3px var(--ink); paint-order: stroke fill; filter: drop-shadow(8px 8px 0 var(--ink)); }
.sightings-heading > p:last-child { justify-self: end; max-width: 440px; margin: 0 0 0.4rem; font-size: clamp(1.2rem, 2vw, 1.8rem); line-height: 1.15; font-weight: 900; }
.sightings-grid { display: grid; grid-template-columns: 1fr; gap: clamp(3rem, 7vw, 7rem); max-width: 1080px; margin-inline: auto; }
.sighting-card { display: grid; width: min(768px, 100%); margin: 0; background: transparent; }
.sighting-card:nth-child(odd) { justify-self: start; }
.sighting-card:nth-child(even) { justify-self: end; }
.sighting-card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; background: var(--paper); border: 5px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); }
.sighting-card figcaption { display: flex; align-items: center; gap: 0.75rem; width: fit-content; max-width: calc(100% - 10px); margin-top: 1.25rem; padding: 0.75rem 1rem; color: var(--ink); background: var(--paper); border: 4px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(1rem, 1.6vw, 1.35rem); letter-spacing: 0.035em; text-transform: uppercase; }
.sighting-card figcaption span { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; color: var(--white); background: var(--blue); border: 3px solid var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 0.8rem; font-weight: 900; }
.sightings-secondary { background: var(--paper); }
.sightings-secondary .sightings-heading h2 { color: var(--blue); }
.sightings-final { color: var(--white); background: var(--red); }
.sightings-final .sightings-heading h2 { color: var(--yellow); }
.sightings-final .eyebrow span { background: var(--white); }
.lore { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem, 8vw, 9rem); background: var(--paper); border-bottom: 5px solid var(--ink); }
.section-heading h2, .how h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(4.5rem, 9vw, 9rem); line-height: 0.8; letter-spacing: -0.02em; }
.section-heading h2 { color: var(--blue); text-shadow: 7px 7px 0 var(--yellow), 11px 11px 0 var(--ink); }
.lore-copy { max-width: 780px; font-size: 1.05rem; }
.lead { font-size: clamp(1.6rem, 3vw, 2.7rem); line-height: 1.1; font-weight: 900; }
.truth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.truth-grid article { padding: 1.25rem; background: var(--white); border: 4px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); transform: rotate(-1deg); }
.truth-grid article:nth-child(2) { transform: rotate(1.5deg); }
.truth-grid article:nth-child(3) { transform: rotate(-0.5deg); }
.truth-grid span { color: var(--red); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 2rem; }
.truth-grid h3 { margin: 0.4rem 0; font-size: 1.05rem; text-transform: uppercase; }
.truth-grid p { margin: 0; font-size: 0.92rem; }

.how {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 7vw, 7rem);
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.15) 0 2px, transparent 2px) 0 0 / 18px 18px,
    var(--blue-dark);
  border-bottom: 5px solid var(--ink);
}
.how h2 { color: var(--yellow); text-shadow: 7px 7px 0 var(--ink); }
.how-intro > p:last-child { max-width: 420px; margin-top: 2rem; font-weight: 700; }
.steps { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.steps li { display: flex; align-items: center; gap: 1.25rem; padding: 1.2rem; color: var(--ink); background: var(--paper); border: 4px solid var(--ink); box-shadow: 6px 6px 0 var(--red); }
.step-number { flex: 0 0 54px; display: grid; place-items: center; width: 54px; height: 54px; color: var(--white); background: var(--red); border: 3px solid var(--ink); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 1.75rem; }
.steps h3 { margin: 0 0 0.25rem; font-size: 1.1rem; text-transform: uppercase; }
.steps p { margin: 0; }
.ca-poster { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; margin-top: 2rem; padding: 1rem; color: var(--ink); background: var(--yellow); border: 5px solid var(--ink); box-shadow: 10px 10px 0 var(--red); transform: rotate(0.5deg); }
.ca-poster span { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 1.25rem; white-space: nowrap; }
.ca-poster strong { min-width: 0; font-family: "Courier New", monospace; font-size: 0.9rem; overflow-wrap: anywhere; }
.ca-poster button { padding: 0.65rem 0.9rem; color: var(--white); background: var(--blue); border: 3px solid var(--ink); font-weight: 900; cursor: pointer; }

footer { display: grid; grid-template-columns: 1fr 1.4fr 1.4fr; gap: 2rem; align-items: start; padding: 3rem clamp(1rem, 7vw, 7rem); color: var(--white); background: var(--ink); }
.footer-brand { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 2.5rem; letter-spacing: 0.05em; }
.footer-brand span { color: var(--yellow); }
footer p { margin-bottom: 0; font-size: 0.85rem; color: #d7d7d7; }
.risk { color: var(--yellow); }
.copyright { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid #444; font-size: 0.75rem; letter-spacing: 0.08em; }

.toast { position: fixed; left: 50%; bottom: 1.5rem; z-index: 100; padding: 0.8rem 1.2rem; color: var(--white); background: var(--ink); border: 3px solid var(--yellow); box-shadow: 5px 5px 0 var(--red); font-weight: 900; letter-spacing: 0.08em; transform: translate(-50%, 160%); transition: transform 180ms ease; }
.toast.show { transform: translate(-50%, 0); }

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

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-bottom: 9rem; }
  .hero::before { width: 100%; height: 42%; border-left: 0; border-top: 5px solid var(--ink); top: auto; bottom: 0; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-art { width: min(540px, 90%); margin: 1rem auto; }
  .contract-card { bottom: 1.25rem; }
  .lore, .how { grid-template-columns: 1fr; }
  .sightings-heading { grid-template-columns: 1fr; }
  .sightings-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .sightings-heading > p:last-child { justify-self: start; }
  .sightings-grid { grid-template-columns: 1fr; }
  .truth-grid { grid-template-columns: 1fr; }
  .ca-poster { grid-template-columns: 1fr; }
  .ca-poster button { width: fit-content; }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (max-width: 600px) {
  .campaign-loader {
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: clamp(0.35rem, 1vh, 0.75rem);
    height: 100dvh;
    min-height: 0;
    padding:
      max(0.75rem, env(safe-area-inset-top))
      max(0.75rem, env(safe-area-inset-right))
      max(0.75rem, env(safe-area-inset-bottom))
      max(0.75rem, env(safe-area-inset-left));
  }
  .campaign-loader::before { top: 62px; height: 48px; }
  .campaign-loader::after { bottom: 136px; height: 44px; }
  .loader-stars { display: none; }
  .loader-lockup { font-size: clamp(1.15rem, 5.5vw, 1.55rem); }
  .loader-race {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 620px;
    min-height: 0;
    transform-origin: center;
  }
  .loader-race img {
    width: 100%;
    height: auto;
    max-height: min(40dvh, 330px);
    filter: drop-shadow(6px 8px 0 rgba(0, 0, 0, 0.9));
  }
  .loader-road { left: 1%; right: 1%; bottom: 4%; height: 10px; }
  .loader-status {
    width: 100%;
    max-width: 520px;
    padding: 0.65rem 0.7rem 0.75rem;
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
    transform: none;
  }
  .loader-copy { gap: 0.45rem; }
  .loader-copy h2 { min-width: 0; font-size: clamp(1.5rem, 7.8vw, 2.35rem); white-space: nowrap; }
  .loader-copy span { flex: 0 0 auto; font-size: clamp(1.1rem, 6vw, 1.8rem); }
  .loader-status > p { font-size: 0.65rem; letter-spacing: 0.1em; }
  .loader-bar { height: 20px; margin-top: 0.55rem; border-width: 3px; }
  .loader-skip {
    position: static;
    justify-self: center;
    margin-top: 0.15rem;
    padding: 0.55rem 0.7rem;
    transform: none;
  }
  .site-header { min-height: 62px; padding: 0.55rem 0.65rem; gap: 0.5rem; }
  .brand { gap: 0.4rem; font-size: clamp(1rem, 5vw, 1.2rem); }
  .brand-star { width: 28px; height: 28px; border-width: 2px; }
  .header-cta { padding: 0.5rem 0.6rem; border-width: 2px; box-shadow: 3px 3px 0 var(--ink); font-size: 0.68rem; white-space: nowrap; }
  .hero {
    width: 100%;
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    padding: 2.5rem 1rem 13rem;
    overflow: clip;
  }
  .hero-copy,
  .hero-actions,
  .hero-art,
  .sightings-heading,
  .sightings-heading > *,
  .lore > *,
  .how > *,
  .steps li > div { min-width: 0; }
  .hero-copy { width: 100%; }
  .eyebrow { gap: 0.5rem; font-size: 0.7rem; line-height: 1.3; letter-spacing: 0.09em; }
  .eyebrow span { flex: 0 0 28px; width: 28px; }
  h1 {
    display: flex;
    width: 100%;
    font-size: clamp(3.5rem, 20vw, 5rem);
    letter-spacing: -0.045em;
    white-space: nowrap;
    -webkit-text-stroke-width: 3px;
    filter: drop-shadow(6px 6px 0 var(--ink));
  }
  h1 span { min-width: 0; }
  .hero-kicker br { display: none; }
  .hero-body { max-width: 100%; font-size: 0.98rem; }
  .hero-actions { width: 100%; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
  .button { width: calc(100% - 6px); min-height: 50px; padding: 0.7rem 0.9rem; border-width: 3px; box-shadow: 5px 5px 0 var(--ink); }
  .hero-art { width: calc(100% - 1rem); max-width: 390px; margin: 0.5rem auto 0; }
  .pfp-card { border-width: 4px; box-shadow: 8px 8px 0 var(--ink); }
  .sticker-top { top: -1rem; right: 0.15rem; }
  .contract-card {
    width: calc(100% - 1.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.75rem;
    box-shadow: 5px 5px 0 var(--ink);
    transform: translateX(-50%);
  }
  .contract-card code { font-size: 0.72rem; line-height: 1.35; }
  .icon-copy { align-self: flex-end; padding: 0.5rem 0.65rem; font-size: 0.75rem; }
  .podium-section img { height: 360px; object-position: 57% center; }
  .podium-caption { left: 1rem; right: 1rem; top: auto; bottom: 1.4rem; width: auto; transform: none; }
  .podium-caption p { max-width: 100%; padding: 0.3rem 0.5rem; font-size: 0.7rem; }
  .podium-caption h2 { font-size: clamp(2.2rem, 10.8vw, 2.9rem); line-height: 0.92; text-shadow: 4px 4px 0 var(--ink); }
  .section { width: 100%; padding: 3.5rem 1rem; }
  .section-heading h2, .how h2 { font-size: clamp(3.1rem, 15vw, 3.8rem); text-shadow: 4px 4px 0 var(--ink); }
  .section-heading h2 { text-shadow: 4px 4px 0 var(--yellow), 7px 7px 0 var(--ink); }
  .sightings-heading { gap: 1rem; margin-bottom: 2rem; }
  .sightings-heading h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13.5vw, 3.45rem);
    line-height: 0.86;
    -webkit-text-stroke-width: 2px;
    filter: drop-shadow(4px 4px 0 var(--ink));
    overflow-wrap: anywhere;
  }
  .sightings-heading > p:last-child { max-width: 100%; font-size: 1.05rem; }
  .sightings-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .sighting-card, .sighting-card:nth-child(n) { grid-column: auto; width: calc(100% - 8px); transform: none; }
  .sighting-card img { border-width: 4px; box-shadow: 7px 7px 0 var(--ink); }
  .sighting-card figcaption { max-width: calc(100% - 6px); margin-top: 1rem; padding: 0.6rem 0.7rem; border-width: 3px; box-shadow: 4px 4px 0 var(--ink); font-size: 0.9rem; }
  .sighting-card figcaption span { flex-basis: 32px; width: 32px; height: 32px; border-width: 2px; font-size: 0.7rem; }
  .lead { font-size: clamp(1.35rem, 6.5vw, 1.7rem); }
  .truth-grid { gap: 0.85rem; margin-top: 2rem; }
  .truth-grid article { transform: none !important; }
  .how-intro > p:last-child { margin-top: 1.25rem; }
  .steps li { align-items: flex-start; gap: 0.75rem; padding: 0.85rem; box-shadow: 4px 4px 0 var(--red); }
  .step-number { flex-basis: 42px; width: 42px; height: 42px; font-size: 1.45rem; }
  .steps h3 { font-size: 0.98rem; }
  .steps p { font-size: 0.9rem; }
  .ca-poster { gap: 0.65rem; margin-top: 1.5rem; padding: 0.75rem; border-width: 4px; box-shadow: 5px 5px 0 var(--red); transform: none; }
  .ca-poster span { font-size: 1rem; white-space: normal; }
  .ca-poster strong { font-size: 0.72rem; line-height: 1.35; word-break: break-all; }
  .ca-poster button { width: 100%; }
  footer { gap: 1.25rem; padding: 2.5rem 1rem; }
  .footer-brand { font-size: 2rem; }
  .toast { width: calc(100% - 2rem); text-align: center; }
}

@media (max-width: 350px) {
  .site-header { padding-inline: 0.45rem; }
  .brand-star { display: none; }
  h1 { font-size: 19vw; }
  .section { padding-inline: 0.75rem; }
  .sightings-heading h2 { font-size: 12.8vw; }
}

@media (max-height: 600px) and (orientation: landscape) {
  .campaign-loader {
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
  }
  .campaign-loader::before { top: 44px; height: 34px; }
  .campaign-loader::after { bottom: 62px; height: 30px; }
  .loader-stars { display: none; }
  .loader-lockup { font-size: 1.1rem; }
  .loader-race { width: min(64vw, 520px); min-height: 0; }
  .loader-race img { max-height: 32dvh; }
  .loader-status { width: min(560px, 74vw); padding: 0.35rem 0.55rem 0.45rem; border-width: 3px; box-shadow: 4px 4px 0 var(--ink); transform: none; }
  .loader-copy h2 { font-size: clamp(1.25rem, 4vw, 1.8rem); }
  .loader-copy span { font-size: clamp(1rem, 3vw, 1.4rem); }
  .loader-bar { height: 15px; margin-top: 0.3rem; border-width: 2px; }
  .loader-status > p { display: none; }
  .loader-skip { position: static; justify-self: center; margin-top: 0.1rem; padding: 0.45rem 0.6rem; transform: none; }
}

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