@import url("https://fonts.googleapis.com/css2?family=Bangers&family=DM+Mono:wght@400;500&family=Inter:wght@600;700;800;900&display=swap");

:root {
  --ink: #101114;
  --paper: #f3eedf;
  --lime: #c9ff00;
  --yellow: #ffd51e;
  --red: #ff3e2f;
  --blue: #1d55ff;
  --pink: #ff62b0;
  --white: #fffdf5;
  --border: 4px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body::selection { background: var(--pink); }

a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.halftone-page {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: multiply;
  background-image: radial-gradient(circle, #000 0 1px, transparent 1.2px);
  background-size: 5px 5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 62px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--paper);
  border-bottom: var(--border);
}

.site-header::after {
  content: "ISSUE 001";
  position: absolute;
  right: 17px;
  bottom: -23px;
  padding: 5px 10px;
  color: var(--paper);
  background: var(--red);
  border: 3px solid var(--ink);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .12em;
  transform: rotate(2deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  font: 400 31px/1 "Bangers", Impact, sans-serif;
  letter-spacing: .03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50% 44% 48% 42%;
  font-size: 28px;
  transform: rotate(-9deg);
  box-shadow: 3px 3px 0 var(--lime);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 34px);
  font: 800 12px "DM Mono", monospace;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 8px 2px 5px;
  border-bottom: 3px solid transparent;
  transform: rotate(-1deg);
}

.nav-links a:nth-child(even) { transform: rotate(1deg); }
.nav-links a:hover,
.nav-links a:focus-visible { border-color: var(--red); }

.menu-toggle { display: none; }

.btn {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--white);
  border: var(--border);
  box-shadow: 5px 5px 0 var(--ink);
  font: 900 13px "DM Mono", monospace;
  letter-spacing: .02em;
  text-transform: uppercase;
  transform: rotate(-1deg);
  transition: transform .14s ease, box-shadow .14s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(4px, 4px) rotate(0deg);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn span { font-size: 20px; }
.btn-small { min-height: 42px; padding-inline: 17px; }
.btn-ink { color: var(--white); background: var(--ink); box-shadow: 5px 5px 0 var(--red); }
.btn-paper { background: var(--paper); }
.btn-yellow { background: var(--yellow); }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: clamp(45px, 6vw, 82px) clamp(20px, 6vw, 88px) 92px;
  display: grid;
  grid-template-columns: minmax(390px, .84fr) minmax(460px, 1.16fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--yellow);
  border-bottom: 5px solid var(--ink);
}

.hero::before {
  content: "$TUZKI";
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  z-index: -2;
  color: transparent;
  font: 400 clamp(200px, 31vw, 520px)/.7 "Bangers", Impact, sans-serif;
  letter-spacing: -.04em;
  -webkit-text-stroke: 3px rgba(16,17,20,.13);
  transform: rotate(-5deg);
  white-space: nowrap;
}

.hero::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -10%;
  z-index: -3;
  width: 65%;
  height: 155%;
  background: var(--lime);
  border-left: 6px solid var(--ink);
  transform: rotate(8deg);
}

.speed-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .17;
  background: repeating-linear-gradient(165deg, transparent 0 72px, var(--ink) 73px 76px, transparent 77px 119px);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 36% 100%);
}

.hero-copy,
.hero-art { position: relative; min-width: 0; }

.hero-copy::before {
  content: "COVER A";
  position: absolute;
  top: -42px;
  left: 0;
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .18em;
}

.issue-chip,
.kicker {
  display: inline-block;
  padding: 8px 13px 6px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .06em;
  transform: rotate(-2deg);
}

.eyebrow {
  width: fit-content;
  margin: 27px 0 11px;
  padding-bottom: 4px;
  font: 800 12px "DM Mono", monospace;
  letter-spacing: .08em;
  border-bottom: 3px solid var(--ink);
}

h1,
h2 {
  margin: 0;
  font-family: "Bangers", Impact, sans-serif;
  font-weight: 400;
  line-height: .82;
  letter-spacing: .015em;
}

h1 {
  position: relative;
  width: fit-content;
  font-size: clamp(80px, 9.6vw, 154px);
  transform: rotate(-2deg);
}

