:root {
  --acid: #eaff00;
  --blue: #0887dc;
  --red: #ed2c2c;
  --orange: #ff9f0a;
  --purple: #612f91;
  --paper: #f7f0d2;
  --ink: #10100e;
  --white: #fffdf0;
  --line: 3px solid var(--ink);
  --shadow: 7px 7px 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;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: .07;
  pointer-events: none;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  background: rgba(247,240,210,.92);
  border-bottom: var(--line);
  backdrop-filter: blur(9px);
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 900 1rem/1 "Arial Black", Arial, sans-serif;
  text-decoration: none;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 45px;
  height: 45px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 72%; transform: scale(1.85); }
nav { display: flex; gap: 36px; }
nav a, .mini-cta {
  font: 800 .72rem/1 "Arial Black", Arial, sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a { position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 3px; background: var(--red); transition: right .2s; }
nav a:hover::after { right: 0; }

.mini-cta {
  justify-self: end;
  padding: 12px 15px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
  transition: transform .15s, box-shadow .15s;
}
.mini-cta:hover { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--red); }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 5vw;
  padding: 6vw 5vw 7vw;
  background: var(--acid);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -13%;
  width: 48vw;
  height: 23vw;
  background: var(--red);
  clip-path: polygon(0 54%, 10% 37%, 21% 50%, 32% 27%, 43% 48%, 57% 19%, 68% 45%, 81% 12%, 100% 36%, 100% 100%, 0 100%);
}

.hero-copy { position: relative; z-index: 4; max-width: 760px; min-width: 0; }
.eyebrow, .section-tag {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 900 .72rem/1 "Arial Black", Arial, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 10px; background: var(--red); transform: rotate(-4deg); }

h1 {
  margin: 26px 0 22px;
  font: 900 clamp(4.3rem, 8.2vw, 9rem)/.77 "Arial Black", Impact, sans-serif;
  letter-spacing: -.09em;
  text-transform: uppercase;
}
h1 > span { display: block; }
h1 > span:nth-child(2) { color: var(--blue); -webkit-text-stroke: 3px var(--ink); text-shadow: 6px 6px 0 var(--ink); transform: rotate(-1deg); }
h1 .scribble { position: relative; color: var(--red); font-family: "Comic Sans MS", cursive; font-size: .66em; letter-spacing: -.08em; transform: rotate(-3deg) translateX(6%); -webkit-text-stroke: 2px var(--ink); }

