:root {
  --mud: #352115;
  --mud-deep: #17100b;
  --cream: #f7f0d8;
  --paper: #fffaf0;
  --yellow: #f4c800;
  --blue: #46b7ff;
  --red: #ef442f;
  --ink: #12100d;
  --line: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-marker: "Comic Sans MS", "Bradley Hand", cursive;
  --font-body: "Arial Black", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgb(255 255 255 / 0.38), transparent 26rem),
    var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(18 16 13 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(18 16 13 / 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

a {
  color: inherit;
}

button,
a {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 4px solid var(--blue);
}

img {
  display: block;
  width: 100%;
}

figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--yellow);
  border: var(--line);
  transform: translateY(-160%);
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgb(247 240 216 / 0.93);
  border-bottom: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 50%;
  filter: contrast(1.08) saturate(0.75);
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.nav-links a,
.footer-links a,
.footer-links button {
  position: relative;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: 800 0.78rem/1 var(--font-body);
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
}

.nav-links a::after,
.footer-links a::after,
.footer-links button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.footer-links a:hover::after,
.footer-links button:hover::after {
  transform: scaleX(1) rotate(-1deg);
}

.button {
  display: inline-flex;
  min-height: 49px;
  padding: 11px 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: var(--line);
  color: var(--ink);
  font: 900 0.83rem/1 var(--font-body);
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 9px 15px;
}

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

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

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

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

.button-outline {
  border-color: var(--paper);
  background: transparent;
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--yellow);
}

.hero {
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 108px) clamp(18px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  background:
    linear-gradient(118deg, transparent 0 68%, rgb(244 200 0 / 0.65) 68% 74%, transparent 74%),
    var(--cream);
}

.eyebrow,
.section-number {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
}

.eyebrow span {
  width: 12px;
  height: 12px;
  display: inline-block;
  border: 2px solid var(--ink);
  background: var(--red);
  transform: rotate(45deg);
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4.2rem, 9vw, 7.4rem);
  transform: rotate(-1.5deg);
  text-shadow: 5px 5px 0 var(--yellow), 8px 8px 0 var(--ink);
}

h1 span {
  display: inline-block;
  color: var(--red);
  transform: translateY(-0.04em) rotate(3deg);
}

h2 {
  font-size: clamp(2.7rem, 5.4vw, 5.3rem);
}

.hero-kicker {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.hero-answer {
  width: fit-content;
  margin: 14px 0 34px;
  padding: 5px 10px;
  background: var(--yellow);
  font-family: var(--font-marker);
  font-size: 1.15rem;
  font-weight: 800;
  transform: rotate(-1deg);
}

.hero-answer strong {
  text-decoration: underline 4px var(--red);
  text-underline-offset: 4px;
}

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

.ca-strip {
  width: min(100%, 680px);
  min-height: 50px;
  margin-top: 28px;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  overflow: hidden;
  border: var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.ca-strip span,
.ca-strip code {
  display: flex;
  align-items: center;
  padding: 10px 13px;
}

.ca-strip code {
  min-width: 0;
  overflow: hidden;
  font: 700 0.85rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-label {
  background: var(--red);
  color: var(--paper);
}

.copy-label {
  border-left: 2px solid var(--ink);
  background: var(--yellow);
}

.hero-art,
.utility-art,
.moon-art,
.final-mark {
  position: relative;
  transform: rotate(1.8deg);
  transform-style: preserve-3d;
}

.hero-art img,
.utility-art img,
.moon-art img,
.final-mark img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border: var(--line);
  filter: contrast(1.08) saturate(0.86);
  box-shadow: var(--shadow);
}

figcaption {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: -14px auto 0;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--font-marker);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-1deg);
}

.sticker {
  position: absolute;
  top: -31px;
  right: -33px;
  z-index: 3;
  width: 108px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--blue);
  font: 900 0.78rem/1.05 var(--font-body);
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.tape {
  position: absolute;
  z-index: 4;
  width: 110px;
  height: 32px;
  background: rgb(244 200 0 / 0.84);
  border-left: 1px dashed rgb(18 16 13 / 0.36);
  border-right: 1px dashed rgb(18 16 13 / 0.36);
}

.tape-one {
  top: 5px;
  left: -31px;
  transform: rotate(-38deg);
}

.ticker {
  overflow: hidden;
  border-block: var(--line);
  background: var(--yellow);
  transform: rotate(-0.6deg) scale(1.01);
}

.ticker-track {
  width: max-content;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  letter-spacing: 0.04em;
  animation: ticker 20s linear infinite;
}

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

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