h1::after {
  content: "THE DEADPAN COIN";
  position: absolute;
  right: -35px;
  bottom: -25px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: .08em;
  transform: rotate(5deg);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

h1 span {
  display: inline-block;
  padding: 4px 12px 1px 8px;
  color: var(--white);
  background: var(--ink);
  -webkit-text-stroke: 0;
  text-shadow: 5px 5px 0 var(--blue);
  transform: skewX(-5deg);
}

h2 em {
  color: var(--white);
  font-style: normal;
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
}

.hero-lede {
  max-width: 530px;
  margin: 35px 0 27px;
  padding-left: 18px;
  border-left: 6px solid var(--red);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 1.42;
}

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

.contract-card {
  position: relative;
  width: min(100%, 610px);
  margin-top: 28px;
  padding: 13px 13px 13px 17px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--blue);
  transform: rotate(.7deg);
}

.contract-card::before {
  content: "CUT HERE →";
  position: absolute;
  top: -20px;
  right: 8px;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: .1em;
}

.contract-card > div { flex: 1; min-width: 0; }
.contract-card span:first-child { display: block; margin-bottom: 4px; font: 900 9px "DM Mono", monospace; letter-spacing: .12em; }
.contract-card code,
.mini-contract code { display: block; overflow: hidden; font: 500 11px "DM Mono", monospace; text-overflow: ellipsis; white-space: nowrap; }

.copy-button {
  flex: 0 0 auto;
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  font: 800 10px "DM Mono", monospace;
  cursor: pointer;
}

.copy-icon { margin-right: 4px; }

.hero-art {
  min-height: 580px;
  display: grid;
  place-items: center;
}

.main-frame {
  position: relative;
  width: min(85%, 620px);
  background: var(--lime);
  border: 0;
  outline: 6px solid var(--ink);
  box-shadow: 18px 18px 0 var(--blue), 25px 25px 0 var(--ink);
  clip-path: polygon(5% 1%, 98% 5%, 93% 94%, 1% 100%);
  transform: rotate(2deg);
  overflow: hidden;
}

.main-frame::before {
  content: "PANEL 01";
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 3;
  padding: 5px 8px;
  color: var(--white);
  background: var(--ink);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: .1em;
}

.main-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #000 0 1.2px, transparent 1.4px) 0 0 / 6px 6px;
  opacity: .1;
  mix-blend-mode: multiply;
}

.main-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.caption-box {
  position: absolute;
  right: -2%;
  bottom: 0;
  z-index: 5;
  padding: 13px 18px 10px;
  color: var(--white);
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
  font: 400 clamp(20px, 2vw, 31px)/.95 "Bangers", Impact, sans-serif;
  transform: rotate(-4deg);
}

.pow-bubble {
  position: absolute;
  top: 3%;
  left: -4%;
  z-index: 6;
  width: 135px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  clip-path: polygon(50% 0, 61% 20%, 82% 7%, 79% 31%, 100% 36%, 80% 52%, 94% 74%, 69% 70%, 65% 100%, 48% 78%, 26% 95%, 29% 70%, 1% 69%, 20% 50%, 0 34%, 27% 31%, 23% 6%, 44% 22%);
  font: 400 37px "Bangers", Impact, sans-serif;
  text-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-12deg);
}

.burst { position: absolute; z-index: 4; font-size: 51px; }
.burst-one { top: 8%; right: 0; color: var(--blue); transform: rotate(11deg); }
.burst-two { bottom: 14%; left: 0; color: var(--red); transform: rotate(-10deg); }
.scroll-cue { position: absolute; bottom: 18px; left: 50%; font: 500 9px "DM Mono", monospace; letter-spacing: .14em; transform: translateX(-50%); }

.ticker {
  position: relative;
  z-index: 10;
  margin-top: -3px;
  padding: 12px 0 10px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-block: 4px solid var(--ink);
  transform: rotate(-.7deg) scale(1.01);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 25px;
  align-items: center;
  font: 400 23px "Bangers", Impact, sans-serif;
  letter-spacing: .05em;
  animation: ticker 30s linear infinite;
}

.ticker-track b { color: var(--yellow); }
@keyframes ticker { to { transform: translateX(-50%); } }

