:root {
  --ink: #090909;
  --paper: #f1ecdf;
  --paper-muted: #c8c1b2;
  --red: #ee1c27;
  --red-dark: #9b1018;
  --green: #6f9f26;
  --cyan: #45efd3;
  --violet: #ad4cff;
  --line: rgba(241, 236, 223, 0.2);
  --mx: 0;
  --my: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.stage {
  position: relative;
  isolation: isolate;
  width: 100vw;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #090909;
}

.court-background {
  position: absolute;
  z-index: -6;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06) brightness(0.82);
  transform: translate3d(calc(var(--mx) * -8px), calc(var(--my) * -5px), 0) scale(1.02);
  transition: transform 220ms ease-out;
}

.vignette {
  position: absolute;
  z-index: -5;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.68) 32%, rgba(4, 4, 4, 0.14) 68%, rgba(4, 4, 4, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 28%, transparent 68%, rgba(0, 0, 0, 0.72));
}

.grain {
  position: absolute;
  z-index: 30;
  inset: -60%;
  opacity: 0.075;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 23% 37%, transparent 0 2px, rgba(255,255,255,.7) 3px 4px),
    repeating-linear-gradient(117deg, transparent 0 5px, rgba(255,255,255,.18) 6px 7px);
  background-size: 13px 17px, 19px 23px;
  animation: grain-shift 0.24s steps(2) infinite;
  mix-blend-mode: soft-light;
}

.cursor-light {
  position: absolute;
  z-index: -3;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 320px at var(--pointer-x) var(--pointer-y), rgba(238, 28, 39, 0.12), transparent 72%);
}

.topbar {
  position: absolute;
  z-index: 20;
  top: clamp(22px, 3.1vh, 34px);
  left: clamp(28px, 4.2vw, 82px);
  right: clamp(28px, 4.2vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.identity img {
  width: 48px;
  height: 48px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--red);
  transition: transform 220ms cubic-bezier(.2,.85,.25,1.25);
}

.identity:hover img {
  transform: rotate(-9deg) scale(1.08);
}

.identity__copy {
  display: grid;
  gap: 1px;
}

.identity__copy strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
}

