@font-face {
  font-family: "KG Miss Steward";
  src: url("fonts/KGMissSteward.ttf?v=20260730-36") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #121724;
  --paper: #f7efdf;
  --red: #ef473b;
  --blue: #2566e8;
  --yellow: #f3d547;
  --mint: #73e6b1;
  --white: #fffdf5;
  --border: 3px solid var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "KG Miss Steward", sans-serif;
  font-weight: 400;
}

body.is-loading {
  overflow: hidden;
}

main {
  transition: filter .25s ease, transform .25s ease;
}

body.video-modal-open {
  overflow: hidden;
}

body.video-modal-open main {
  filter: blur(7px);
  transform: scale(.985);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    repeating-linear-gradient(-8deg, var(--yellow) 0 22px, #f9e76a 22px 44px);
  color: var(--ink);
  transition: opacity .35s ease, visibility .35s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  position: relative;
  width: min(520px, 100%);
  padding: 34px 30px 28px;
  border: var(--border);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  text-align: center;
  transform: rotate(-1deg);
}

.preloader-card::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px dashed var(--ink);
  pointer-events: none;
}

.preloader-stamp {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 15px 7px;
  border: 2px solid var(--ink);
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 18px;
  transform: rotate(2deg);
}

.preloader-title {
  position: relative;
  z-index: 1;
  margin: 22px 0 12px;
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 6px 6px 0 var(--ink);
  font-size: clamp(54px, 13vw, 96px);
  line-height: .76;
  letter-spacing: -3px;
}

.preloader-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(210px, 58vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(5px 5px 0 var(--ink));
}

.preloader-bar {
  position: relative;
  z-index: 1;
  height: 25px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.preloader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--blue);
  animation: preload-slide 1s linear infinite;
}

@keyframes preload-slide {
  from { transform: translateX(-105%); }
  to { transform: translateX(245%); }
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.line-highlight {
  position: relative;
  z-index: 0;
  display: inline;
  padding-inline: 2px;
  background:
    linear-gradient(
      180deg,
      transparent 48%,
      rgba(243, 213, 71, .95) 48%,
      rgba(243, 213, 71, .95) 86%,
      transparent 86%
    );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.line-highlight::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: .08em;
  z-index: -1;
  height: .18em;
  background: var(--red);
  transform: rotate(-1deg);
  opacity: .8;
}

.top-strip {
  overflow: hidden;
  height: 35px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 2px solid var(--ink);
  white-space: nowrap;
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  min-height: 35px;
  font-size: 14px;
  letter-spacing: 1.3px;
  animation: crawl 24s linear infinite;
}

.strip-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.strip-group span,
.strip-group i {
  display: inline-block;
  padding: 0 14px;
}

.strip-track span,
.strip-group span {
  color: var(--yellow);
}

.strip-track i,
.strip-group i {
  font-style: normal;
}

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

.nav {
  position: relative;
  z-index: 20;
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 158px;
  min-height: 46px;
}

.brand-logo {
  display: inline-block;
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
  font-size: 25px;
  line-height: .82;
  white-space: nowrap;
  transform: rotate(-2deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 3px;
  background: var(--red);
  transition: right .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.social-soon {
  padding: 10px 12px 8px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 13px;
}

.menu-button {
  display: none;
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 8px 12px;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 28px;
  padding-block: 46px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.eyebrow span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--ink);
}

.hero h1 {
  margin: 18px 0 20px;
  display: flex;
  align-items: baseline;
  gap: .11em;
  white-space: nowrap;
  font-size: clamp(74px, 7.8vw, 126px);
  line-height: .82;
  letter-spacing: -3px;
}

.hero h1 span {
  display: inline-block;
}

.word-scam {
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow:
    2px 0 0 var(--ink),
    -2px 0 0 var(--ink),
    0 2px 0 var(--ink),
    0 -2px 0 var(--ink),
    6px 6px 0 var(--ink);
  transform: rotate(-2deg);
  transform-origin: left center;
}

.word-fauci {
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow:
    2px 0 0 var(--ink),
    -2px 0 0 var(--ink),
    0 2px 0 var(--ink),
    0 -2px 0 var(--ink),
    6px 6px 0 var(--ink);
}

.hero-lede {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.28;
  margin: 35px 0 28px;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 55px;
  padding: 15px 20px 11px;
  border: var(--border);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}

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

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

.button.secondary {
  background: var(--white);
}

.button b {
  font-size: 25px;
  line-height: .6;
}

.ca-box {
  width: min(690px, 100%);
  margin-top: 27px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 13px 15px 10px;
  background: var(--white);
  border: 2px dashed var(--ink);
  cursor: pointer;
}

.ca-box span {
  font-size: 12px;
  opacity: .65;
}

.ca-box strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  letter-spacing: .4px;
  line-height: 1.25;
}

.ca-box i {
  font-style: normal;
  font-size: 12px;
  color: var(--blue);
}

.hero-art {
  position: relative;
  align-self: end;
  height: 650px;
  overflow: hidden;
  isolation: isolate;
  border: var(--border);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-art img {
  position: absolute;
  z-index: -1;
  width: 610px;
  max-width: none;
  height: auto;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  filter: drop-shadow(8px 5px 0 var(--ink));
}

.ticker {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  border-block: var(--border);
  transform: rotate(-1deg);
  margin-inline: -5px;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  top: 6px;
  border-top: 3px solid var(--blue);
}

.ticker::after {
  bottom: 6px;
  border-bottom: 3px solid var(--red);
}

.ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding-block: 16px 12px;
  font-size: 21px;
  animation: crawl 42s linear infinite reverse;
}

.ticker.ticker-forward {
  transform: rotate(1deg);
}

.ticker.ticker-forward > div {
  animation-direction: normal;
}

.ticker i {
  font-style: normal;
  color: var(--white);
}

.story-section {
  padding: 125px 0;
}

.story-board {
  position: relative;
  margin-bottom: 78px;
  transform: rotate(.7deg);
}

.story-board::before {
  content: "FOLLOW THE FILES";
  position: absolute;
  z-index: 2;
  left: 24px;
  top: -22px;
  padding: 12px 17px 8px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-4deg);
  font-size: 15px;
}