.story-section,
.how-section {
  position: relative;
  padding: 120px clamp(19px, 6vw, 92px) 135px;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(16,17,20,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,17,20,.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.story-section::before,
.how-section::before {
  content: "02";
  position: absolute;
  top: 82px;
  right: clamp(20px, 5vw, 70px);
  color: var(--red);
  font: 400 90px/1 "Bangers", Impact, sans-serif;
  transform: rotate(4deg);
}

.how-section::before { content: "08"; color: var(--blue); }

.section-heading { max-width: 1180px; margin: 0 auto 70px; }
.section-heading .kicker { margin-bottom: 26px; background: var(--ink); }
.section-heading h2 { max-width: 900px; font-size: clamp(65px, 8.4vw, 128px); }
.section-heading h2::after { content: "///"; margin-left: 18px; color: var(--red); -webkit-text-stroke: 0; text-shadow: none; }
.section-heading p { max-width: 560px; margin: 27px 0 0; font-size: 17px; font-weight: 700; line-height: 1.6; }

.comic-story {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 20px;
}

.story-panel {
  position: relative;
  min-width: 0;
  padding: clamp(25px, 3vw, 45px);
  background: var(--white);
  border: var(--border);
  box-shadow: 7px 7px 0 var(--ink);
  overflow: hidden;
}

.story-panel:nth-child(2) { margin: 25px -10px -25px 10px; transform: rotate(1deg); }
.story-panel:nth-child(3) { margin: -10px 13px 10px -7px; transform: rotate(-1.2deg); }
.story-panel h3,
.step-card h3,
.buy-banner h3 { margin: 0 0 17px; font: 400 clamp(34px, 3.3vw, 52px)/.95 "Bangers", Impact, sans-serif; letter-spacing: .025em; }
.story-panel p { margin: 0 0 17px; font-size: 14px; font-weight: 650; line-height: 1.76; }
.story-panel p:last-child { margin-bottom: 0; }

.panel-number {
  width: 45px;
  height: 37px;
  margin-bottom: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font: 400 23px "Bangers", Impact, sans-serif;
  transform: rotate(-4deg);
}

.story-panel-art { min-height: 550px; padding: 0; clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 97%); }
.story-panel-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.13); }
.story-panel-art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(#000 0 1px, transparent 1.2px) 0 0 / 5px 5px; opacity: .09; }

.year-stamp {
  position: absolute;
  top: 28px;
  right: 26px;
  z-index: 2;
  padding: 8px 15px 5px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font: 400 37px "Bangers", Impact, sans-serif;
  transform: rotate(5deg);
}

.panel-caption { position: absolute; right: 18px; bottom: 18px; left: 18px; z-index: 3; padding: 13px 15px; background: var(--yellow); border: 3px solid var(--ink); font: 700 11px/1.5 "DM Mono", monospace; }
.yellow-card { background: var(--pink); }
.speech-bubble { position: absolute; top: 22px; right: 22px; padding: 12px 17px; background: var(--white); border: 3px solid var(--ink); border-radius: 50%; font: 400 24px "Bangers", Impact, sans-serif; transform: rotate(8deg); }

.story-panel-image { min-height: 450px; padding: 20px; display: grid; place-items: center; background: var(--blue); clip-path: polygon(3% 0, 100% 2%, 96% 100%, 0 95%); }
.story-panel-image::before { content: ""; position: absolute; inset: 0; background: repeating-radial-gradient(circle at center, transparent 0 18px, rgba(0,0,0,.14) 20px 22px); }
.story-panel-image img { position: relative; width: 72%; max-height: 340px; object-fit: contain; background: var(--white); border: var(--border); box-shadow: 7px 7px 0 var(--ink); transform: rotate(3deg); }
.sound-effect { position: absolute; top: 25px; left: 21px; color: var(--yellow); font: 400 54px "Bangers", Impact, sans-serif; -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 var(--ink); transform: rotate(-9deg); }

.story-panel-wide,
.story-panel-finale { grid-column: 1 / -1; }
.story-panel-wide { margin-top: 20px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; background: var(--lime); }
.story-panel-wide blockquote { margin: 0; padding: 30px; background: var(--white); border: var(--border); box-shadow: 6px 6px 0 var(--blue); font: 400 clamp(29px, 3vw, 47px)/1.02 "Bangers", Impact, sans-serif; transform: rotate(2deg); }

.story-panel-finale { min-height: 360px; margin-top: 8px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--ink); clip-path: polygon(0 3%, 99% 0, 100% 97%, 1% 100%); }
.story-panel-finale img { width: 100%; height: 100%; object-fit: cover; border-right: var(--border); }
.finale-copy { padding: clamp(30px, 4vw, 58px); align-self: center; }
.finale-copy .panel-number { color: var(--ink); background: var(--yellow); }