.hero-dek { max-width: 580px; margin: 0 0 30px; font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.2; font-weight: 700; }
.hero-dek em { font-family: Georgia, serif; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: stretch; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 25px;
  border: var(--line);
  font: 900 .87rem/1 "Arial Black", Arial, sans-serif;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.button:hover { transform: translate(5px,5px); box-shadow: 2px 2px 0 var(--ink); }
.button-dark { color: var(--white); background: var(--ink); }
.button-yellow { background: var(--acid); }

.ticker-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 155px;
  padding: 7px 18px;
  color: var(--ink);
  background: transparent;
  border: 2px dashed var(--ink);
  cursor: pointer;
}
.ticker-copy > span:first-child { font: 900 1rem/1 "Arial Black", Arial, sans-serif; }
.copy-state { margin-top: 5px; font: 700 .62rem/1 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.microcopy { margin: 18px 0 0; font-size: .67rem; font-weight: 700; }

.hero-art { position: relative; z-index: 2; width: min(40vw, 650px); aspect-ratio: 1/1; justify-self: center; }
.hero-art > img {
  position: absolute;
  z-index: 3;
  inset: 5%;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 13px 13px 0 var(--ink);
  transform: rotate(3deg);
}
.burst { position: absolute; inset: -13%; background: var(--blue); clip-path: polygon(50% 0, 58% 20%, 72% 3%, 76% 24%, 95% 13%, 88% 34%, 100% 38%, 83% 51%, 98% 63%, 79% 67%, 88% 91%, 66% 79%, 61% 100%, 48% 80%, 34% 97%, 31% 76%, 7% 87%, 19% 64%, 0 58%, 20% 48%, 2% 31%, 26% 29%, 17% 7%, 40% 21%); transform: rotate(-4deg); }
.hero-sticker { position: absolute; z-index: 6; padding: 12px 14px 9px; border: var(--line); font: 900 .8rem/.93 "Arial Black", Arial, sans-serif; text-align: center; box-shadow: 4px 4px 0 var(--ink); }
.sticker-one { top: 6%; left: -8%; color: var(--white); background: var(--red); transform: rotate(-12deg); }
.sticker-two { right: -5%; bottom: 13%; background: var(--paper); transform: rotate(9deg); }
.tape { position: absolute; z-index: 7; width: 90px; height: 25px; background: rgba(247,240,210,.7); border: 1px solid rgba(16,16,14,.25); }
.tape-a { top: 7%; right: 12%; transform: rotate(42deg); }
.tape-b { bottom: 7%; left: 7%; transform: rotate(-35deg); }
.scroll-note { position: absolute; right: 3vw; bottom: 24px; z-index: 5; writing-mode: vertical-rl; font: 900 .59rem/1 "Arial Black", Arial, sans-serif; letter-spacing: .1em; }
.scroll-note span { margin-top: 7px; font-size: 1.2rem; }

.ticker-strip { overflow: hidden; color: var(--white); background: var(--ink); border-block: var(--line); transform: rotate(-1deg) scale(1.01); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 26px; padding: 14px 0 12px; animation: ticker 22s linear infinite; font: 900 1.05rem/1 "Arial Black", Arial, sans-serif; letter-spacing: .06em; }
.ticker-track i { color: var(--acid); font-style: normal; font-size: 1.5rem; }
.ticker-track b { color: var(--red); }
@keyframes ticker { to { transform: translateX(-33.333%); } }

.manifesto { padding: 10vw 6vw 8vw; background: var(--paper); }
.section-tag { color: var(--red); }
.manifesto-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; margin-top: 35px; align-items: start; }
.manifesto h2, .meme-heading h2, .how-copy h2, .final-cta h2 { margin: 0; font: 900 clamp(3.3rem, 6.6vw, 7.8rem)/.88 "Arial Black", Impact, sans-serif; letter-spacing: -.075em; text-transform: uppercase; }
.manifesto h2 span { color: var(--blue); font-family: "Comic Sans MS", cursive; -webkit-text-stroke: 2px var(--ink); }
.manifesto-copy { border-left: var(--line); padding-left: 30px; }
.manifesto-copy p { margin: 0 0 25px; font-weight: 700; font-size: 1.05rem; line-height: 1.55; }
.stat-row { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 7vw; border: var(--line); box-shadow: var(--shadow); background: var(--white); }
.stat-row > div { display: flex; flex-direction: column; align-items: center; padding: 2.5vw; border-right: var(--line); }
.stat-row > div:last-of-type { border-right: 0; }
.stat-row strong { font: 900 clamp(4rem, 8vw, 8rem)/.8 "Arial Black", Arial, sans-serif; }
.stat-row > div:nth-child(1) strong { color: var(--red); }
.stat-row > div:nth-child(2) strong { color: var(--blue); }
.stat-row > div:nth-child(3) strong { color: var(--orange); -webkit-text-stroke: 2px var(--ink); }
.stat-row span { margin-top: 18px; font: 900 .72rem/1 "Arial Black", Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.stat-row small { position: absolute; right: 9px; bottom: -24px; font-weight: 800; transform: rotate(-3deg); }

.launch-poster { position: relative; height: min(82vw, 900px); min-height: 580px; border-block: var(--line); overflow: hidden; background: var(--acid); }
.launch-poster > img { width: 100%; height: 100%; object-fit: cover; }
.launch-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,16,14,.92) 0%, rgba(16,16,14,.25) 48%, transparent 70%); }
.launch-overlay { position: absolute; z-index: 2; left: 6vw; top: 50%; transform: translateY(-50%) rotate(-2deg); color: var(--white); }
.meme-kicker { display: inline-block; padding: 8px 10px; color: var(--ink); background: var(--acid); border: 2px solid var(--ink); font: 900 .65rem/1 "Arial Black", Arial, sans-serif; letter-spacing: .12em; }
.launch-overlay h2 { margin: 25px 0 18px; font: 900 clamp(4rem, 9vw, 10rem)/.78 "Arial Black", Impact, sans-serif; letter-spacing: -.08em; text-transform: uppercase; text-shadow: 7px 7px 0 var(--red); }
.launch-overlay p { margin: 0; font: 900 clamp(1rem, 2vw, 2rem)/1 "Arial Black", Arial, sans-serif; letter-spacing: .04em; }
.launch-overlay p strong { color: var(--acid); font-size: 1.6em; }