.story-board img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
  border: var(--border);
  box-shadow: 10px 10px 0 var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.12fr;
  gap: 38px;
}

.story-copy h2,
.launch-heading h2,
.how-title h2 {
  margin: 0;
  font-size: clamp(55px, 6vw, 88px);
  line-height: .84;
  letter-spacing: -3px;
}

.story-copy h2 em {
  color: var(--red);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}

.story-body {
  padding-top: 10px;
}

.story-body p {
  font-size: 18px;
  line-height: 1.42;
}

.story-body .dropcap::first-letter {
  float: left;
  font-size: 70px;
  line-height: .68;
  padding: 8px 7px 0 0;
  color: var(--red);
}

.context-note {
  padding: 14px;
  background: var(--yellow);
  border-left: 6px solid var(--ink);
  font-size: 14px !important;
}

.news-card {
  margin-top: 26px;
  display: block;
  padding: 19px 19px 16px;
  background: var(--white);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}

.news-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  margin-bottom: 17px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.news-card:hover,
.news-card:focus-visible {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--ink);
}

.news-card span,
.news-card i {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: var(--blue);
  letter-spacing: 1px;
}

.news-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin: 13px 0 17px;
}

.meme-video-card {
  margin-top: 27px;
  padding: 13px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--ink);
  cursor: zoom-in;
  transform: rotate(-.6deg);
  transition: transform .18s ease, box-shadow .18s ease;
}

.meme-video-card:hover,
.meme-video-card:focus-visible {
  transform: rotate(-.6deg) translate(3px, 3px) scale(1.015);
  box-shadow: 3px 3px 0 var(--ink);
  outline: none;
}

.meme-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
  border: 2px solid var(--ink);
  cursor: zoom-in;
}

.meme-video-card strong {
  display: block;
  margin-top: 13px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: .95;
}

.meme-video-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 1px;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(18, 23, 36, .54);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.video-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-card {
  width: min(1040px, calc(100vw - 42px));
  padding: 18px;
  background: var(--yellow);
  border: 7px solid var(--ink);
  box-shadow: 15px 15px 0 var(--red), 23px 23px 0 var(--ink);
  transform: rotate(-.7deg) scale(.86);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}