.vibes-section {
  position: relative;
  padding: 135px clamp(19px, 6vw, 92px) 150px;
  color: var(--white);
  background: var(--red);
  border-block: 5px solid var(--ink);
  overflow: hidden;
}

.vibes-section::before {
  content: "REACTION / REACTION / REACTION / REACTION";
  position: absolute;
  top: 35px;
  left: -25px;
  width: 110%;
  padding: 9px 0 7px;
  color: var(--ink);
  background: var(--yellow);
  border-block: 3px solid var(--ink);
  font: 400 23px "Bangers", Impact, sans-serif;
  letter-spacing: .1em;
  text-align: center;
  transform: rotate(-1.2deg);
}

.vibes-section::after {
  content: "06—07";
  position: absolute;
  top: 112px;
  right: clamp(20px, 5vw, 70px);
  color: var(--ink);
  font: 400 80px "Bangers", Impact, sans-serif;
  opacity: .3;
  transform: rotate(5deg);
}

.section-heading.light h2 { color: var(--white); }
.section-heading.light h2 em { color: var(--lime); -webkit-text-stroke-color: var(--ink); text-shadow: 5px 5px 0 var(--ink); }
.section-heading.light .kicker { color: var(--ink); background: var(--lime); }

.gif-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: start;
}

.gif-card {
  position: relative;
  grid-column: span 4;
  margin: 0;
  padding: 12px 12px 0;
  color: var(--ink);
  background: var(--white);
  border: var(--border);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .18s ease;
}

.gif-card:nth-child(2),
.gif-card:nth-child(5),
.gif-card:nth-child(8) { margin-top: 36px; }
.gif-card:nth-child(4),
.gif-card:nth-child(9) { grid-column: span 5; }
.gif-card:nth-child(5),
.gif-card:nth-child(6) { grid-column: span 7; }
.gif-card:nth-child(6) { margin-top: -28px; }
.gif-card:hover { z-index: 3; transform: translateY(-8px) rotate(0deg); }
.gif-card img { width: 100%; height: 255px; object-fit: contain; background: #e9e6dc; border: 3px solid var(--ink); filter: contrast(1.06); }
.gif-card figcaption { padding: 15px 5px 14px; font: 700 11px "DM Mono", monospace; text-align: center; }
.tilt-left { transform: rotate(-2deg); }
.tilt-right { transform: rotate(2deg); }

.how-section { padding-bottom: 130px; }
.steps-grid { max-width: 1180px; margin: 0 auto 75px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { position: relative; min-height: 320px; padding: 29px; background: var(--white); border: var(--border); box-shadow: var(--shadow); }
.step-card:nth-child(2) { background: var(--yellow); transform: translateY(25px) rotate(1deg); }
.step-card:nth-child(3) { background: var(--pink); transform: rotate(-1deg); }
.step-card::after { content: ""; position: absolute; top: 12px; right: 12px; width: 17px; height: 17px; background: var(--ink); clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%); }
.step-no { font: 500 11px "DM Mono", monospace; }
.step-icon { width: 76px; height: 76px; margin: 27px 0; display: grid; place-items: center; color: var(--white); background: var(--blue); border: var(--border); border-radius: 50% 42% 51% 45%; font: 400 38px "Bangers", Impact, sans-serif; transform: rotate(-6deg); }
.step-card:nth-child(2) .step-icon { background: var(--red); }
.step-card:nth-child(3) .step-icon { color: var(--ink); background: var(--lime); }
.step-card h3 { font-size: 35px; }
.step-card p { margin: 0; font-size: 14px; font-weight: 650; line-height: 1.65; }

.buy-banner {
  position: relative;
  max-width: 1180px;
  min-height: 495px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 42px;
  color: var(--white);
  background: var(--blue);
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 var(--red);
  clip-path: polygon(1% 0, 100% 3%, 98% 100%, 0 96%);
  overflow: hidden;
}

.buy-banner::before { content: ""; position: absolute; inset: -50%; opacity: .22; background: repeating-conic-gradient(from 0deg at 80% 50%, var(--yellow) 0deg 4deg, transparent 4deg 12deg); }
.buy-banner-copy,
.buy-banner-gif { position: relative; z-index: 2; }
.buy-banner-copy > p { margin: 0 0 7px; color: var(--yellow); font: 500 13px "DM Mono", monospace; letter-spacing: .13em; }
.buy-banner h3 { font-size: clamp(57px, 6vw, 90px); text-shadow: 5px 5px 0 var(--ink); }
.mini-contract { width: min(100%, 430px); margin: 25px 0 28px; padding: 11px 11px 11px 15px; display: flex; align-items: center; gap: 14px; color: var(--ink); background: var(--white); border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--yellow); }
.mini-contract code { flex: 1; }
.copy-button.inverse { color: var(--ink); background: var(--lime); }
.buy-banner-gif { justify-self: end; width: min(100%, 360px); padding: 13px; background: var(--white); border: var(--border); box-shadow: 9px 9px 0 var(--yellow); transform: rotate(4deg); }
.buy-banner-gif img { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--lime); }
.bubble-small { position: absolute; top: -43px; right: -20px; z-index: 3; padding: 11px 16px; color: var(--ink); background: var(--yellow); border: 3px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); font: 400 24px "Bangers", Impact, sans-serif; transform: rotate(4deg); }