.meme-section { padding: 9vw 5vw; color: var(--white); background: var(--blue); }
.meme-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 5vw; }
.meme-heading .section-tag { color: var(--acid); margin-bottom: 26px; }
.meme-heading h2 { max-width: 950px; }
.remix-button { flex: 0 0 auto; padding: 15px 17px; color: var(--ink); background: var(--acid); border: var(--line); box-shadow: 5px 5px 0 var(--ink); font: 900 .72rem/1 "Arial Black", Arial, sans-serif; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.remix-button:hover span { display: inline-block; transform: rotate(180deg); }
.meme-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; align-items: start; }
.meme-card { position: relative; margin: 0; height: 390px; border: 4px solid var(--ink); background: var(--ink); box-shadow: 9px 9px 0 rgba(16,16,14,.85); overflow: hidden; }
.meme-wide { height: 520px; }
.meme-tall { grid-row: span 2; height: 932px; }
.meme-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.15) contrast(1.04); transition: transform .4s, filter .4s; }
.meme-card:hover img { transform: scale(1.025); filter: saturate(1.35) contrast(1.08); }
.meme-card figcaption { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 19px; pointer-events: none; }
.meme-card figcaption span { align-self: center; max-width: 96%; padding: 5px 10px; color: var(--white); background: var(--ink); font: 900 clamp(.9rem, 1.8vw, 1.65rem)/.98 "Arial Black", Impact, sans-serif; letter-spacing: -.02em; text-align: center; text-transform: uppercase; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.meme-card .caption-bottom { color: var(--acid); }
.generated::after { content: "AI-GENERATED / CATDOG MEME LAB"; position: absolute; right: 10px; bottom: 60px; padding: 6px; background: var(--red); border: 2px solid var(--ink); font: 900 .48rem/1 Arial, sans-serif; letter-spacing: .09em; transform: rotate(-2deg); }
.meme-card.remixing { animation: remix .3s ease; }
@keyframes remix { 50% { transform: rotate(1deg) scale(.985); filter: hue-rotate(20deg); } }

.how-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; padding: 9vw 6vw; background: var(--red); }
.how-copy { position: sticky; top: 120px; align-self: start; }
.how-copy .section-tag { color: var(--acid); }
.how-copy h2 { margin: 26px 0; color: var(--white); }
.how-copy h2 span { color: var(--acid); }
.how-copy > p { max-width: 500px; margin: 0 0 30px; color: var(--white); font-size: 1.12rem; line-height: 1.5; font-weight: 700; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 86px 1fr; gap: 25px; align-items: center; min-height: 180px; padding: 26px 30px; background: var(--paper); border: var(--line); border-bottom: 0; }
.steps li:last-child { border-bottom: var(--line); }
.steps li > span { display: grid; place-items: center; width: 72px; height: 72px; border: var(--line); border-radius: 50%; background: var(--acid); font: 900 1.3rem/1 "Arial Black", Arial, sans-serif; }
.steps strong { font: 900 clamp(2.4rem, 5vw, 5rem)/.8 "Arial Black", Arial, sans-serif; letter-spacing: -.05em; }
.steps p { margin: 12px 0 0; font-weight: 700; }