.video-lightbox.is-open .video-lightbox-card {
  transform: rotate(-.7deg) scale(1);
}

.video-lightbox-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
  border: 4px solid var(--ink);
}

.video-lightbox-card strong {
  display: block;
  margin-top: 15px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 72px);
  line-height: .88;
  letter-spacing: -2px;
}

.video-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 13px 17px 10px;
  border: var(--border);
  background: var(--red);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
}

.launch-section {
  background: var(--ink);
  color: var(--white);
  padding: 110px 0;
}

.launch-heading {
  display: block;
}

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

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border: 3px solid var(--white);
}

.fact-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 3px solid var(--white);
}

.fact-grid article:last-child {
  border-right: 0;
}

.fact-grid article.accent {
  background: var(--red);
}

.fact-grid article.status-card {
  background: var(--blue);
}

.fact-grid span,
.fact-grid i {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 1px;
}

.fact-grid strong {
  font-size: 34px;
  line-height: .95;
}

.fact-grid i {
  color: var(--yellow);
}

.launch-warning {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
  padding: 21px 24px 17px;
  border: 3px dashed var(--yellow);
}

.launch-warning strong {
  color: var(--yellow);
}

.launch-warning p {
  margin: 0;
  line-height: 1.4;
}

.chart-panel {
  position: relative;
  margin-top: 44px;
  padding: 22px;
  background: var(--paper);
  border: 3px solid var(--white);
  box-shadow: 9px 9px 0 rgba(255, 255, 255, .18), 13px 13px 0 var(--red);
  color: var(--ink);
}

.chart-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--ink);
}

.chart-label span {
  color: var(--blue);
  letter-spacing: 1px;
  font-size: 13px;
}

.chart-label strong {
  font-size: clamp(28px, 4vw, 48px);
  line-height: .9;
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  background: var(--ink);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
}

@media (min-width: 1400px) {
  #dexscreener-embed {
    padding-bottom: 65%;
  }
}

#dexscreener-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  border: 0;
}

.how-section {
  padding: 120px 0;
}

.how-title {
  display: block;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  gap: 22px;
}

.steps article {
  position: relative;
  padding: 30px 27px 25px;
  min-height: 240px;
  border: var(--border);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.steps article:nth-child(2) {
  background: var(--yellow);
  transform: rotate(1.5deg);
}

.steps article:nth-child(3) {
  background: var(--mint);
  transform: rotate(-1deg);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: var(--red);
  color: white;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.steps h3 {
  margin: 32px 0 10px;
  font-size: 27px;
}

.steps p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.social-panel {
  margin-top: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px;
  border: var(--border);
  background: var(--red);
  color: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
}

.social-panel span {
  display: block;
  font-size: 12px;
  color: var(--yellow);
}

.social-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 32px;
}

.social-buttons {
  display: flex;
  gap: 10px;
}

.social-buttons a {
  padding: 14px 17px 11px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  opacity: 1;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}

.social-buttons a:hover,
.social-buttons a:focus-visible,
.social-soon:hover,
.social-soon:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.social-buttons a:last-child {
  background: var(--mint);
}

.faq-section {
  padding: 115px 0;
  background: var(--white);
  border-top: var(--border);
}

.faq-heading {
  display: block;
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.7vw, 82px);
  line-height: .86;
  letter-spacing: -2px;
}

.faq-list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list details {
  border: var(--border);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.faq-list details:nth-child(4n+2),
.faq-list details:nth-child(4n+3) {
  background: var(--yellow);
}

.faq-list details[open] {
  background: var(--mint);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 14px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  line-height: 1.12;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--white);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--blue);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 19px;
  font-size: 15px;
  line-height: 1.43;
}

.faq-list strong {
  color: var(--red);
}

footer {
  overflow: hidden;
  padding-top: 65px;
  background: var(--yellow);
  border-top: var(--border);
}

.footer-words {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  min-height: clamp(470px, 45vw, 620px);
  display: grid;
  align-content: center;
}

.footer-word {
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: clamp(120px, 19vw, 280px);
  line-height: .75;
  letter-spacing: -9px;
  color: var(--white);
  -webkit-text-stroke: 4px var(--ink);
  text-shadow: 9px 9px 0 var(--ink);
  text-align: center;
  white-space: nowrap;
}