footer { color: var(--white); background: var(--ink); border-top: 5px solid var(--ink); }
.footer-marquee { padding: 18px 15px 13px; overflow: hidden; color: var(--ink); background: var(--lime); border-bottom: 5px solid var(--ink); font: 400 clamp(31px, 4.5vw, 62px) "Bangers", Impact, sans-serif; letter-spacing: .035em; text-align: center; white-space: nowrap; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 75px clamp(22px, 5vw, 70px) 55px; display: flex; justify-content: space-between; gap: 50px; }
.footer-brand { font-size: 51px; }
.footer-inner p { color: #aaa; font-size: 13px; font-weight: 700; }
.footer-links { display: grid; gap: 16px; font: 400 28px "Bangers", Impact, sans-serif; letter-spacing: .04em; text-align: right; }
.footer-links a:nth-child(1):hover { color: var(--lime); }
.footer-links a:nth-child(2):hover { color: var(--pink); }
.footer-links a:nth-child(3):hover { color: var(--yellow); }
.footer-bottom { max-width: 1320px; margin: 0 auto; padding: 20px clamp(22px, 5vw, 70px); display: flex; justify-content: space-between; gap: 20px; color: #888; border-top: 1px solid #3a3a3a; font: 500 9px "DM Mono", monospace; letter-spacing: .05em; }

.toast { position: fixed; right: 23px; bottom: 23px; z-index: 120; padding: 13px 17px; background: var(--lime); border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); font: 400 21px "Bangers", Impact, sans-serif; transform: translateY(130px) rotate(1deg); transition: transform .24s ease; }
.toast.show { transform: translateY(0) rotate(-2deg); }

.reveal { opacity: 0; transform: translateY(28px) rotate(.5deg); transition: opacity .52s ease, transform .52s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0) rotate(0); }