.final-cta { position: relative; display: grid; place-items: center; min-height: 760px; padding: 80px 20px; text-align: center; background: var(--acid); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; width: 68vw; height: 68vw; border: 4px dashed var(--ink); border-radius: 50%; opacity: .28; animation: spin 45s linear infinite; }
.final-cta > *:not(.orbit) { position: relative; z-index: 2; }
.final-cta > p { align-self: end; margin: 0 0 14px; font: 900 .78rem/1 "Arial Black", Arial, sans-serif; letter-spacing: .15em; }
.final-cta h2 { margin-bottom: 32px; }
.final-cta h2 span { color: var(--red); font-family: "Comic Sans MS", cursive; -webkit-text-stroke: 2px var(--ink); }
.orbit { position: absolute; z-index: 1; display: grid; place-items: center; width: 100px; height: 100px; color: var(--white); border: var(--line); border-radius: 50%; font: 900 1.1rem/1 "Arial Black", Arial, sans-serif; box-shadow: 6px 6px 0 var(--ink); }
.orbit-one { top: 18%; left: 10%; background: var(--red); transform: rotate(-13deg); }
.orbit-two { right: 10%; bottom: 17%; background: var(--blue); transform: rotate(10deg); }
@keyframes spin { to { transform: rotate(360deg); } }

footer { display: grid; grid-template-columns: .6fr 1fr .7fr; align-items: center; gap: 40px; padding: 45px 5vw; color: var(--white); background: var(--ink); border-top: var(--line); }
.footer-brand { font: 900 2.5rem/1 "Arial Black", Arial, sans-serif; text-decoration: none; letter-spacing: -.08em; }
.footer-brand span { color: var(--blue); }
footer p { max-width: 620px; margin: 0; color: #c8c6ba; font-size: .7rem; line-height: 1.5; }
.footer-links { display: flex; justify-content: flex-end; gap: 25px; font-size: .68rem; font-weight: 800; text-transform: uppercase; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 70px; }
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding: 70px 7vw 90px; }
  .hero-copy { z-index: 5; width: 100%; }
  .hero-art { width: min(78vw, 560px); margin-top: 35px; }
  .hero::before { width: 95vw; height: 48vw; }
  .scroll-note { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-copy { max-width: 650px; }
  .launch-poster { height: 820px; }
  .launch-poster > img { object-position: 66% 50%; }
  .launch-poster::after { background: linear-gradient(0deg, rgba(16,16,14,.94), rgba(16,16,14,.1) 82%); }
  .launch-overlay { top: auto; bottom: 55px; transform: rotate(-2deg); }
  .meme-heading { align-items: flex-start; flex-direction: column; }
  .meme-grid { grid-template-columns: 1fr; }
  .meme-tall { grid-row: auto; height: 750px; }
  .how-section { grid-template-columns: 1fr; }
  .how-copy { position: static; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 580px) {
  .site-header { padding: 0 18px; }
  .brand > span:last-child { display: none; }
  .mini-cta { font-size: .62rem; padding: 11px 12px; }
  .hero { padding: 55px 20px 80px; }
  h1 { width: 100%; max-width: 100%; font-size: clamp(3rem, 12.8vw, 3.7rem); letter-spacing: -.1em; }
  h1 > span:nth-child(2) { -webkit-text-stroke-width: 2px; text-shadow: 4px 4px 0 var(--ink); }
  .hero-dek { max-width: 100%; font-size: 1.06rem; }
  .button, .ticker-copy { width: 100%; }
  .ticker-copy { align-items: center; }
  .hero-art { width: 82vw; }
  .hero-sticker { font-size: .58rem; }
  .manifesto, .meme-section, .how-section { padding: 85px 20px; }
  .manifesto h2, .meme-heading h2, .how-copy h2, .final-cta h2 { font-size: 3.25rem; }
  .manifesto-copy { padding-left: 20px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row > div { border-right: 0; border-bottom: var(--line); padding: 35px 20px; }
  .stat-row > div:last-of-type { border-bottom: 0; }
  .launch-poster { min-height: 680px; }
  .launch-overlay { left: 20px; }
  .launch-overlay h2 { font-size: 3.85rem; }
  .meme-wide, .meme-card { height: 300px; }
  .meme-tall { height: 520px; }
  .meme-card figcaption span { font-size: 1rem; }
  .steps li { grid-template-columns: 55px 1fr; gap: 15px; min-height: 145px; padding: 20px 15px; }
  .steps li > span { width: 52px; height: 52px; font-size: .9rem; }
  .steps strong { font-size: 2.3rem; }
  .final-cta { min-height: 620px; }
  .final-cta::before { width: 140vw; height: 140vw; }
  .orbit { width: 72px; height: 72px; font-size: .8rem; }
}

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