.identity__copy small {
  color: var(--paper-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  --magnet-x: 0px;
  --magnet-y: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 148px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(241, 236, 223, 0.48);
  color: var(--paper);
  background: rgba(9, 9, 9, 0.64);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 160ms ease-out;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.social-link--red {
  border-color: rgba(238, 28, 39, 0.72);
  background: rgba(155, 16, 24, 0.68);
}

.social-link--red:hover,
.social-link--red:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.hero {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-copy {
  position: absolute;
  z-index: 8;
  top: 19.5%;
  left: clamp(32px, 5.2vw, 100px);
  width: min(43vw, 760px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px 5px;
  color: var(--paper-muted);
  font-size: clamp(10px, .78vw, 15px);
  font-weight: 900;
  letter-spacing: 0.28em;
}

.eyebrow span {
  color: var(--red);
  animation: status-blink 1.4s steps(2) infinite;
}

.title {
  position: relative;
  display: grid;
  margin: 0;
  width: max-content;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(94px, 10.9vw, 210px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.72;
  text-transform: uppercase;
  transform: rotate(-2deg);
  filter: drop-shadow(9px 11px 0 rgba(0,0,0,.58));
}

.title > span {
  position: relative;
  display: block;
}

.title__pepe {
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
}

.title__jordan {
  z-index: -1;
  margin-left: clamp(20px, 2.6vw, 50px);
  color: var(--red);
  -webkit-text-stroke: 2px var(--ink);
}

.title__jordan::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  inset: 7px auto auto 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 236, 223, 0.58);
}

.tagline {
  margin: clamp(22px, 3.1vh, 34px) 0 0 7px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(22px, 1.9vw, 38px);
  letter-spacing: 0.045em;
  line-height: 0.96;
}

.tagline::after {
  content: "";
  display: block;
  width: 76px;
  height: 7px;
  margin-top: 14px;
  background: var(--red);
  transform: skewX(-20deg);
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(20px, 2.9vh, 31px) 0 0 6px;
}

.contract-dock {
  position: absolute;
  z-index: 42;
  top: clamp(84px, 8.8vh, 96px);
  right: clamp(28px, 4.2vw, 82px);
  left: auto;
  transform: none;
}

.contract-dock .actions {
  margin: 0;
}

.contract-dock::after {
  content: "COPY ZONE";
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  left: auto;
  color: rgba(241, 236, 223, .58);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .22em;
  white-space: nowrap;
  transform: none;
}

.ca-button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  min-width: 286px;
  padding: 11px 66px 12px 17px;
  overflow: hidden;
  border: 2px solid var(--paper);
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  box-shadow: 7px 7px 0 var(--red), 10px 10px 0 rgba(0,0,0,.55);
  transform: translate(var(--magnet-x), var(--magnet-y)) rotate(-1deg);
  transition: transform 170ms ease-out, box-shadow 170ms ease;
}

.contract-dock .ca-button {
  animation: ca-beacon 2.4s ease-in-out 1.2s infinite;
}

.ca-button::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -25%;
  width: 36px;
  height: 250%;
  background: rgba(255,255,255,.74);
  transform: rotate(23deg) translateX(-120px);
  transition: transform 520ms ease;
}

.ca-button:hover::before {
  transform: rotate(23deg) translateX(370px);
}

.ca-button:hover,
.ca-button:focus-visible {
  transform: translate(var(--magnet-x), var(--magnet-y)) rotate(1deg) translateY(-3px);
  box-shadow: 10px 11px 0 var(--red), 13px 14px 0 rgba(0,0,0,.5);
}

.ca-button:active {
  transform: translate(var(--magnet-x), var(--magnet-y)) translate(5px, 5px);
  box-shadow: 2px 2px 0 var(--red);
}

.ca-button__label {
  grid-column: 1;
  color: #5a554d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .22em;
}

.ca-button strong {
  grid-column: 1;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 25px;
  letter-spacing: .06em;
  line-height: 1.05;
}

.ca-button__icon {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 29px;
  transform: translateY(-50%);
}

.copy-sheet {
  position: absolute;
  width: 17px;
  height: 20px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.copy-sheet--back {
  top: 0;
  right: 0;
}

.copy-sheet--front {
  bottom: 0;
  left: 0;
}

.copy-hint {
  color: var(--paper-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .19em;
  writing-mode: vertical-rl;
}

.flight-zone {
  position: absolute;
  z-index: 6;
  top: 5.7%;
  right: 2.1%;
  width: min(62vw, 1130px);
  height: 88%;
  pointer-events: none;
}

.number-23 {
  position: absolute;
  z-index: -2;
  right: -1.7vw;
  bottom: -7.2vh;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(310px, 34vw, 650px);
  font-style: italic;
  line-height: .8;
  -webkit-text-stroke: 2px rgba(241, 236, 223, .09);
  transform: rotate(-7deg);
  user-select: none;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(241, 236, 223, .12);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.orbit::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 54%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.orbit--one {
  top: 1%;
  right: 8%;
  width: 72%;
  aspect-ratio: 1;
  animation: orbit-turn 19s linear infinite;
}

.orbit--two {
  top: 13%;
  right: 1%;
  width: 55%;
  aspect-ratio: 1;
  opacity: .48;
  animation: orbit-turn 13s linear reverse infinite;
}

.coin-glow {
  position: absolute;
  z-index: -1;
  top: -1%;
  left: 5%;
  width: 31%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69,239,211,.24), rgba(173,76,255,.11) 44%, transparent 72%);
  filter: blur(10px);
  animation: coin-pulse 2.4s ease-in-out infinite;
}

.character-parallax {
  position: absolute;
  inset: -4% -2% -5% 2%;
  transform: translate3d(calc(var(--mx) * 15px), calc(var(--my) * 10px), 0) rotate(calc(var(--mx) * 1.1deg));
  transition: transform 180ms ease-out;
  will-change: transform;
}

.character-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.character-button:focus-visible .character {
  filter: drop-shadow(0 0 0 var(--paper)) drop-shadow(0 0 14px var(--red)) drop-shadow(20px 26px 20px rgba(0,0,0,.65));
}

.character-float {
  display: block;
  width: 100%;
  height: 100%;
  animation: character-float 5.1s cubic-bezier(.45,.05,.55,.95) infinite;
  will-change: transform;
}

.character {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(20px 26px 20px rgba(0,0,0,.66));
  transition: filter 250ms ease, transform 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.character-button:hover .character {
  filter: drop-shadow(0 0 18px rgba(238,28,39,.35)) drop-shadow(20px 26px 20px rgba(0,0,0,.66));
  transform: scale(1.018);
}

.character-button.is-dunking .character-float {
  animation: dunk 780ms cubic-bezier(.18,.87,.33,1.25) both;
}

.tap-note {
  position: absolute;
  right: 8.5%;
  bottom: 11%;
  margin: 0;
  color: var(--paper-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
  transform: rotate(-8deg);
  animation: note-nudge 1.5s ease-in-out infinite;
}

.tap-note span {
  display: inline-block;
  color: var(--red);
  font-size: 20px;
}

.lore-card {
  position: absolute;
  z-index: 12;
  left: clamp(30px, 5.2vw, 100px);
  bottom: clamp(76px, 9.8vh, 106px);
  width: min(37vw, 570px);
  padding: clamp(15px, 1.4vw, 23px) clamp(18px, 1.7vw, 30px) clamp(15px, 1.4vw, 22px);
  border: 1px solid rgba(241, 236, 223, .32);
  background: rgba(7, 7, 7, .78);
  box-shadow: 10px 10px 0 rgba(238,28,39,.68);
  backdrop-filter: blur(9px);
  transform: rotate(.45deg);
}

.lore-card::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 14%;
  width: 54px;
  height: 15px;
  background: rgba(241,236,223,.72);
  transform: rotate(-3deg);
}

.lore-card__heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .24em;
}

.lore-card h2 {
  margin: 12px 0 7px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(19px, 1.38vw, 27px);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: .95;
}

.lore-card p {
  margin: 0;
  color: #d2ccbf;
  font-size: clamp(11px, .72vw, 14px);
  line-height: 1.46;
}

.lore-card .lore-card__rule {
  margin-top: 8px;
  color: var(--paper);
  font-size: clamp(9px, .64vw, 12px);
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.court-stamp {
  position: absolute;
  z-index: 11;
  right: 4.4%;
  bottom: 10.5%;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 8px;
  min-width: 190px;
  padding: 8px 12px;
  border: 2px solid rgba(241,236,223,.42);
  color: rgba(241,236,223,.65);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.1;
  transform: rotate(-6deg);
}

.court-stamp strong {
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 35px;
  line-height: .8;
}

.ticker {
  position: absolute;
  z-index: 24;
  right: -2%;
  bottom: 0;
  left: -2%;
  height: clamp(40px, 5.3vh, 58px);
  overflow: hidden;
  color: var(--ink);
  background: var(--red);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 -2px 0 var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(20px, 1.65vw, 32px);
  letter-spacing: .07em;
  line-height: calc(clamp(40px, 5.3vh, 58px) - 6px);
  transform: rotate(-.45deg);
}

.ticker__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker-move 19s linear infinite;
}

.ticker__track span {
  display: block;
}

.toast {
  position: absolute;
  z-index: 50;
  right: clamp(20px, 3vw, 56px);
  bottom: clamp(70px, 8vh, 90px);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 10px 16px 10px 10px;
  border: 2px solid var(--paper);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) rotate(2deg);
  transition: opacity 200ms ease, transform 260ms cubic-bezier(.2,.9,.3,1.25);
}

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

.toast img {
  border-radius: 50%;
}

.toast span {
  display: grid;
}

.toast strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
}