@media (max-width: 1080px) {
  .nav-links { gap: 15px; }
  .nav-links a:nth-child(4), .nav-links a:nth-child(5) { display: none; }
  .hero { grid-template-columns: .92fr 1.08fr; padding-inline: 42px; }
  .hero-art { min-height: 520px; }
  h1 { font-size: clamp(76px, 9vw, 112px); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 68px; }
  .site-header { min-height: 68px; padding-inline: 18px; }
  .site-header::after, .desktop-buy { display: none; }
  .brand { font-size: 27px; }
  .brand-mark { width: 36px; height: 36px; font-size: 24px; }
  .menu-toggle { width: 43px; height: 43px; margin-left: auto; padding: 8px; display: grid; place-content: center; gap: 5px; background: var(--lime); border: 3px solid var(--ink); cursor: pointer; }
  .menu-toggle span { width: 20px; height: 3px; background: var(--ink); transition: transform .18s ease, opacity .18s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-links { position: absolute; top: 68px; right: 0; left: 0; margin: 0; padding: 25px; display: none; flex-direction: column; background: var(--paper); border-bottom: var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a:nth-child(4), .nav-links a:nth-child(5) { display: block; }
  .hero { min-height: auto; padding: 55px 22px 86px; grid-template-columns: 1fr; gap: 48px; }
  .hero::after { top: auto; right: -30%; bottom: -19%; width: 150%; height: 54%; transform: rotate(-5deg); border: 0; border-top: 6px solid var(--ink); }
  .speed-lines { clip-path: polygon(0 56%,100% 42%,100% 100%,0 100%); }
  .hero-copy::before { display: none; }
  .hero-art { width: min(94%, 580px); min-height: 0; margin: 5px auto 0; }
  .main-frame { width: 88%; }
  .scroll-cue { display: none; }
  .comic-story, .steps-grid { grid-template-columns: 1fr; }
  .story-panel:nth-child(2), .story-panel:nth-child(3) { margin: 0; transform: rotate(0); }
  .story-panel-wide, .story-panel-finale { grid-column: auto; }
  .story-panel-wide, .story-panel-finale, .buy-banner { grid-template-columns: 1fr; }
  .story-panel-finale img { min-height: 250px; border-right: 0; border-bottom: var(--border); }
  .gif-grid { grid-template-columns: repeat(2, 1fr); }
  .gif-card, .gif-card:nth-child(4), .gif-card:nth-child(5), .gif-card:nth-child(6), .gif-card:nth-child(9) { grid-column: span 1; margin-top: 0; }
  .buy-banner-gif { justify-self: center; }
}

@media (max-width: 540px) {
  :root { --border: 3px solid var(--ink); --shadow: 6px 6px 0 var(--ink); }
  .hero { padding-top: 43px; }
  .issue-chip { font-size: 9px; }
  .eyebrow { max-width: 300px; line-height: 1.4; }
  h1 { font-size: clamp(65px, 20vw, 91px); }
  h1::after { right: -8px; bottom: -26px; }
  h1 span { text-shadow: 3px 3px 0 var(--blue); }
  h2 em { -webkit-text-stroke-width: 2px; text-shadow: 3px 3px 0 var(--ink); }
  .hero-lede { margin-top: 42px; font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .contract-card { align-items: flex-end; }
  .contract-card code { max-width: 210px; font-size: 9px; }
  .main-frame { width: 92%; outline-width: 4px; box-shadow: 10px 10px 0 var(--blue), 15px 15px 0 var(--ink); }
  .pow-bubble { top: -27px; left: -7px; width: 92px; font-size: 27px; }
  .caption-box { right: -7px; bottom: -30px; font-size: 20px; }
  .story-section, .vibes-section, .how-section { padding: 88px 16px 96px; }
  .story-section::before, .how-section::before { top: 45px; right: 17px; font-size: 48px; }
  .section-heading { margin-bottom: 46px; }
  .section-heading h2 { font-size: clamp(57px, 17vw, 84px); }
  .section-heading h2::after { display: none; }
  .section-heading p { font-size: 14px; }
  .story-panel-art { min-height: 410px; }
  .story-panel h3 { font-size: 38px; }
  .story-panel-wide { gap: 25px; }
  .vibes-section::before { font-size: 16px; }
  .vibes-section::after { top: 90px; font-size: 47px; }
  .gif-grid { grid-template-columns: 1fr; gap: 34px; }
  .gif-card, .gif-card:nth-child(4), .gif-card:nth-child(5), .gif-card:nth-child(6), .gif-card:nth-child(9) { grid-column: 1; }
  .gif-card img { height: 275px; }
  .tilt-left, .tilt-right { transform: rotate(0); }
  .step-card:nth-child(2), .step-card:nth-child(3) { transform: none; }
  .buy-banner { padding: 46px 23px 52px; clip-path: polygon(0 0,100% 1%,98% 100%,0 98%); }
  .buy-banner h3 { font-size: 54px; }
  .mini-contract { width: 100%; }
  .footer-inner, .footer-bottom { flex-direction: column; }
  .footer-links { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