.footer-word + .footer-word {
  margin-top: .08em;
}

.footer-word:nth-child(1) {
  color: var(--white);
}

.footer-word:nth-child(2) {
  color: var(--mint);
}

.footer-word:nth-child(3) {
  color: var(--red);
}

.footer-logo {
  position: absolute;
  z-index: 2;
  left: 54%;
  bottom: 0;
  width: min(460px, 36vw);
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(7px 0 0 var(--ink));
  pointer-events: none;
}

.footer-bottom {
  position: relative;
  margin-top: 0;
  min-height: 115px;
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 45px;
  border-top: var(--border);
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.footer-bottom span {
  white-space: nowrap;
}

@media (max-width: 940px) {
  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .word-scam,
  .word-fauci {
    -webkit-text-stroke-width: 1px;
    text-shadow:
      1px 0 0 var(--ink),
      -1px 0 0 var(--ink),
      0 1px 0 var(--ink),
      0 -1px 0 var(--ink),
      4px 4px 0 var(--ink);
  }

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

  .hero-art {
    width: min(600px, 100%);
    justify-self: center;
  }

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

  .story-board {
    margin-bottom: 58px;
  }

  .story-body {
    grid-column: auto;
  }

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

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

  .fact-grid article:nth-child(2) {
    border-right: 0;
  }

  .fact-grid article:nth-child(-n+2) {
    border-bottom: 3px solid var(--white);
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 26px, 1180px);
  }

  .nav {
    min-height: 76px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    padding: 22px;
    background: var(--paper);
    border: var(--border);
    box-shadow: 6px 6px 0 var(--ink);
    flex-direction: column;
    align-items: stretch;
    font-size: 17px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-art {
    order: 1;
  }

  .hero h1 {
    font-size: clamp(45px, 16vw, 82px);
    letter-spacing: -1px;
  }

  .word-scam,
  .word-fauci {
    -webkit-text-stroke-width: .65px;
    text-shadow:
      .65px 0 0 var(--ink),
      -.65px 0 0 var(--ink),
      0 .65px 0 var(--ink),
      0 -.65px 0 var(--ink),
      3px 3px 0 var(--ink);
  }

  .brand {
    min-width: 128px;
  }

  .brand-logo {
    font-size: 20px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .ca-box {
    grid-template-columns: 1fr auto;
  }

  .ca-box strong {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .hero-art {
    height: 360px;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .hero-art img {
    width: min(360px, 88vw);
    bottom: -10px;
  }

  .story-section,
  .launch-section,
  .how-section {
    padding-block: 82px;
  }

  .story-board {
    margin-bottom: 48px;
    transform: rotate(.4deg);
  }

  .story-board::before {
    left: 12px;
    top: -17px;
    font-size: 12px;
  }

  .story-board img {
    aspect-ratio: 1.65 / 1;
  }

  .story-grid,
  .launch-heading,
  .how-title,
  .faq-heading {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .story-body {
    grid-column: auto;
  }

  .story-copy h2,
  .launch-heading h2,
  .how-title h2,
  .faq-heading h2 {
    font-size: clamp(49px, 15vw, 72px);
  }

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

  .fact-grid article {
    min-height: 205px;
    border-right: 0;
    border-bottom: 3px solid var(--white);
  }

  .fact-grid article:last-child {
    border-bottom: 0;
  }

  .launch-warning {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .social-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .social-buttons {
    flex-direction: column;
  }

  .faq-section {
    padding-block: 82px;
  }

  .faq-list {
    margin-top: 38px;
  }

  .faq-list summary {
    min-height: 66px;
    font-size: 17px;
  }

  .footer-word {
    font-size: clamp(34px, 20.5vw, 78px);
    letter-spacing: -3px;
    -webkit-text-stroke-width: 2px;
    text-shadow: 5px 5px 0 var(--ink);
  }

  .footer-words {
    min-height: 330px;
  }

  .footer-logo {
    bottom: 0;
    left: 54%;
    width: min(245px, 58vw);
    filter: drop-shadow(4px 0 0 var(--ink));
  }

  .footer-bottom {
    margin-top: 0;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
}

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

  .strip-track,
  .ticker > div,
  .preloader-bar span {
    animation: none;
  }

  * {
    transition: none !important;
  }
}
