:root {
  --bg: #050505;
  --surface: #111111;
  --surface-2: #0a0a0a;
  --text: #f5f5f5;
  --muted: #a5a5a5;
  --green: #c8ff00;
  --green-soft: rgba(200, 255, 0, 0.12);
  --line: rgba(245, 245, 245, 0.14);
  --line-green: rgba(200, 255, 0, 0.35);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
}

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

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { position: relative; padding: 120px 0; }
.eyebrow,
.hero-kicker,
.hood-caption {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: .01em;
}
.section h2 em { color: var(--green); font-style: normal; }
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}
.section-note {
  max-width: 380px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ambient texture */
.site-grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
}
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 320px;
  height: 320px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,0,.09), transparent 68%);
  transition: opacity .2s ease;
}

/* loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 14px;
  background: #050505;
  text-align: center;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__logo {
  font-family: var(--display);
  font-size: 82px;
  letter-spacing: .06em;
}
.loader__line { width: 220px; height: 2px; overflow: hidden; background: #222; }
.loader__line span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--green);
  animation: loader 1s ease-in-out infinite;
}
.loader__copy { color: var(--muted); font-size: 10px; letter-spacing: .24em; }
@keyframes loader { from { transform: translateX(-110%); } to { transform: translateX(330%); } }

/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.08);
}
.nav { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 26px; letter-spacing: .08em; }
.brand img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line-green); }
.nav-menu { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav-menu a {
  position: relative;
  color: #d6d6d6;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .2s ease;
}
.nav-menu a:hover { color: var(--green); }
.nav-buy { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; border: 0; background: transparent; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px auto; transition: .2s ease; }

/* buttons */
.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--green); color: #050505; }
.btn--solid:hover { background: #d7ff49; }
.btn--outline { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.015); }
.btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--text { min-height: 0; padding: 10px 0; color: var(--green); border: 0; }
.btn--small { min-height: 42px; padding: 0 16px; }
.btn--large { min-height: 60px; padding: 0 32px; }

/* hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 72px;
  background:
    linear-gradient(90deg, #050505 0%, #050505 43%, rgba(5,5,5,.94) 54%, rgba(5,5,5,.72) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, transparent 75%, #050505 100%);
}
.hero-city {
  position: absolute;
  inset: auto 0 0;
  height: 39%;
  opacity: .25;
  filter: grayscale(1);
  background:
    linear-gradient(to top, #000, transparent),
    url("assets/spuci-banner.jpeg") center bottom / cover no-repeat;
  mix-blend-mode: screen;
}
.hero-fog {
  position: absolute;
  width: 720px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .14;
  background: var(--green);
  animation: fog 10s ease-in-out infinite alternate;
}
.hero-fog--one { right: 2%; bottom: -110px; }
.hero-fog--two { right: 22%; top: 22%; width: 360px; height: 180px; opacity: .07; animation-delay: -3s; }
@keyframes fog { to { transform: translate3d(50px,-25px,0) scale(1.08); } }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 48px; }
.hero-copy { max-width: 610px; }
.hero-kicker { margin-bottom: 10px; }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(110px, 14vw, 220px);
  font-weight: 400;
  line-height: .76;
  letter-spacing: .015em;
}
.hero-line {
  margin: 30px 0 0;
  max-width: 570px;
  font-family: var(--display);
  font-size: clamp(31px, 4vw, 52px);
  line-height: .96;
  letter-spacing: .02em;
}
.hero-line strong { color: var(--green); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #c8c8c8;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.chain-pill strong { color: var(--text); }
.chain-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px var(--green); }
.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.hero-halo {
  position: absolute;
  width: min(50vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(200,255,0,.22);
  box-shadow: 0 0 110px rgba(200,255,0,.12), inset 0 0 80px rgba(200,255,0,.06);
}
.hero-art-wrap {
  position: relative;
  z-index: 2;
  width: min(47vw, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200,255,0,.28);
  box-shadow: 0 34px 90px rgba(0,0,0,.65);
  will-change: transform;
  transition: transform .18s ease-out;
}
.hero-art { width: 100%; height: 100%; object-fit: cover; }
.scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 5px, rgba(200,255,0,.035) 6px);
}
.hero-scribble {
  position: absolute;
  z-index: 4;
  color: var(--green);
  font-family: var(--display);
  letter-spacing: .06em;
  opacity: .72;
  transform: rotate(-8deg);
}
.hero-scribble--a { right: -4%; top: 15%; font-size: 28px; }
.hero-scribble--b { left: 1%; bottom: 13%; font-size: 22px; transform: rotate(7deg); }

/* restrained glitch */
.glitch { position: relative; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.glitch::before { color: var(--green); transform: translateX(2px); }
.glitch::after { color: #fff; transform: translateX(-2px); }
.glitch:hover::before { opacity: .35; animation: glitch-a .42s steps(2,end) 1; }
.glitch:hover::after { opacity: .22; animation: glitch-b .42s steps(2,end) 1; }
@keyframes glitch-a { 20%{clip-path:inset(5% 0 70% 0)} 60%{clip-path:inset(55% 0 20% 0)} 100%{clip-path:inset(0)} }
@keyframes glitch-b { 20%{clip-path:inset(65% 0 8% 0)} 60%{clip-path:inset(12% 0 60% 0)} 100%{clip-path:inset(0)} }

/* ticker */
.ticker { position: relative; z-index: 4; overflow: hidden; border-block: 1px solid rgba(200,255,0,.24); background: #090909; }
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 13px 0;
  color: #eee;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: .08em;
  animation: marquee 24s linear infinite;
}
.ticker-track i { color: var(--green); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* lore */
.lore { border-bottom: 1px solid var(--line); }
.lore-grid { display: grid; grid-template-columns: 150px 1fr; gap: 0 48px; }
.section-label { border-top: 1px solid var(--line-green); padding-top: 14px; }
.section-label span { color: var(--green); font-family: var(--display); font-size: 42px; }
.section-label p { margin: 5px 0 0; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.lore-copy h2 { font-size: clamp(72px, 9vw, 138px); }
.lore-copy p { max-width: 650px; margin: 34px 0 10px; color: var(--muted); font-size: clamp(18px, 2.1vw, 26px); line-height: 1.55; }
.lore-copy > strong { color: var(--green); font-family: var(--display); font-size: 52px; font-weight: 400; }
.lore-art { grid-column: 2; margin-top: 56px; overflow: hidden; border: 1px solid var(--line); }
.lore-art img { width: 100%; aspect-ratio: 2.5/1; object-fit: cover; filter: saturate(.85) contrast(1.05); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.lore-art:hover img { transform: scale(1.025); }

/* hood */
.hood { min-height: 850px; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hood-glow {
  position: absolute;
  left: 50%;
  bottom: -460px;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,0,.2), rgba(200,255,0,.05) 38%, transparent 69%);
}
.hood-inner { position: relative; text-align: center; }
.hood-statement { display: flex; flex-direction: column; align-items: center; }
.hood-statement span { color: var(--muted); font-family: var(--display); font-size: clamp(42px, 6vw, 82px); letter-spacing: .04em; line-height: 1; }
.hood-statement strong { font-family: var(--display); font-size: clamp(104px, 17vw, 230px); font-weight: 400; line-height: .8; }
.hood-statement--green strong { color: var(--green); text-shadow: 0 0 55px rgba(200,255,0,.14); }
.hood-divider { width: min(520px, 70vw); height: 1px; margin: 40px auto; background: rgba(255,255,255,.14); }
.hood-divider span { display: block; width: 90px; height: 1px; margin: auto; background: var(--green); box-shadow: 0 0 16px var(--green); }
.hood-character {
  position: absolute;
  left: 50%;
  bottom: -235px;
  width: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: .42;
  filter: grayscale(.15);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

/* token */
.token-cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.token-card {
  min-height: 220px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent);
  transition: background .25s ease;
}
.token-card:hover { background: rgba(200,255,0,.035); }
.token-card > span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.token-card strong { font-family: var(--display); font-size: clamp(50px, 6vw, 88px); font-weight: 400; line-height: .9; }
.token-card code { max-width: 100%; overflow-wrap: anywhere; color: var(--text); font-size: clamp(17px, 2vw, 26px); }
.copy-btn {
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid var(--line-green);
  background: transparent;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}
.copy-btn:hover { background: var(--green); color: #050505; }

/* how */
.how { background: #080808; border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { position: relative; min-height: 350px; padding: 34px 30px 30px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step::before { content: ""; position: absolute; left: 0; top: -1px; width: 0; height: 2px; background: var(--green); transition: width .35s ease; }
.step:hover::before { width: 100%; }
.step-number { color: var(--muted); font-size: 11px; letter-spacing: .18em; }
.step-icon { margin: 50px 0 28px; color: var(--green); font-size: 46px; }
.step h3 { margin: 0; font-family: var(--display); font-size: 48px; font-weight: 400; }
.step p { max-width: 280px; margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* community */
.community { overflow: hidden; }
.community-art { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 75% 55%, rgba(200,255,0,.11), transparent 34%); }
.community-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.community-copy > p:not(.eyebrow) { max-width: 520px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.community-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.community-visual { position: relative; }
.community-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid rgba(200,255,0,.24); filter: saturate(.86); }
.community-tag {
  position: absolute;
  left: -28px;
  bottom: 34px;
  padding: 13px 18px;
  background: var(--green);
  color: #050505;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: .06em;
  transform: rotate(-4deg);
}

/* memes */
.memes { background: #080808; border-top: 1px solid var(--line); }
.meme-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 14px; }
.meme-card { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.meme-card img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.8); transition: transform .6s ease, filter .3s ease; }
.meme-card--wide img { aspect-ratio: 1.4/1; }
.meme-card:hover img { transform: scale(1.035); filter: saturate(1); }
.meme-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(5,5,5,.85);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* final CTA */
.final-cta {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(5,5,5,.63), rgba(5,5,5,.92)),
    url("assets/spuci-banner.jpeg") center / cover no-repeat;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200,255,0,.10), transparent 52%);
}
.final-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-inner > p { margin: 0; color: var(--muted); font-family: var(--display); font-size: clamp(46px, 7vw, 92px); line-height: 1; }
.final-inner h2 { margin: 0; color: var(--green); font-family: var(--display); font-size: clamp(108px, 19vw, 265px); font-weight: 400; line-height: .76; text-shadow: 0 0 65px rgba(200,255,0,.16); }
.final-inner > span { margin: 24px 0; font-family: var(--display); font-size: 50px; }
.final-inner small { margin-top: 22px; color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.final-inner small strong { color: var(--text); }

/* footer */
.footer { padding: 68px 0 28px; border-top: 1px solid var(--line); background: #030303; }
.footer-main { display: grid; grid-template-columns: 1.2fr .7fr 1.1fr; gap: 60px; align-items: start; }
.footer-brand p { margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a { color: #d5d5d5; font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.footer-links a:hover { color: var(--green); }
.footer-contract span { display: block; margin-bottom: 12px; color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.footer-contract code { color: #d5d5d5; font-size: 11px; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 20px; border-top: 1px solid var(--line); color: #727272; font-size: 10px; line-height: 1.5; }
.footer-bottom span:last-child { max-width: 520px; text-align: right; }

/* toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 200;
  padding: 12px 16px;
  transform: translate(-50%, 18px);
  opacity: 0;
  background: var(--green);
  color: #050505;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  pointer-events: none;
  transition: .24s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

/* responsive */
@media (max-width: 1080px) {
  .nav-menu { gap: 16px; }
  .nav-menu a { font-size: 11px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-visual { min-height: 560px; }
  .hero-art-wrap { width: min(46vw, 500px); }
  .community-grid { gap: 36px; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 30px, 1180px); }
  .section { padding: 88px 0; }
  .nav { min-height: 70px; }
  .nav-buy { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 70px 15px auto;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5,5,5,.98);
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .nav-menu.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-menu a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 12px; }
  .nav-menu a:last-child { border-bottom: 0; }

  .hero { min-height: auto; padding: 96px 0 62px; background: #050505; }
  .hero-grid { display: flex; flex-direction: column; gap: 12px; }
  .hero-copy { order: 1; max-width: 100%; }
  .hero-visual { order: 2; width: 100%; min-height: auto; margin-top: 20px; }
  .hero-art-wrap { width: min(88vw, 580px); }
  .hero-halo { width: min(92vw, 610px); }
  .hero h1 { font-size: clamp(110px, 31vw, 190px); }
  .hero-line { font-size: clamp(34px, 9vw, 58px); }
  .hero-city { height: 30%; opacity: .13; }
  .hero-scribble--a { right: 2%; }
  .hero-scribble--b { left: 2%; }

  .lore-grid { grid-template-columns: 1fr; }
  .section-label { margin-bottom: 36px; }
  .lore-art { grid-column: 1; }
  .hood { min-height: 700px; }
  .hood-character { bottom: -180px; width: 220px; }
  .section-top { align-items: start; flex-direction: column; }
  .token-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step-icon { margin: 28px 0 18px; }
  .community-grid { grid-template-columns: 1fr; }
  .community-visual { order: -1; max-width: 640px; }
  .community-tag { left: 12px; }
  .meme-grid { grid-template-columns: 1fr 1fr; }
  .meme-card--wide { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-contract { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .chain-pill { font-size: 9px; }
  .ticker-track { font-size: 18px; gap: 20px; }
  .lore-copy p { font-size: 17px; }
  .lore-art img { aspect-ratio: 1.6/1; }
  .hood { min-height: 610px; }
  .hood-divider { margin: 28px auto; }
  .hood-character { width: 180px; bottom: -135px; }
  .token-card { min-height: 180px; padding: 24px; }
  .step { padding-inline: 18px; }
  .community-actions { flex-direction: column; }
  .community-actions .btn { width: 100%; }
  .community-tag { left: 8px; bottom: 16px; font-size: 22px; }
  .meme-grid { grid-template-columns: 1fr; }
  .meme-card--wide { grid-column: auto; }
  .meme-card--wide img { aspect-ratio: 1.4/1; }
  .final-inner h2 { font-size: clamp(108px, 31vw, 170px); }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-contract { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}

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