.toast small {
  color: var(--paper-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;
}

.flash {
  position: absolute;
  z-index: 45;
  inset: 0;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
}

.flash.is-active {
  animation: camera-flash 380ms ease-out;
}

.spark {
  position: absolute;
  z-index: 40;
  width: 8px;
  height: 8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  pointer-events: none;
  animation: spark-fly 720ms ease-out forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 760ms cubic-bezier(.2,.8,.25,1) forwards;
}

.reveal--1 { animation-delay: 80ms; }
.reveal--2 { animation-delay: 180ms; }
.reveal--3 { animation-delay: 260ms; }
.reveal--4 { animation-delay: 390ms; }
.reveal--5 { animation-delay: 520ms; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

@keyframes character-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.1deg); }
  48% { transform: translate3d(0, -17px, 0) rotate(1deg); }
}

@keyframes dunk {
  0% { transform: translate3d(0, 0, 0) rotate(-1deg) scale(1); }
  25% { transform: translate3d(-18px, 24px, 0) rotate(-7deg) scale(.97); }
  58% { transform: translate3d(25px, -58px, 0) rotate(5deg) scale(1.045); }
  76% { transform: translate3d(31px, -46px, 0) rotate(2deg) scale(1.025); }
  100% { transform: translate3d(0, 0, 0) rotate(-1deg) scale(1); }
}

