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

:root {
  --acid: #d7ff00;
  --acid-soft: #ebff75;
  --ink: #0b0b0b;
  --paper: #eeeade;
  --red: #ff3b1f;
  --white: #f8f8f2;
  --muted: #9d9d96;
  --line: rgba(255, 255, 255, 0.23);
  --display: 'Unbounded', 'Arial Black', sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --page-pad: clamp(1rem, 4vw, 4.75rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  overflow-x: hidden;
  cursor: crosshair;
}
body.menu-open { overflow: hidden; }
a, button { color: inherit; }
a { text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: var(--white); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  background: var(--acid);
  color: var(--ink);
  padding: 0.8rem 1rem;
}
.skip-link:focus { top: 1rem; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.045;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.cursor-dot {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .18s, height .18s, background .18s;
}
.cursor-dot.active { width: 42px; height: 42px; background: var(--white); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 11, .83);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-mark { color: var(--acid); font-size: 1.5rem; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.2rem); }
.nav-links a {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--acid); }
.nav-links .nav-buy {
  padding: .75rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 500;
}
.nav-links .nav-buy:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; background: none; border: 0; padding: .4rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }

.section-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(8rem, 14vh, 10rem) var(--page-pad) 3rem;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
  pointer-events: none;
}
.hero::after {
  content: 'WARNING: EXTREME FELINE DISPLEASURE';
  position: absolute;
  right: -9.5rem;
  top: 48%;
  transform: rotate(90deg);
  font-size: .62rem;
  letter-spacing: .24em;
  color: var(--muted);
}
.hero-copy { grid-column: 1 / span 7; z-index: 2; padding-bottom: 5rem; }
.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--acid);
  font-size: clamp(.65rem, 1vw, .78rem);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-title {
  position: relative;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 12.1vw, 11rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.outline-text { color: transparent; -webkit-text-stroke: clamp(1px, .15vw, 3px) var(--white); }
.solid-text { color: var(--acid); margin-left: 22%; position: relative; width: min-content; }
.solid-text::before,
.solid-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
}
.solid-text::before { color: #00ffff; transform: translate(-4px, 1px); clip-path: inset(20% 0 55% 0); }
.solid-text::after { color: var(--red); transform: translate(5px, -1px); clip-path: inset(66% 0 12% 0); }
.hero-dek {
  margin: 2.3rem 0 2rem 22%;
  padding-left: 1rem;
  border-left: 2px solid var(--acid);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}
.hero-dek em { color: var(--acid); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-left: 22%; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  border: 1px solid var(--white);
  font-size: .74rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--red); }
.hero-buy {
  isolation: isolate;
  min-width: 220px;
  gap: .9rem;
  padding: 1.15rem 1.5rem;
  border: 3px solid var(--white);
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 0 0 3px var(--ink), 9px 9px 0 var(--red), 0 0 34px rgba(215, 255, 0, .35);
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: -.02em;
  animation: cursedCtaFlash 2.4s ease-in-out infinite;
}
.hero-buy::before {
  content: 'BUY NOW';
  position: absolute;
  top: -1rem;
  right: -.75rem;
  z-index: 2;
  padding: .3rem .45rem;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .08em;
  transform: rotate(5deg);
}
.hero-buy::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(-45deg, transparent 0 8px, rgba(255,255,255,.22) 8px 10px);
  pointer-events: none;
}
.hero-buy strong { font-size: 1.25rem; line-height: 1; }
.hero-buy:hover {
  animation-play-state: paused;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 0 0 3px var(--ink), 11px 11px 0 var(--acid);
}
.button-ghost { background: transparent; }