.section-pad {
  padding: clamp(80px, 11vw, 150px) clamp(18px, 5vw, 78px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 58px;
}

/* .section-heading h2 {
  max-width: 13ch;
} */

.section-number {
  width: fit-content;
  padding: 6px 9px;
  border: 2px solid currentColor;
  background: var(--yellow);
}

.receipt {
  background: var(--paper);
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.tweet-card,
.choice-card,
.roadmap-art,
.parade-art {
  position: relative;
}

.tweet-card img,
.choice-card img,
.roadmap-art img,
.parade-art img {
  width: 100%;
  /* aspect-ratio: 16 / 10; */
  object-fit: cover;
  border: var(--line);
  box-shadow: var(--shadow);
}

.tweet-card {
  transform: rotate(-1.2deg);
}

.choice-card {
  margin-top: 70px;
  transform: rotate(1.2deg);
}

.choice-card figcaption {
  width: calc(100% - 28px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  text-align: left;
}

.choice-card figcaption span {
  color: var(--red);
  font-size: 0.7rem;
}

.choice-card figcaption strong:last-child {
  background: var(--yellow);
}

.utility,
.moon,
.final-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

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

.utility-art img,
.moon-art img {
  aspect-ratio: 4 / 3;
}

.utility-copy,
.moon-copy {
  max-width: 680px;
}

.utility-copy h2,
.moon-copy h2 {
  margin-bottom: 30px;
}

.utility-copy h2 em {
  display: inline-block;
  color: var(--red);
  font-style: normal;
  transform: rotate(-3deg);
  text-shadow: 3px 3px 0 var(--ink);
  -webkit-text-stroke: 1px var(--paper);
}

.utility-copy p,
.moon-copy p {
  max-width: 52ch;
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 650;
}

.utility-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.utility-copy li {
  padding: 10px 0;
  border-bottom: 2px dashed var(--ink);
  font-size: 0.98rem;
}

.utility-copy li span {
  margin-right: 10px;
  color: var(--red);
}

.roadmap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  background: var(--mud-deep);
  color: var(--paper);
}

.roadmap .section-number {
  color: var(--ink);
}

.steps {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  border-bottom: 2px dashed rgb(255 250 240 / 0.44);
}

.steps b {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.steps span {
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.steps strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-body);
}

.roadmap-art img {
  border-color: var(--paper);
  box-shadow: 8px 8px 0 var(--yellow);
}

.roadmap-art figcaption {
  color: var(--ink);
}

.moon {
  background:
    radial-gradient(circle at 80% 25%, rgb(70 183 255 / 0.28), transparent 22rem),
    var(--cream);
}

.moon-art {
  transform: rotate(-1.8deg);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.92rem;
  text-underline-offset: 7px;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--red);
}

.text-link:hover {
  color: var(--red);
}

.community {
  position: relative;
  overflow: hidden;
  background: var(--blue);
}

.community::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 260px;
  aspect-ratio: 1;
  border: 30px solid var(--yellow);
  border-radius: 50%;
}

.community-head {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 0.55fr 1.2fr auto;
  gap: 28px;
  align-items: end;
}

.community-head .section-number {
  align-self: start;
}

.parade-art img {
  aspect-ratio: 16 / 7;
  box-shadow: 9px 9px 0 var(--ink);
}

.final-cta {
  background: var(--mud);
  color: var(--paper);
}

.final-mark {
  max-width: 510px;
}

.final-mark img {
  aspect-ratio: 1;
  border-color: var(--paper);
  box-shadow: 10px 10px 0 var(--yellow);
}

.final-mark figcaption {
  color: var(--ink);
}

.scribble {
  width: fit-content;
  margin: 0 0 18px;
  padding: 4px 9px;
  background: var(--red);
  color: var(--paper);
  font: 800 1rem/1.2 var(--font-marker);
  transform: rotate(-2deg);
}

.final-copy h2 {
  margin-bottom: 36px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

footer {
  padding: 38px clamp(18px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 36px;
  align-items: end;
  border-top: var(--line);
  background: var(--yellow);
}

footer strong,
footer span {
  display: block;
}

footer strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

footer span,
footer p {
  font-family: var(--font-marker);
  font-size: 0.78rem;
  font-weight: 800;
}

footer p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 2px dashed var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  padding: 14px 18px;
  border: var(--line);
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-marker);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
  opacity: 0;
  transform: translateY(25px) rotate(2deg);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .site-header .button {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    width: min(78%, 610px);
    margin: 30px auto 0;
  }

  .section-heading,
  .receipt-grid,
  .community-head {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
  }

  .choice-card {
    margin-top: 12px;
  }

  .utility,
  .roadmap,
  .moon,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .roadmap-art {
    order: -1;
  }

  .community-head .button {
    width: fit-content;
  }

  .parade-art img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-header .button-small {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.72rem;
    box-shadow: 3px 3px 0 var(--red);
  }

  .hero {
    padding-top: 55px;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5.4rem);
    text-shadow: 3px 3px 0 var(--yellow), 6px 6px 0 var(--ink);
  }

  h2,
  .final-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .ca-strip {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .copy-label {
    display: none !important;
  }

  .hero-art {
    width: calc(100% - 28px);
  }

  .sticker {
    right: -18px;
    width: 88px;
  }

  .section-pad {
    padding-block: 78px;
  }

  .tweet-card img,
  .choice-card img,
  .roadmap-art img,
  .parade-art img,
  .utility-art img,
  .moon-art img {
    aspect-ratio: auto;
  }

  .utility,
  .moon,
  .final-cta {
    gap: 50px;
  }

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

  .footer-links {
    gap: 18px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    text-align: center;
  }
}

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

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

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