@keyframes coin-pulse {
  0%, 100% { opacity: .54; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes orbit-turn {
  to { transform: rotate(336deg); }
}

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

@keyframes status-blink {
  50% { opacity: .38; }
}

@keyframes note-nudge {
  50% { transform: rotate(-8deg) translate(3px, -4px); }
}

@keyframes grain-shift {
  0% { transform: translate3d(-2%, -1%, 0); }
  50% { transform: translate3d(1%, 2%, 0); }
  100% { transform: translate3d(2%, -2%, 0); }
}

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes camera-flash {
  0% { opacity: 0; }
  14% { opacity: .42; }
  100% { opacity: 0; }
}

@keyframes spark-fly {
  0% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(var(--spark-x), var(--spark-y)) rotate(240deg) scale(.1); }
}

@keyframes ca-beacon {
  0%, 76%, 100% { box-shadow: 7px 7px 0 var(--red), 10px 10px 0 rgba(0,0,0,.55); }
  84% { box-shadow: 7px 7px 0 var(--red), 10px 10px 0 rgba(0,0,0,.55), 0 0 0 0 rgba(238,28,39,.5); }
  94% { box-shadow: 7px 7px 0 var(--red), 10px 10px 0 rgba(0,0,0,.55), 0 0 0 13px rgba(238,28,39,0); }
}

@media (max-width: 1440px) {
  .hero-copy { top: 18%; width: 45vw; }
  .flight-zone { right: -2%; width: 65vw; }
  .lore-card { width: 40vw; }
  .court-stamp { display: none; }
}

@media (max-aspect-ratio: 4/3), (max-width: 900px) {
  body { overflow: auto; }

  .stage {
    min-height: 940px;
    height: 100svh;
  }

  .vignette {
    background: linear-gradient(180deg, rgba(4,4,4,.83), rgba(4,4,4,.2) 40%, rgba(4,4,4,.56) 72%, rgba(4,4,4,.9));
  }

  .topbar {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .identity__copy small { display: none; }
  .identity img { width: 42px; height: 42px; }

  .social-link {
    width: auto;
    min-width: 46px;
    padding: 0 12px;
  }

  .social-link span:first-child { font-size: 0; }
  .social-link[data-link="twitter"] span:first-child::after { content: "X"; font-size: 12px; }
  .social-link[data-link="pumpfun"] span:first-child::after { content: "PUMP"; font-size: 10px; }

  .contract-dock {
    top: 78px;
    right: 18px;
    left: auto;
    transform: none;
  }

  .contract-dock::after {
    display: none;
  }

  .hero-copy {
    top: 20%;
    left: 22px;
    width: calc(100% - 44px);
  }

  .title { font-size: clamp(82px, 24vw, 150px); }
  .tagline { font-size: 22px; }

  .flight-zone {
    top: 29%;
    right: -16%;
    width: 114%;
    height: 54%;
  }

  .number-23 { right: 2%; font-size: 76vw; }
  .tap-note { display: none; }
  .lore-card {
    left: 22px;
    right: 22px;
    bottom: 76px;
    width: auto;
    padding: 15px 18px;
  }

  .lore-card p:first-of-type { max-width: 72%; }
  .copy-hint { display: none; }
  .ca-button { min-width: 230px; }
}

@media (max-width: 540px) {
  .stage { min-height: 820px; }
  .identity__copy strong { font-size: 16px; }
  .hero-copy { top: 18%; }
  .eyebrow { margin-bottom: 10px; font-size: 8px; letter-spacing: .16em; }
  .title { font-size: clamp(76px, 23vw, 114px); }
  .tagline { margin-top: 17px; font-size: 19px; }
  .tagline::after { height: 5px; margin-top: 9px; }
  .ca-button { min-width: 204px; padding-right: 52px; }
  .ca-button strong { font-size: 21px; }
  .flight-zone { top: 32%; right: -25%; width: 128%; height: 48%; }
  .lore-card { bottom: 65px; }
  .lore-card p:first-of-type { max-width: none; font-size: 10px; }
  .lore-card .lore-card__rule { display: none; }
  .toast { right: 18px; left: 18px; bottom: 65px; }
}

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

  .grain { display: none; }
  .character-parallax,
  .court-background { transform: none; }
}