.hero-visual { grid-column: 8 / -1; position: relative; min-height: 620px; display: grid; place-items: center; z-index: 1; }
.hero-visual::before {
  content: '';
  position: absolute;
  width: min(43vw, 590px);
  aspect-ratio: 1;
  border: 1px solid rgba(215,255,0,.3);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(215,255,0,.12), inset 0 0 90px rgba(215,255,0,.06);
}
.cat-frame {
  position: relative;
  width: min(38vw, 500px);
  filter: drop-shadow(25px 30px 0 rgba(215,255,0,.16));
  transform: rotate(2deg);
  animation: catFloat 4.2s ease-in-out infinite;
  z-index: 2;
}
.cat-frame img { width: 100%; }
.cat-frame-real {
  overflow: hidden;
  border: 2px solid var(--white);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--acid);
  filter: none;
  transform: rotate(1.5deg);
}
.cat-frame-real img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.16) saturate(.78);
}
.cat-frame-real::after {
  content: 'REAL CAT // REAL ANGER';
  position: absolute;
  right: .55rem;
  bottom: .55rem;
  padding: .45rem .55rem;
  background: var(--acid);
  color: var(--ink);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .08em;
}
.cat-orbit {
  position: absolute;
  top: 12%;
  right: -5%;
  color: var(--acid);
  opacity: .65;
  font-size: .63rem;
  letter-spacing: .35em;
  transform: rotate(72deg);
}
.stamp {
  position: absolute;
  z-index: 3;
  padding: .72rem .85rem;
  border: 2px solid;
  font-family: var(--display);
  font-size: .72rem;
  line-height: 1.2;
  text-align: center;
}
.stamp-one { top: 12%; left: -5%; color: var(--red); border-color: var(--red); transform: rotate(-12deg); }
.stamp-two { right: -2%; bottom: 24%; color: var(--acid); border-color: var(--acid); transform: rotate(8deg); }
.status-card {
  position: absolute;
  left: 4%;
  bottom: 6%;
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto;
  gap: .25rem .65rem;
  width: min(100%, 305px);
  padding: .85rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 var(--red);
  font-size: .63rem;
}
.status-card strong { grid-column: 2; font-size: .7rem; }
.status-light { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.1s steps(2) infinite; }
.contract-bar {
  position: absolute;
  z-index: 5;
  bottom: 1.3rem;
  left: var(--page-pad);
  right: var(--page-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem .9rem;
  border: 2px solid transparent;
  background:
    linear-gradient(110deg, rgba(11,11,11,.96), rgba(25,25,22,.96)) padding-box,
    repeating-linear-gradient(135deg, var(--acid) 0 12px, var(--ink) 12px 22px, var(--red) 22px 34px) border-box;
  box-shadow: 8px 8px 0 var(--red), 0 0 36px rgba(215,255,0,.14);
}
.contract-bar::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(215,255,0,.38);
  pointer-events: none;
}
.contract-bar::after {
  content: 'LIVE // VERIFIED';
  position: absolute;
  top: -.7rem;
  left: 1rem;
  padding: .24rem .5rem;
  border: 1px solid var(--ink);
  background: var(--red);
  color: var(--white);
  font-size: .48rem;
  font-weight: 500;
  letter-spacing: .12em;
  transform: rotate(-1deg);
}
.contract-bar > * { position: relative; z-index: 1; }
.contract-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--acid);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .12em;
}
.contract-label::before {
  content: '';
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(215,255,0,.16), 0 0 12px var(--acid);
  animation: blink 1.1s steps(2) infinite;
}
.contract-bar code {
  overflow: hidden;
  padding: .65rem .8rem;
  border-left: 2px solid var(--red);
  background: rgba(255,255,255,.055);
  color: var(--white);
  text-overflow: ellipsis;
  font-family: var(--mono);
  font-size: clamp(.62rem, 1vw, .78rem);
  letter-spacing: .025em;
}
.copy-button {
  position: relative;
  overflow: hidden;
  min-width: 100px;
  padding: .72rem .9rem;
  border: 2px solid var(--ink);
  outline: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--white);
  font-size: .67rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.copy-button:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--red); }
.copy-success { position: absolute; inset: 0; display: grid; place-items: center; background: var(--white); transform: translateY(100%); transition: transform .25s; }
.copy-button.copied .copy-success { transform: translateY(0); }

.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--acid); color: var(--ink); }
.ticker-track { display: flex; align-items: center; width: max-content; padding: .85rem 0; animation: ticker 20s linear infinite; }
.ticker span { font-family: var(--display); font-size: .8rem; font-weight: 900; }
.ticker i { margin: 0 1.5rem; font-style: normal; }

.dark-section { background: var(--ink); color: var(--white); }
.acid-section { background: var(--acid); color: var(--ink); }
.section-number { grid-column: 1 / span 2; padding-top: .6rem; color: var(--muted); font-size: .65rem; letter-spacing: .1em; }
.section-heading { grid-column: 3 / -1; }
.section-heading .eyebrow { margin-bottom: 1.5rem; }
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: .94;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.rage-lab {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) var(--page-pad);
  overflow: hidden;
}
.rage-lab::before {
  content: 'RAGE';
  position: absolute;
  top: 50%;
  left: -2vw;
  color: rgba(215,255,0,.035);
  font-family: var(--display);
  font-size: clamp(10rem, 32vw, 30rem);
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: .7;
  transform: translateY(-50%);
  pointer-events: none;
}
.rage-generator {
  position: relative;
  z-index: 1;
  grid-column: 3 / span 8;
  margin: 0;
}
.generated-meme {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  margin: 0;
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--ink);
  box-shadow: 16px 16px 0 var(--acid);
  transform: rotate(-.6deg);
}
.generated-caption {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: var(--white);
}
.generated-caption p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.65rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.generated-caption .meme-setup { margin-bottom: clamp(1.4rem, 3vw, 2.5rem); }
.generated-caption .meme-setup span { font: inherit; }
.generated-caption .meme-reaction { font-weight: 500; }
.generated-meme > img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center;
  border-top: 2px solid var(--ink);
  filter: contrast(1.08) saturate(.82);
}
.generator-controls {
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}
.generator-controls button {
  flex: 0 0 auto;
  padding: 1rem 1.2rem;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.generator-controls button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--red);
}
.generator-controls span {
  color: var(--muted);
  font-size: .58rem;
  letter-spacing: .08em;
  text-align: right;
}

.ritual { padding: clamp(6rem, 10vw, 9rem) var(--page-pad); gap: 3rem 0; }
.acid-section .eyebrow { color: var(--ink); }
.acid-section .section-number { color: rgba(0,0,0,.55); }
.steps { grid-column: 3 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; border: 2px solid var(--ink); }
.step-card { position: relative; min-height: 330px; padding: 1.5rem; border-right: 2px solid var(--ink); }
.step-card:last-child { border-right: 0; }
.step-index { font-size: .67rem; }
.step-icon { margin: 3rem 0 4.5rem; font-size: 3rem; line-height: 1; }
.step-card h3 { margin: 0 0 .7rem; font-family: var(--display); font-size: 1.05rem; text-transform: uppercase; }
.step-card p { margin: 0; max-width: 27ch; font-size: .72rem; line-height: 1.6; }
.mega-buy {
  grid-column: 3 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink);
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(1.15rem, 3vw, 2.5rem);
  font-weight: 900;
  transition: color .2s, background .2s;
}
.mega-buy strong { font-size: 1.8em; transition: transform .2s; }
.mega-buy:hover { background: var(--red); color: var(--white); }
.mega-buy:hover strong { transform: translate(8px, -8px); }
.social-buy {
  grid-column: 3 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.1rem clamp(1.2rem, 3vw, 2.5rem);
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: clamp(.7rem, 1.2vw, .85rem);
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s, color .2s, transform .2s;
}
.social-buy strong { font-size: 1.3em; line-height: 1; }
.social-buy:hover { background: var(--ink); color: var(--acid); transform: translate(-3px, -3px); }

.giant-cat-wrap { position: relative; height: min(65vw, 760px); overflow: hidden; background: var(--red); border-block: 2px solid var(--ink); }
.giant-cat-wrap::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 5px, rgba(0,0,0,.09) 6px); }
.giant-cat-wrap img { position: absolute; z-index: 2; left: 50%; bottom: -15%; height: 115%; transform: translateX(-50%); filter: brightness(0); }
.giant-word { position: absolute; z-index: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--display); font-size: clamp(6rem, 25vw, 26rem); font-weight: 900; letter-spacing: -.1em; color: var(--acid); white-space: nowrap; }

.site-footer { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 2rem; align-items: start; padding: 3rem var(--page-pad); background: var(--acid); color: var(--ink); border-top: 2px solid var(--ink); }
.site-footer p { max-width: 70ch; margin: 0; font-size: .65rem; line-height: 1.6; }
.footer-links { display: flex; justify-content: flex-end; gap: 1rem; font-size: .65rem; text-transform: uppercase; }
.footer-links a { border-bottom: 1px solid var(--ink); }
.footer-brand .brand-mark { color: var(--red); }
.copyright { grid-column: 1 / -1; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,.4); font-size: .6rem; text-align: right; }
.toast { position: fixed; z-index: 90; left: 50%; bottom: 2rem; transform: translate(-50%, 140%); padding: .85rem 1rem; background: var(--red); color: var(--white); border: 1px solid var(--white); font-size: .65rem; transition: transform .3s ease; }
.toast.visible { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes cursedCtaFlash {
  0%, 100% {
    border-color: var(--white);
    background: var(--acid);
    color: var(--ink);
    box-shadow: 0 0 0 3px var(--ink), 9px 9px 0 var(--red), 0 0 34px rgba(215,255,0,.38);
  }
  34% {
    border-color: var(--acid);
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 0 3px var(--ink), 9px 9px 0 #00e5ff, 0 0 40px rgba(255,59,31,.4);
  }
  67% {
    border-color: var(--white);
    background: #00e5ff;
    color: var(--ink);
    box-shadow: 0 0 0 3px var(--ink), 9px 9px 0 var(--white), 0 0 38px rgba(0,229,255,.38);
  }
}
@keyframes catFloat { 0%, 100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-15px); } }
@keyframes blink { 50% { opacity: .2; } }

@media (max-width: 1000px) {
  .hero { min-height: auto; padding-top: 9rem; padding-bottom: 7rem; }
  .hero-copy { grid-column: 1 / -1; padding-bottom: 1rem; }
  .hero-visual { grid-column: 3 / span 8; min-height: 560px; }
  .cat-frame { width: min(68vw, 480px); }
  .hero-visual::before { width: min(70vw, 560px); }
  .contract-bar { bottom: 1rem; }
  .site-footer { grid-template-columns: 1fr 2fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .cursor-dot { display: none; }
  .site-header { height: 66px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 0; padding: 5rem var(--page-pad); background: var(--ink); transform: translateX(100%); transition: transform .3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.3rem; }
  .nav-links .nav-buy { margin-top: 1rem; padding: 1rem; text-align: center; border: 0; }
  .hero { display: block; padding-top: 8.3rem; padding-bottom: 7.5rem; }
  .hero::after { display: none; }
  .hero-title { font-size: clamp(4rem, 24vw, 7rem); }
  .solid-text { margin-left: 12%; }
  .hero-dek, .hero-actions { margin-left: 12%; }
  .hero-visual { min-height: 470px; margin-top: 1rem; }
  .cat-frame { width: min(92vw, 430px); }
  .hero-visual::before { width: min(95vw, 450px); }
  .stamp-one { left: 0; }
  .stamp-two { right: 0; }
  .status-card { left: 1rem; bottom: 0; }
  .contract-bar { grid-template-columns: 1fr auto; left: 1rem; right: 1rem; }
  .contract-label { grid-column: 1 / -1; }
  .contract-bar code { white-space: nowrap; }
  .section-number { grid-column: 1 / -1; }
  .section-heading { grid-column: 1 / -1; }
  .rage-lab, .ritual { gap: 1.8rem 0; }
  .rage-generator { grid-column: 1 / -1; margin: 0; }
  .generated-caption { min-height: 170px; }
  .generator-controls { align-items: stretch; flex-direction: column; }
  .generator-controls button { width: 100%; }
  .generator-controls span { text-align: left; }
  .steps { grid-column: 1 / -1; grid-template-columns: 1fr; margin-top: 1rem; }
  .step-card { min-height: auto; border-right: 0; border-bottom: 2px solid var(--ink); }
  .step-card:last-child { border-bottom: 0; }
  .step-icon { margin: 2rem 0; }
  .mega-buy { grid-column: 1 / -1; }
  .social-buy { grid-column: 1 / -1; text-align: left; }
  .giant-cat-wrap { height: 95vw; }
  .giant-cat-wrap img { height: 108%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .copyright { grid-column: auto; text-align: left; }
}

@media (max-width: 430px) {
  .hero-title { font-size: 21vw; }
  .hero-dek, .hero-actions, .solid-text { margin-left: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .cat-frame { width: 105vw; margin-left: -2.5vw; }
  .hero-visual { min-height: 420px; }
  .contract-bar code { max-width: 62vw; }
  .copy-button { min-width: 70px; padding-inline: .5rem; }
  .generated-meme { box-shadow: 8px 8px 0 var(--acid); }
  .generated-caption { min-height: 145px; padding: 1.1rem; }
  .generated-caption p { font-size: clamp(1.35rem, 7vw, 2rem); }
  .hero-buy { min-width: 0; }
}

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