:root {
  color-scheme: dark;
  --bg: #050705;
  --bg-deep: #020302;
  --panel: #0a0d0a;
  --panel-soft: #101510;
  --ink: #f2f5ef;
  --ink-dark: #071007;
  --muted: #9da99e;
  --acid: #91ff44;
  --acid-soft: #c0ff92;
  --acid-dark: #48b819;
  --paper: #e9eee6;
  --line: rgba(235, 255, 228, 0.16);
  --line-strong: rgba(145, 255, 68, 0.5);
  --wrap: min(1280px, calc(100% - 48px));
  --display:
    Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--acid-dark) var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: 0.035;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

::selection {
  background: var(--acid);
  color: var(--ink-dark);
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: 105px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.visually-hidden {
  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: 12px;
  left: 14px;
  z-index: 120;
  padding: 11px 16px;
  background: var(--acid);
  color: var(--ink-dark);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 94;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(145, 255, 68, 0.1), transparent 67%);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 220ms ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  width: min(1320px, calc(100% - 32px));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 11px 10px 18px;
  border: 1px solid var(--line);
  background: rgba(4, 6, 4, 0.78);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px) saturate(130%);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink-dark);
  font-family: var(--display);
  font-size: 1.12rem;
  transform: rotate(-4deg);
}

.brand-word {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-status {
  margin-left: 2px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--acid);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.1vw, 34px);
}

.nav-links a {
  position: relative;
  color: #cbd5cc;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--acid);
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-trade {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 18px;
  background: var(--acid);
  color: var(--ink-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.nav-trade:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.nav-trade span {
  font-size: 1rem;
}

.section-tag,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow:
    0 0 0 5px rgba(145, 255, 68, 0.12),
    0 0 22px rgba(145, 255, 68, 0.78);
  animation: pulse 2s ease-in-out infinite;
}

.acid {
  color: var(--acid);
}

em {
  color: var(--acid);
  font-style: normal;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 21px;
  border: 1px solid rgba(244, 255, 240, 0.32);
  background: rgba(5, 8, 5, 0.4);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: var(--acid);
  background: var(--ink);
  color: var(--ink-dark);
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink-dark);
}

.button-primary:hover {
  border-color: var(--ink);
}

.button-dark {
  border-color: var(--ink-dark);
  background: var(--ink-dark);
  color: var(--ink);
}

.button-dark:hover {
  border-color: var(--ink-dark);
  background: transparent;
  color: var(--ink-dark);
}

.button-light {
  border-color: rgba(7, 16, 7, 0.45);
  background: transparent;
  color: var(--ink-dark);
}

.button-light:hover {
  border-color: var(--ink-dark);
  background: var(--ink);
  color: var(--ink-dark);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #020302;
}

.hero-campaign {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: campaign-in 1.25s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(2, 3, 2, 0.98) 0%,
      rgba(2, 3, 2, 0.9) 25%,
      rgba(2, 3, 2, 0.42) 52%,
      rgba(2, 3, 2, 0.08) 78%
    ),
    linear-gradient(
      180deg,
      rgba(2, 3, 2, 0.56) 0%,
      transparent 24%,
      transparent 66%,
      rgba(2, 3, 2, 0.82) 100%
    );
}

.hero-seam {
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 51%;
  width: 1px;
  background: linear-gradient(
    transparent,
    rgba(145, 255, 68, 0.22),
    transparent
  );
  opacity: 0.6;
}

.hero-seam::before,
.hero-seam::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 7px;
  height: 1px;
  background: var(--acid);
}

.hero-seam::before {
  top: 22%;
}

.hero-seam::after {
  bottom: 18%;
}

.hero-inner {
  position: relative;
  min-height: max(820px, 100svh);
  display: flex;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 112px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 60%);
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.2vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.047em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  white-space: nowrap;
}

.hero h1 .acid {
  max-width: 630px;
  margin-top: 0.12em;
  font-size: 0.65em;
  letter-spacing: -0.035em;
  line-height: 0.93;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 32px;
  color: #c9d2c8;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.hero-lede strong {
  color: var(--ink);
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  margin-top: 34px;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.hero-signature img:first-child {
  width: 78px;
  transform: rotate(-7deg);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.42));
}

.hero-signature img:last-child {
  width: 48px;
  filter: drop-shadow(0 0 18px rgba(145, 255, 68, 0.28));
}

.campaign-label {
  position: absolute;
  right: 0;
  bottom: 108px;
  z-index: 3;
  width: 226px;
  padding: 19px 20px;
  border-left: 4px solid var(--acid);
  background: rgba(3, 5, 3, 0.72);
  backdrop-filter: blur(12px);
}

.campaign-label span,
.campaign-label strong,
.campaign-label small {
  display: block;
}

.campaign-label span {
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.campaign-label strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.campaign-label small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bdc8be;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  color: var(--acid);
  font-size: 1rem;
  font-style: normal;
  animation: drop 1.8s ease-in-out infinite;
}

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid #182116;
  background: var(--acid);
  color: var(--ink-dark);
}

.marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 16px 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.055em;
  animation: marquee 30s linear infinite;
}

.marquee b {
  font-size: 0.7rem;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 70px;
}

.section-intro-wide {
  max-width: 900px;
}

.section-intro h2,
.patient-copy h2,
.vote-controls h2,
.rules-heading h2,
.facts-heading h2,
.trade-copy h2,
.final-cta h2 {
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.9vw, 7.3rem);
  letter-spacing: -0.045em;
  line-height: 0.87;
  text-transform: uppercase;
}

.section-intro > p:last-child,
.facts-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.patient-zero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
  padding-top: 150px;
  padding-bottom: 170px;
}

.patient-art {
  position: relative;
  min-height: 720px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 38%, #182619, #060806 57%);
}

.patient-art::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(145, 255, 68, 0.22);
  pointer-events: none;
}

.patient-art::after {
  content: "$HOODIE";
  position: absolute;
  right: -0.05em;
  bottom: -0.17em;
  color: rgba(145, 255, 68, 0.09);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 10rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.patient-art img {
  position: relative;
  z-index: 2;
  width: min(82%, 540px);
  max-height: 660px;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.72));
}

.patient-art picture {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.garment-tag {
  position: absolute;
  top: 38px;
  left: 0;
  z-index: 4;
  padding: 11px 16px;
  background: var(--acid);
  color: var(--ink-dark);
  font-size: 0.63rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.patient-art figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 3;
  color: #bdc9bd;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patient-lede {
  max-width: 590px;
  margin-bottom: 38px;
  color: #b9c4ba;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.75;
}

.patient-note {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.patient-note:last-child {
  border-bottom: 1px solid var(--line);
}

.patient-note span {
  color: var(--acid);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.patient-note strong {
  font-size: 0.82rem;
  letter-spacing: 0.055em;
  line-height: 1.45;
}

.spread {
  padding: 150px 0 180px;
  border-top: 1px solid var(--line);
  background: #070907;
}

.spread-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.spread-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: default;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.spread-card:nth-child(2),
.spread-card:nth-child(4) {
  transform: translateY(58px);
}

.js .spread-card:nth-child(2)[data-reveal],
.js .spread-card:nth-child(4)[data-reveal] {
  transform: translateY(92px);
}

.js .spread-card:nth-child(2).is-visible,
.js .spread-card:nth-child(4).is-visible {
  transform: translateY(58px);
}

.spread-card-media {
  position: relative;
  aspect-ratio: 4 / 4.65;
  overflow: hidden;
  background: radial-gradient(circle at 50% 37%, #172417, #030403 66%);
}

.spread-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 63%, rgba(3, 5, 3, 0.7));
  pointer-events: none;
}

.spread-card-media picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease;
}

.spread-card-media picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

/* Hood Check: the portraits never move. Only the room reacts. */
[data-hood-card] {
  --hood-accent: #91ff44;
  --hood-accent-soft: rgba(145, 255, 68, 0.32);
  cursor: pointer;
  isolation: isolate;
  outline: none;
}

[data-hood-card] picture img {
  animation: none !important;
  transform: none !important;
}

[data-hood-card]:hover,
[data-hood-card]:focus-visible,
[data-hood-card].is-hood-active {
  border-color: var(--hood-accent);
  box-shadow:
    0 0 0 1px var(--hood-accent-soft),
    0 0 52px var(--hood-accent-soft);
}

[data-hood-card]:focus-visible {
  outline: 2px solid var(--hood-accent);
  outline-offset: 5px;
}

.has-hood-selection [data-hood-card]:not(.is-hood-active) {
  opacity: 0.5;
  filter: grayscale(0.42) saturate(0.55) contrast(0.94);
}

.has-hood-selection [data-hood-card]:not(.is-hood-active):hover,
.has-hood-selection [data-hood-card]:not(.is-hood-active):focus-visible {
  opacity: 0.88;
  filter: none;
}

.hood-aura,
.wearer-aura {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 420ms ease;
}

[data-hood-card]:hover .hood-aura,
[data-hood-card]:focus-visible .hood-aura,
[data-hood-card].is-hood-active .hood-aura {
  opacity: 0.9;
}

.hood-scanner,
.wearer-scanner {
  position: absolute;
  inset: 18px;
  z-index: 4;
  opacity: 0;
  background:
    linear-gradient(var(--hood-accent), var(--hood-accent)) top left / 30px 2px
      no-repeat,
    linear-gradient(var(--hood-accent), var(--hood-accent)) top left / 2px 30px
      no-repeat,
    linear-gradient(var(--hood-accent), var(--hood-accent)) top right / 30px 2px
      no-repeat,
    linear-gradient(var(--hood-accent), var(--hood-accent)) top right / 2px 30px
      no-repeat,
    linear-gradient(var(--hood-accent), var(--hood-accent)) bottom left / 30px
      2px no-repeat,
    linear-gradient(var(--hood-accent), var(--hood-accent)) bottom left / 2px
      30px no-repeat,
    linear-gradient(var(--hood-accent), var(--hood-accent)) bottom right / 30px
      2px no-repeat,
    linear-gradient(var(--hood-accent), var(--hood-accent)) bottom right / 2px
      30px no-repeat;
  filter: drop-shadow(0 0 7px var(--hood-accent));
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hood-scanner::after,
.wearer-scanner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0,
    transparent 43%,
    var(--hood-accent-soft) 49%,
    var(--hood-accent) 50%,
    var(--hood-accent-soft) 52%,
    transparent 58%,
    transparent 100%
  );
  background-position: 0 -120%;
  background-repeat: no-repeat;
  background-size: 100% 32%;
}

[data-hood-card]:hover .hood-scanner,
[data-hood-card]:focus-visible .hood-scanner,
[data-hood-card].is-hood-active .hood-scanner {
  opacity: 1;
}

[data-hood-card]:hover .hood-scanner::after,
[data-hood-card]:focus-visible .hood-scanner::after,
[data-hood-card].is-hood-active .hood-scanner::after,
.wearer-stage.is-hood-checked .wearer-scanner::after {
  animation: hood-scan 820ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hood-status,
.stage-hood-status {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 6;
  max-width: calc(100% - 48px);
  padding: 9px 11px 10px;
  border: 1px solid var(--hood-accent);
  background: rgba(2, 3, 2, 0.84);
  color: var(--hood-accent);
  font-size: 0.59rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  backdrop-filter: blur(10px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hood-stamp,
.stage-hood-stamp {
  position: absolute;
  right: 24px;
  bottom: 26px;
  z-index: 6;
  padding: 9px 12px 8px;
  border: 2px solid currentColor;
  background: rgba(2, 3, 2, 0.8);
  color: var(--hood-accent);
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.5vw, 1.75rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  opacity: 0;
  transform: rotate(-5deg) scale(0.9);
  box-shadow: 0 0 20px var(--hood-accent-soft);
  pointer-events: none;
  transition:
    opacity 180ms ease 160ms,
    transform 260ms cubic-bezier(0.2, 0.9, 0.25, 1.25) 160ms;
}

[data-hood-card]:hover .hood-status,
[data-hood-card]:focus-visible .hood-status,
[data-hood-card].is-hood-active .hood-status {
  opacity: 1;
  transform: translateY(0);
}

[data-hood-card]:hover .hood-stamp,
[data-hood-card]:focus-visible .hood-stamp,
[data-hood-card].is-hood-active .hood-stamp {
  opacity: 1;
  transform: rotate(-5deg) scale(1);
}

[data-hood-id="doge"] {
  --hood-accent: #b8ff6e;
  --hood-accent-soft: rgba(184, 255, 110, 0.28);
}

[data-hood-id="doge"] .hood-aura,
[data-hood-id="doge"] .wearer-aura {
  background:
    radial-gradient(
      circle at 50% 37%,
      rgba(190, 255, 110, 0.6),
      rgba(222, 177, 64, 0.18) 24%,
      transparent 44%
    ),
    radial-gradient(circle at 50% 72%, rgba(145, 255, 68, 0.2), transparent 35%);
}

[data-hood-id="pepe"] {
  --hood-accent: #62ff85;
  --hood-accent-soft: rgba(98, 255, 133, 0.28);
}

[data-hood-id="pepe"] .hood-aura,
[data-hood-id="pepe"] .wearer-aura {
  background:
    repeating-radial-gradient(
      circle at 50% 39%,
      transparent 0 42px,
      rgba(98, 255, 133, 0.38) 44px 46px,
      transparent 48px 75px
    ),
    radial-gradient(
      circle at 50% 39%,
      rgba(55, 255, 115, 0.28),
      transparent 46%
    );
}

[data-hood-id="popcat"] {
  --hood-accent: #ffad75;
  --hood-accent-soft: rgba(255, 173, 117, 0.3);
}

[data-hood-id="popcat"] .hood-aura,
[data-hood-id="popcat"] .wearer-aura {
  background:
    radial-gradient(
      circle at 31% 34%,
      transparent 0 13%,
      rgba(255, 173, 117, 0.48) 13.5% 14.5%,
      transparent 15.5%
    ),
    radial-gradient(
      circle at 72% 42%,
      transparent 0 19%,
      rgba(255, 230, 190, 0.36) 19.5% 20.5%,
      transparent 21.5%
    ),
    radial-gradient(
      circle at 50% 43%,
      rgba(255, 132, 83, 0.24),
      transparent 52%
    );
}

[data-hood-id="pengu"] {
  --hood-accent: #7cecff;
  --hood-accent-soft: rgba(124, 236, 255, 0.29);
}

[data-hood-id="pengu"] .hood-aura,
[data-hood-id="pengu"] .wearer-aura {
  background:
    radial-gradient(
      ellipse at 50% 18%,
      transparent 0 29%,
      rgba(124, 236, 255, 0.52) 30% 31%,
      transparent 32% 41%,
      rgba(145, 255, 68, 0.28) 42% 43%,
      transparent 44%
    ),
    linear-gradient(180deg, transparent 54%, rgba(42, 198, 255, 0.17));
}

[data-hood-id="wif"] {
  --hood-accent: #ff86ce;
  --hood-accent-soft: rgba(255, 134, 206, 0.28);
}

[data-hood-id="wif"] .hood-aura,
[data-hood-id="wif"] .wearer-aura {
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 17px,
      rgba(255, 134, 206, 0.22) 18px 20px,
      transparent 21px 35px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 17px,
      rgba(255, 240, 205, 0.16) 18px 20px,
      transparent 21px 35px
    ),
    radial-gradient(
      circle at 50% 32%,
      rgba(255, 100, 199, 0.28),
      transparent 42%
    );
}

[data-hood-id="mog"] {
  --hood-accent: #c48cff;
  --hood-accent-soft: rgba(196, 140, 255, 0.3);
}

[data-hood-id="mog"] .hood-aura,
[data-hood-id="mog"] .wearer-aura {
  background:
    repeating-linear-gradient(
      112deg,
      transparent 0 16%,
      rgba(255, 66, 173, 0.22) 17% 18%,
      rgba(83, 227, 255, 0.28) 19% 20%,
      rgba(255, 222, 71, 0.18) 21% 22%,
      transparent 23% 38%
    ),
    radial-gradient(circle at 50% 37%, rgba(169, 88, 255, 0.3), transparent 49%);
}

[data-hood-id="brett"] {
  --hood-accent: #78a8ff;
  --hood-accent-soft: rgba(120, 168, 255, 0.3);
}

[data-hood-id="brett"] .hood-aura,
[data-hood-id="brett"] .wearer-aura {
  background:
    repeating-radial-gradient(
      ellipse at 44% 42%,
      transparent 0 34px,
      rgba(120, 168, 255, 0.34) 36px 38px,
      transparent 40px 62px
    ),
    linear-gradient(
      105deg,
      transparent 35%,
      rgba(145, 255, 68, 0.18),
      transparent 66%
    );
}

[data-hood-id="snek"] {
  --hood-accent: #8effb8;
  --hood-accent-soft: rgba(142, 255, 184, 0.3);
}

[data-hood-id="snek"] .hood-aura,
[data-hood-id="snek"] .wearer-aura {
  background:
    radial-gradient(
      ellipse at 19% 66%,
      transparent 0 25%,
      rgba(142, 255, 184, 0.46) 26% 27%,
      transparent 28%
    ),
    radial-gradient(
      ellipse at 81% 31%,
      transparent 0 28%,
      rgba(82, 237, 255, 0.36) 29% 30%,
      transparent 31%
    ),
    radial-gradient(circle at 52% 48%, rgba(68, 255, 131, 0.2), transparent 50%);
}

@keyframes hood-scan {
  0% {
    background-position: 0 -120%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    background-position: 0 145%;
    opacity: 0;
  }
}

.hood-sweep {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink-dark);
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.04em;
  transition: transform 950ms cubic-bezier(0.75, 0, 0.18, 1) 260ms;
}

.spread-card.is-visible .hood-sweep {
  transform: translateY(-102%);
}

.spread-card-copy {
  position: relative;
  min-height: 220px;
  padding: 30px 32px 34px;
}

.spread-card-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.spread-card-copy h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 4.3vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.spread-card-copy p {
  position: absolute;
  right: 28px;
  bottom: 28px;
  margin: 0;
  padding: 8px 11px;
  background: var(--acid);
  color: var(--ink-dark);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.vote {
  padding: 170px 0;
  background: var(--paper);
  color: var(--ink-dark);
}

.vote-wrap {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 105px);
  align-items: stretch;
}

.vote .section-tag {
  color: #398c17;
}

.vote-controls h2 {
  margin-bottom: 23px;
  color: var(--ink-dark);
}

.vote-intro {
  max-width: 420px;
  margin-bottom: 42px;
  color: #556154;
  line-height: 1.68;
}

.wearer-buttons {
  border-top: 2px solid var(--ink-dark);
}

.wearer-button {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 15px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 16, 7, 0.26);
  border-radius: 0;
  background: transparent;
  color: var(--ink-dark);
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    padding 160ms ease;
}

.wearer-button:hover,
.wearer-button.is-active {
  padding-left: 14px;
  background: var(--acid);
}

.wearer-button span {
  color: #526050;
  font-size: 0.64rem;
  font-weight: 900;
}

.wearer-button strong {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wearer-button small {
  color: #526050;
  font-size: 0.69rem;
  font-weight: 750;
}

.wearer-stage {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 10px solid var(--ink-dark);
  background: radial-gradient(circle at 39% 36%, #1b2a1b, #030403 62%);
  color: var(--ink);
}

.wearer-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 28%;
  bottom: 3%;
  width: 48%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(145, 255, 68, 0.48),
    rgba(145, 255, 68, 0.06) 48%,
    transparent 70%
  );
  opacity: 0;
  filter: blur(9px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.wearer-stage::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 3;
  border: 1px solid rgba(145, 255, 68, 0.22);
  pointer-events: none;
}

.wearer-stage > picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 69%;
  height: 100%;
}

.wearer-stage > picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  transition: opacity 160ms ease;
}

.wearer-stage .wearer-aura {
  opacity: 0;
}

.wearer-stage.is-hood-checked .wearer-aura {
  animation: hood-aura-reveal 700ms ease both;
}

.wearer-stage .wearer-scanner {
  inset: 20px;
}

.wearer-stage.is-hood-checked .wearer-scanner {
  opacity: 1;
}

.stage-hood-status {
  top: 30px;
  left: 30px;
}

.stage-hood-stamp {
  top: 84px;
  right: 32px;
  bottom: auto;
  font-size: clamp(1.25rem, 2.7vw, 2.15rem);
}

.wearer-stage.is-hood-checked .stage-hood-status {
  opacity: 1;
  transform: translateY(0);
}

.wearer-stage.is-hood-checked .stage-hood-stamp {
  opacity: 1;
  transform: rotate(-5deg) scale(1);
}

.wearer-stage.is-switching > picture img {
  opacity: 0;
}

@keyframes hood-aura-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.92;
  }
}

.wearer-verdict {
  position: absolute;
  right: 36px;
  bottom: 38px;
  z-index: 5;
  width: min(46%, 330px);
  padding: 22px;
  border-left: 4px solid var(--acid);
  background: rgba(3, 5, 3, 0.86);
  backdrop-filter: blur(15px);
}

.wearer-verdict span {
  display: block;
  margin-bottom: 10px;
  color: var(--acid);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.wearer-verdict h3 {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.1vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.wearer-verdict p {
  margin: 0;
  color: #bbc7bb;
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.stage-mark {
  position: absolute;
  top: 26px;
  right: 29px;
  z-index: 4;
  color: rgba(145, 255, 68, 0.12);
  font-family: var(--display);
  font-size: 8rem;
  line-height: 1;
}

.hoodening-reveal {
  position: relative;
  min-height: min(900px, 70vw);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #020302;
}

.hoodening-reveal > picture {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hoodening-reveal > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hoodening-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.92), transparent 60%),
    linear-gradient(
      180deg,
      rgba(2, 3, 2, 0.12),
      transparent 42%,
      rgba(2, 3, 2, 0.9)
    );
}

.hoodening-copy {
  padding-bottom: 70px;
}

.hoodening-copy h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 9.6rem);
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hoodening-copy strong {
  display: inline-block;
  padding: 12px 16px;
  background: var(--acid);
  color: var(--ink-dark);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.second-fitting {
  overflow: hidden;
  background: var(--acid);
  color: var(--ink-dark);
}

.second-fitting-opening {
  position: relative;
  padding: 150px 0 135px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 16, 7, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 7, 0.1) 1px, transparent 1px),
    var(--acid);
  background-size: 42px 42px;
}

.second-fitting-opening::after {
  content: "02";
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(7, 16, 7, 0.075);
  font-family: var(--display);
  font-size: clamp(22rem, 48vw, 48rem);
  letter-spacing: -0.08em;
  line-height: 0.72;
  pointer-events: none;
}

.second-fitting-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.second-fitting .section-tag {
  color: #214d12;
}

.second-fitting-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.3rem, 10.6vw, 11.5rem);
  letter-spacing: -0.06em;
  line-height: 0.78;
  text-transform: uppercase;
}

.second-fitting-intro h2 em {
  color: var(--ink-dark);
  -webkit-text-stroke: 2px var(--ink-dark);
  -webkit-text-fill-color: transparent;
}

.second-fitting-lede {
  max-width: 455px;
  margin: 0 0 5px;
  padding-top: 24px;
  border-top: 2px solid var(--ink-dark);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.7;
}

.second-fitting-lede strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hood-check-instruction {
  display: block;
  margin-top: 24px;
  padding: 13px 15px;
  border: 1px solid rgba(7, 16, 7, 0.55);
  background: rgba(7, 16, 7, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hood-check-instruction b {
  margin-right: 9px;
  padding: 4px 6px;
  background: var(--ink-dark);
  color: var(--acid);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.second-fitting-marquee {
  border-color: var(--acid-dark);
  background: var(--ink-dark);
  color: var(--acid);
}

.newcomer-field {
  padding: 120px 0 175px;
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(145, 255, 68, 0.09),
      transparent 30%
    ),
    var(--bg);
  color: var(--ink);
}

.newcomer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.newcomer-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: default;
  isolation: isolate;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.newcomer-card:nth-child(even) {
  margin-top: 92px;
}

.newcomer-card:hover,
.newcomer-card:focus-visible {
  border-color: var(--line-strong);
}

.js .newcomer-card.is-visible:hover,
.js .newcomer-card.is-visible:focus-visible {
  transform: translateY(0);
}

.newcomer-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 60%, rgba(2, 3, 2, 0.72)),
    radial-gradient(circle at 50% 37%, #162516, #020302 65%);
}

.newcomer-visual::before,
.newcomer-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.newcomer-visual::before {
  inset: -35% -20%;
  z-index: 2;
  background: linear-gradient(
    102deg,
    transparent 38%,
    rgba(145, 255, 68, 0.24) 49%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 62%
  );
  opacity: 0;
  mix-blend-mode: screen;
  transform: translateX(-65%);
}

.newcomer-visual::after {
  z-index: 2;
  right: 14%;
  bottom: 3%;
  left: 14%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(145, 255, 68, 0.58),
    rgba(145, 255, 68, 0.07) 48%,
    transparent 70%
  );
  opacity: 0;
  filter: blur(8px);
  mix-blend-mode: screen;
  transform: scaleX(0.42);
}

.newcomer-visual picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.newcomer-visual picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.newcomer-number {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 3;
  color: rgba(145, 255, 68, 0.17);
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 9.4rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
  transition: color 220ms ease;
}

.fit-status {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 10px 13px;
  background: var(--acid);
  color: var(--ink-dark);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  transition: transform 220ms ease;
}

.newcomer-copy {
  min-height: 285px;
  padding: 32px 32px 38px;
  border-top: 1px solid var(--line);
}

.newcomer-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newcomer-id small {
  color: var(--muted);
  font-size: inherit;
}

.newcomer-copy h3 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2.85rem, 4.55vw, 5.15rem);
  letter-spacing: -0.042em;
  line-height: 0.88;
  text-transform: uppercase;
}

.newcomer-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.second-fitting-outro {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(220px, 0.5fr) 1fr;
  align-items: center;
  margin-top: 190px;
  border: 1px solid var(--line-strong);
  background: rgba(145, 255, 68, 0.035);
}

.second-fitting-outro > p {
  margin: 0;
  padding: 35px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.second-fitting-outro > strong {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 250px;
  border-inline: 1px solid var(--line-strong);
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(9rem, 17vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.second-fitting-outro > div {
  padding: 42px;
}

.second-fitting-outro span {
  display: block;
  margin-bottom: 14px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.second-fitting-outro h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-transform: uppercase;
}

.second-fitting-outro small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.rules {
  padding-top: 155px;
  padding-bottom: 175px;
}

.rules-heading {
  max-width: 720px;
  margin-bottom: 75px;
}

.rule-list {
  border-top: 1px solid var(--line);
}

.rule-list article {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition:
    color 220ms ease,
    padding 220ms ease;
}

.rule-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--acid);
  transform: translateX(-102%);
  transition: transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rule-list article:hover {
  padding-inline: 26px;
  color: var(--ink-dark);
}

.rule-list article:hover::before {
  transform: translateX(0);
}

.rule-list span {
  color: var(--acid);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.rule-list article:hover span {
  color: var(--ink-dark);
}

.rule-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.4vw, 6.2rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.rule-list small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rule-list article:hover small {
  color: rgba(7, 16, 7, 0.68);
}

.facts {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(55px, 8vw, 120px);
  padding-top: 145px;
  padding-bottom: 150px;
  border-top: 1px solid var(--line);
}

.facts-heading h2 {
  font-size: clamp(3.4rem, 5.4vw, 6.2rem);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact-grid article {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(145, 255, 68, 0.035),
    transparent 55%
  );
}

.fact-grid article > span {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--acid);
  font-size: 0.64rem;
  font-weight: 900;
}

.fact-grid small {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-grid strong {
  margin-bottom: 10px;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.fact-grid p {
  margin-bottom: 0;
  color: #aeb9af;
  font-size: 0.82rem;
  line-height: 1.5;
}

.contract {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 34px;
  margin-bottom: 160px;
  padding: 38px 40px;
  background: var(--acid);
  color: var(--ink-dark);
}

.contract::before {
  content: "OFFICIAL";
  position: absolute;
  top: -15px;
  right: 30px;
  padding: 7px 11px;
  background: var(--ink);
  color: var(--ink-dark);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  transform: rotate(1deg);
}

.contract .section-tag {
  margin-bottom: 9px;
  color: var(--ink-dark);
}

.contract-heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.contract code {
  min-width: 0;
  color: var(--ink-dark);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: clamp(0.68rem, 1vw, 0.86rem);
  font-weight: 800;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contract-actions {
  display: flex;
  gap: 8px;
}

.copy-button,
.contract-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--ink-dark);
  border-radius: 0;
  background: var(--ink-dark);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.contract-actions a {
  background: transparent;
  color: var(--ink-dark);
}

.copy-button:hover,
.contract-actions a:hover {
  background: var(--ink);
  color: var(--ink-dark);
}

.copy-status {
  position: absolute;
  right: 40px;
  bottom: 10px;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
}

.trade {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(58px, 8vw, 120px);
  align-items: center;
  padding-top: 20px;
  padding-bottom: 175px;
}

.trade-copy h2 {
  font-size: clamp(3.8rem, 6vw, 6.8rem);
}

.trade-copy > p:not(.section-tag) {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--muted);
  line-height: 1.72;
}

.trade-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trade-facts div {
  padding: 18px 14px 18px 0;
}

.trade-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.trade-facts span,
.trade-facts strong {
  display: block;
}

.trade-facts span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trade-facts strong {
  font-size: 0.78rem;
  line-height: 1.4;
}

.trade-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 43%, #1d321a, #070907 62%);
}

.trade-visual::after {
  content: "$HOODIE";
  position: absolute;
  left: -0.03em;
  bottom: -0.16em;
  color: rgba(145, 255, 68, 0.08);
  font-family: var(--display);
  font-size: clamp(6rem, 11vw, 9rem);
  letter-spacing: -0.05em;
}

.trade-visual > img {
  position: relative;
  z-index: 4;
  width: min(76%, 470px);
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 30px rgba(145, 255, 68, 0.16));
  animation: float 5.2s ease-in-out infinite;
}

.trade-ring {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(145, 255, 68, 0.22);
  border-radius: 50%;
}

.trade-ring-one {
  width: 420px;
  height: 420px;
}

.trade-ring-two {
  width: 570px;
  height: 570px;
  border-color: rgba(145, 255, 68, 0.09);
}

.trade-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  padding: 9px 11px;
  background: var(--acid);
  color: var(--ink-dark);
  font-size: 0.61rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.trade-visual > strong {
  position: absolute;
  right: 25px;
  bottom: 23px;
  z-index: 5;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.proof {
  padding-top: 150px;
  padding-bottom: 180px;
  border-top: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-grid a {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.proof-grid a:hover {
  background: var(--acid);
  color: var(--ink-dark);
}

.proof-grid span {
  position: absolute;
  top: 28px;
  left: 30px;
  color: var(--acid);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-grid a:hover span {
  color: var(--ink-dark);
}

.proof-grid strong {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.proof-grid small {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.5;
}

.proof-grid a:hover small {
  color: rgba(7, 16, 7, 0.68);
}

.proof-grid i {
  position: absolute;
  top: 25px;
  right: 27px;
  color: var(--muted);
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.proof-grid a:hover i {
  color: var(--ink-dark);
  transform: translate(3px, -3px);
}

.final-cta {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink-dark);
}

.final-cta::before {
  content: "THE HOODENING";
  position: absolute;
  left: 50%;
  bottom: -0.24em;
  width: max-content;
  color: rgba(7, 16, 7, 0.08);
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 19rem);
  letter-spacing: -0.055em;
  line-height: 1;
  transform: translateX(-50%);
}

.final-cta .wrap {
  position: relative;
  z-index: 4;
}

.final-cta .section-tag {
  color: var(--ink-dark);
}

.final-cta h2 {
  max-width: 1050px;
  margin-bottom: 25px;
  font-size: clamp(4.4rem, 8vw, 9.2rem);
}

.final-cta h2 em {
  color: var(--ink);
}

.final-cta .wrap > p:not(.section-tag) {
  margin-bottom: 30px;
  font-size: 1.08rem;
  font-weight: 750;
}

.final-bill,
.final-coin {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.final-bill {
  top: 11%;
  right: -1%;
  width: min(25vw, 350px);
  transform: rotate(12deg);
  animation: bill-drift 6s ease-in-out infinite;
}

.final-coin {
  right: 15%;
  bottom: 5%;
  width: min(14vw, 185px);
  animation: coin-drift 5s ease-in-out infinite;
}

.footer {
  padding-top: 65px;
  padding-bottom: 54px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-top > div {
  display: flex;
  gap: 25px;
}

.footer-top > div a {
  color: #c4cec4;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-top > div a:hover {
  color: var(--acid);
}

.footer > p {
  max-width: 830px;
  margin: 28px 0 22px;
  color: #778378;
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer > small {
  color: #69746a;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Clean pointer spotlight: still portraits, light only. */
[data-spotlight] {
  --spot-x: 50%;
  --spot-y: 38%;
  position: relative;
  cursor: default;
  isolation: isolate;
  transition:
    border-color 260ms ease,
    box-shadow 320ms ease;
}

[data-spotlight] picture img {
  animation: none !important;
  transform: none !important;
  transition: filter 320ms ease;
}

[data-spotlight] .hood-aura,
[data-spotlight] .wearer-aura {
  background: radial-gradient(
    circle 240px at var(--spot-x) var(--spot-y),
    var(--hood-accent-soft) 0,
    transparent 72%
  );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 320ms ease;
}

[data-spotlight]:hover {
  border-color: var(--hood-accent);
  box-shadow:
    inset 0 0 42px var(--hood-accent-soft),
    0 0 28px var(--hood-accent-soft);
}

[data-spotlight]:hover picture img {
  filter: brightness(1.08) saturate(1.12) contrast(1.02);
}

[data-spotlight]:hover .hood-aura,
[data-spotlight]:hover .wearer-aura {
  opacity: 1;
}

@media (hover: none) {
  [data-spotlight] .hood-aura,
  [data-spotlight] .wearer-aura {
    background: radial-gradient(
      circle 170px at 50% 38%,
      var(--hood-accent-soft) 0,
      transparent 74%
    );
    opacity: 0.24;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.48;
  }
}

@keyframes campaign-in {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes bill-drift {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(-13px) rotate(9deg);
  }
}

@keyframes coin-drift {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-17px) rotate(2deg);
  }
}

@media (max-width: 1160px) {
  .site-header {
    gap: 18px;
  }

  .nav-links {
    gap: 17px;
  }

  .nav-links a {
    font-size: 0.67rem;
  }

  .hero-copy {
    width: min(650px, 63%);
  }

  .hero h1 {
    font-size: clamp(4rem, 7.1vw, 6.7rem);
  }

  .campaign-label {
    right: 0;
  }

  .vote-wrap {
    grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
    gap: 48px;
  }

  .wearer-stage {
    min-height: 690px;
  }

  .contract {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .contract-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .trade {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
    gap: 60px;
  }
}

@media (max-width: 940px) {
  :root {
    --wrap: min(100% - 38px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-campaign {
    object-position: 59% center;
  }

  .hero-wash {
    background:
      linear-gradient(
        90deg,
        rgba(2, 3, 2, 0.96) 0%,
        rgba(2, 3, 2, 0.84) 34%,
        rgba(2, 3, 2, 0.24) 76%
      ),
      linear-gradient(
        180deg,
        rgba(2, 3, 2, 0.5),
        transparent 35%,
        rgba(2, 3, 2, 0.84)
      );
  }

  .hero-copy {
    width: min(640px, 82%);
  }

  .campaign-label,
  .hero-seam {
    display: none;
  }

  .patient-zero,
  .facts,
  .trade {
    grid-template-columns: 1fr;
  }

  .patient-art {
    min-height: 680px;
  }

  .patient-copy {
    max-width: 680px;
  }

  .vote-wrap {
    grid-template-columns: 1fr;
  }

  .wearer-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid rgba(7, 16, 7, 0.26);
  }

  .wearer-button {
    border-right: 1px solid rgba(7, 16, 7, 0.26);
  }

  .wearer-stage {
    min-height: 760px;
  }

  .hoodening-reveal {
    min-height: 760px;
  }

  .hoodening-reveal > picture img {
    object-position: 61% center;
  }

  .second-fitting-intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .second-fitting-lede {
    max-width: 620px;
  }

  .second-fitting-outro {
    grid-template-columns: minmax(130px, 0.32fr) minmax(200px, 0.42fr) 1fr;
  }

  .second-fitting-outro > div {
    padding: 32px;
  }

  .facts-heading {
    max-width: 650px;
  }

  .contract {
    margin-bottom: 130px;
  }

  .trade {
    padding-top: 0;
  }

  .trade-copy {
    order: 1;
  }

  .trade-visual {
    order: 2;
    min-height: 650px;
  }

  .final-cta {
    min-height: 680px;
  }
}

@media (max-width: 700px) {
  :root {
    --wrap: calc(100% - 30px);
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 8px 8px 13px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .brand-word {
    font-size: 0.94rem;
  }

  .brand-status {
    display: none;
  }

  .nav-trade {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.61rem;
  }

  .hero {
    min-height: 1040px;
  }

  .hero-campaign {
    top: 68px;
    bottom: auto;
    height: 54%;
    object-position: 68% top;
  }

  .hero-wash {
    background:
      linear-gradient(
        180deg,
        rgba(2, 3, 2, 0.08) 8%,
        transparent 30%,
        rgba(2, 3, 2, 0.88) 52%,
        #020302 63%
      ),
      linear-gradient(90deg, rgba(2, 3, 2, 0.54), transparent 70%);
  }

  .hero-inner {
    min-height: 1040px;
    align-items: flex-end;
    padding-top: 470px;
    padding-bottom: 72px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 17px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.35rem, 16vw, 5rem);
    line-height: 0.85;
  }

  .hero h1 span:nth-child(2) {
    white-space: normal;
  }

  .hero h1 .acid {
    font-size: 0.64em;
  }

  .hero-lede {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .actions {
    width: 100%;
  }

  .button {
    flex: 1 1 auto;
    min-height: 50px;
    padding-inline: 15px;
    font-size: 0.67rem;
  }

  .hero-signature {
    margin-top: 25px;
  }

  .hero-signature img:first-child {
    width: 66px;
  }

  .scroll-cue {
    display: none;
  }

  .marquee div {
    padding: 13px 0;
    font-size: 0.9rem;
  }

  .patient-zero,
  .spread,
  .vote,
  .second-fitting-opening,
  .rules,
  .facts,
  .proof {
    padding-top: 105px;
    padding-bottom: 115px;
  }

  .patient-zero {
    gap: 60px;
  }

  .patient-art {
    min-height: 560px;
  }

  .patient-art::before {
    inset: 15px;
  }

  .patient-art img {
    width: 88%;
    max-height: 515px;
  }

  .patient-art figcaption {
    display: none;
  }

  .garment-tag {
    top: 24px;
    font-size: 0.58rem;
  }

  .section-intro,
  .rules-heading {
    margin-bottom: 48px;
  }

  .section-intro h2,
  .patient-copy h2,
  .vote-controls h2,
  .rules-heading h2,
  .facts-heading h2,
  .trade-copy h2,
  .final-cta h2 {
    font-size: clamp(3.15rem, 14vw, 5.15rem);
  }

  .patient-note {
    grid-template-columns: 60px 1fr;
  }

  .spread-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spread-card:nth-child(2),
  .spread-card:nth-child(4),
  .js .spread-card:nth-child(2)[data-reveal],
  .js .spread-card:nth-child(4)[data-reveal],
  .js .spread-card:nth-child(2).is-visible,
  .js .spread-card:nth-child(4).is-visible {
    transform: none;
  }

  .spread-card-media {
    aspect-ratio: 3 / 4;
  }

  .spread-card-copy {
    min-height: 190px;
    padding: 25px 24px 28px;
  }

  .spread-card-copy h3 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .spread-card-copy p {
    right: 20px;
    bottom: 20px;
  }

  .vote-wrap {
    gap: 50px;
  }

  .wearer-buttons {
    grid-template-columns: 1fr;
  }

  .wearer-button {
    min-height: 67px;
  }

  .wearer-stage {
    min-height: 650px;
    border-width: 7px;
  }

  .wearer-stage > picture {
    width: 100%;
    height: 78%;
  }

  .wearer-stage > picture img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
  }

  .stage-hood-status {
    top: 19px;
    left: 19px;
  }

  .stage-hood-stamp {
    top: 67px;
    right: 20px;
  }

  .wearer-verdict {
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    padding: 18px;
  }

  .stage-mark {
    font-size: 5rem;
  }

  .hoodening-reveal {
    min-height: 720px;
  }

  .hoodening-reveal > picture img {
    object-position: 66% center;
  }

  .hoodening-shade {
    background:
      linear-gradient(
        180deg,
        rgba(2, 3, 2, 0.18),
        transparent 34%,
        rgba(2, 3, 2, 0.96) 82%
      ),
      linear-gradient(90deg, rgba(2, 3, 2, 0.5), transparent 80%);
  }

  .hoodening-copy {
    padding-bottom: 45px;
  }

  .hoodening-copy h2 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }

  .second-fitting-opening {
    padding-bottom: 100px;
  }

  .second-fitting-opening::after {
    right: -0.14em;
    bottom: -0.13em;
    font-size: 25rem;
  }

  .second-fitting-intro {
    gap: 38px;
  }

  .second-fitting-intro h2 {
    font-size: clamp(4.2rem, 19vw, 6.6rem);
  }

  .second-fitting-intro h2 em {
    -webkit-text-stroke-width: 1px;
  }

  .second-fitting-lede {
    font-size: 0.94rem;
  }

  .newcomer-field {
    padding: 85px 0 110px;
  }

  .newcomer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .newcomer-card:nth-child(even) {
    margin-top: 0;
  }

  .newcomer-visual {
    aspect-ratio: 4 / 5;
  }

  .newcomer-number {
    top: 18px;
    right: 19px;
  }

  .hood-status {
    top: 18px;
    left: 18px;
  }

  .hood-stamp {
    right: 18px;
    bottom: 20px;
  }

  .fit-status {
    left: 18px;
    bottom: 18px;
  }

  .newcomer-copy {
    min-height: 0;
    padding: 27px 23px 31px;
  }

  .newcomer-id {
    margin-bottom: 22px;
  }

  .newcomer-copy h3 {
    font-size: clamp(2.8rem, 13.5vw, 4.4rem);
  }

  .second-fitting-outro {
    grid-template-columns: 1fr;
    margin-top: 95px;
  }

  .second-fitting-outro > p {
    padding: 24px;
    border-bottom: 1px solid var(--line-strong);
  }

  .second-fitting-outro > strong {
    min-height: 205px;
    border-inline: 0;
    border-bottom: 1px solid var(--line-strong);
    font-size: 12rem;
  }

  .second-fitting-outro > div {
    padding: 30px 24px 34px;
  }

  .second-fitting-outro h3 {
    font-size: clamp(3.4rem, 16vw, 5.3rem);
  }

  .rule-list article {
    grid-template-columns: 45px 1fr;
    min-height: 120px;
    gap: 12px;
  }

  .rule-list article:hover {
    padding-inline: 12px;
  }

  .rule-list h3 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .rule-list small {
    display: none;
  }

  .facts {
    gap: 50px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid article {
    min-height: 205px;
  }

  .contract {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 105px;
    padding: 34px 24px 48px;
  }

  .contract-actions {
    grid-column: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .contract-actions > * {
    flex: 1 1 140px;
  }

  .copy-status {
    right: 24px;
    bottom: 12px;
    left: 24px;
  }

  .trade {
    gap: 55px;
    padding-bottom: 115px;
  }

  .trade-facts {
    grid-template-columns: 1fr;
  }

  .trade-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trade-visual {
    min-height: 540px;
  }

  .trade-ring-one {
    width: 310px;
    height: 310px;
  }

  .trade-ring-two {
    width: 430px;
    height: 430px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid a {
    min-height: 205px;
    padding: 25px;
  }

  .proof-grid span {
    top: 24px;
    left: 25px;
  }

  .final-cta {
    min-height: 690px;
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: clamp(3.5rem, 15vw, 5.6rem);
  }

  .final-bill {
    top: 4%;
    right: -9%;
    width: 42vw;
    opacity: 0.56;
  }

  .final-coin {
    right: 3%;
    bottom: 3%;
    width: 25vw;
    opacity: 0.6;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .nav-trade {
    gap: 7px;
    padding-inline: 9px;
    font-size: 0.56rem;
  }

  .hero {
    min-height: 1080px;
  }

  .hero-inner {
    min-height: 1080px;
  }

  .wearer-button small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hood-sweep {
    display: none;
  }
}

/* Meme Rush arcade */
.meme-rush {
  position: relative;
  overflow: hidden;
  padding: 130px 0 150px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(145, 255, 68, 0.12), transparent 28%),
    linear-gradient(rgba(145, 255, 68, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 255, 68, 0.025) 1px, transparent 1px),
    #030503;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.meme-rush::before {
  content: "PLAY";
  position: absolute;
  top: 50px;
  right: -0.03em;
  color: rgba(145, 255, 68, 0.035);
  font-family: var(--display);
  font-size: clamp(12rem, 30vw, 34rem);
  line-height: 0.75;
  pointer-events: none;
}

.game-shell {
  position: relative;
  z-index: 1;
}

.game-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 60px;
}

.game-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9.5vw, 9.2rem);
  line-height: 0.76;
  letter-spacing: -0.045em;
}

.game-heading h2 em {
  color: var(--acid);
  font-style: normal;
}

.game-heading > p {
  max-width: 510px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  align-items: start;
  gap: 22px;
}

.game-machine,
.season-card,
.personal-card,
.game-rules {
  border: 1px solid var(--line);
  background: rgba(7, 10, 7, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.game-machine {
  min-width: 0;
}

html.game-viewport-locked,
body.game-viewport-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.game-viewport-locked {
  touch-action: none;
}

.game-layout.is-playing::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(2, 4, 2, 0.94);
  backdrop-filter: blur(10px);
}

.game-layout.is-playing .game-machine {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(900px, calc(100vw - 20px));
  height: min(920px, calc(100dvh - 16px));
  margin: 0;
  transform: translate(-50%, -50%);
}

.game-layout.is-playing .game-stage,
.game-layout.is-playing .game-canvas {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
}

.game-hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.game-hud > div {
  min-width: 0;
  padding: 15px 18px 13px;
}

.game-hud > div + div {
  border-left: 1px solid var(--line);
}

.game-hud span,
.season-title span,
.personal-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.game-hud strong {
  display: block;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
}

.game-stage {
  position: relative;
  min-height: 630px;
  max-height: 760px;
  overflow: hidden;
  background: #020402;
  isolation: isolate;
}

.game-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.085) 50%);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
}

.game-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 630px;
  max-height: 760px;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.game-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(22px, 4vw, 52px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(145, 255, 68, 0.16), transparent 34%),
    rgba(2, 4, 2, 0.88);
  backdrop-filter: blur(9px);
}

.game-overlay[hidden],
.game-pause[hidden] {
  display: none;
}

.game-overline {
  margin: 0 0 10px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.23em;
}

.game-overlay h3 {
  margin: 0 0 clamp(24px, 5vh, 44px);
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.82;
  letter-spacing: -0.035em;
}

.game-team-picker {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: clamp(22px, 4vh, 38px);
}

.game-team {
  position: relative;
  min-width: 0;
  min-height: 145px;
  overflow: hidden;
  padding: 72px 8px 13px;
  border: 1px solid rgba(235, 255, 228, 0.22);
  background: #090d09;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.game-team:hover,
.game-team.is-selected {
  border-color: var(--acid);
  background: #111b0d;
  transform: translateY(-4px);
}

.game-team.is-selected::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink-dark);
  font-weight: 950;
}

.game-team img {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 100px;
  height: 108px;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
  filter: saturate(0.7) contrast(1.08);
}

.game-team.is-selected img {
  filter: saturate(1.1) contrast(1.05) drop-shadow(0 0 15px rgba(145, 255, 68, 0.22));
}

.game-team span,
.game-team strong,
.game-team small {
  position: relative;
  z-index: 1;
  display: block;
}

.game-team span {
  color: var(--muted);
  font-size: 0.51rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.game-team strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.game-team small {
  margin-top: 3px;
  color: var(--acid-soft);
  font-size: 0.58rem;
}

.game-start,
.game-share,
.game-follow {
  min-height: 50px;
  border: 1px solid var(--acid);
  padding: 12px 22px;
  background: var(--acid);
  color: var(--ink-dark);
  font-weight: 950;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.game-start:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.game-instructions {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.game-result-score span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.game-result-score strong {
  display: block;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
}

.game-result > p:not(.game-overline) {
  margin: 8px 0 25px;
  color: var(--muted);
}

.game-result-actions {
  display: flex;
  gap: 9px;
}

.game-share {
  background: transparent;
  color: var(--acid);
}

.game-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--acid);
  text-decoration: none;
}

.game-share:hover,
.game-follow:hover {
  background: rgba(145, 255, 68, 0.1);
  transform: translateY(-2px);
}

.game-pause {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 5, 0.7);
  color: var(--ink);
  cursor: pointer;
}

.game-announcer {
  position: absolute;
  top: 16%;
  left: 50%;
  z-index: 7;
  margin: 0;
  color: var(--acid);
  font-family: var(--display);
  width: min(82%, 540px);
  font-size: clamp(1.15rem, 3.2vw, 2.4rem);
  line-height: 1;
  text-align: center;
  text-shadow: 0 4px 30px #000;
  transform: translateX(-50%);
  pointer-events: none;
}

.game-touch-controls {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}

.game-touch-controls button {
  min-height: 66px;
  border: 0;
  background: transparent;
  color: var(--acid);
  font-size: 1.8rem;
  font-weight: 900;
  touch-action: manipulation;
}

.game-touch-controls span {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.game-sidebar {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.season-card {
  padding: 25px;
}

.season-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.season-title strong {
  font-family: var(--display);
  font-size: 2rem;
}

.season-title small {
  padding: 5px 7px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.team-board {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-board li {
  display: grid;
  grid-template-columns: 25px 42px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.team-board li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.team-board .board-rank {
  color: var(--muted);
  font-family: var(--display);
}

.team-board img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.team-board b,
.team-board small {
  display: block;
}

.team-board b {
  font-family: var(--display);
  font-size: 1.15rem;
}

.team-board small {
  color: var(--muted);
  font-size: 0.55rem;
}

.team-board .board-score {
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.05rem;
}

.personal-card {
  padding: 24px;
  background: var(--acid);
  color: var(--ink-dark);
}

.personal-card span,
.personal-card small {
  color: rgba(7, 16, 7, 0.63);
}

.personal-card strong {
  display: block;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.92;
}

.personal-card small {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.game-rules {
  padding: 11px 24px;
}

.game-rules p {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 10px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.game-rules p:last-child {
  border-bottom: 0;
}

.game-rules b {
  color: var(--acid);
  font-family: var(--display);
}

@media (max-width: 1040px) {
  .game-layout {
    grid-template-columns: 1fr;
  }

  .game-sidebar {
    position: static;
    grid-template-columns: 1.35fr 0.65fr;
  }

  .game-rules {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .meme-rush {
    padding: 95px 0 105px;
  }

  .game-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
  }

  .game-heading h2 {
    font-size: clamp(4rem, 19vw, 6.8rem);
  }

  .game-hud > div {
    padding: 11px 9px 10px;
  }

  .game-hud span {
    font-size: 0.48rem;
  }

  .game-hud strong {
    font-size: clamp(0.88rem, 4vw, 1.2rem);
  }

  .game-stage,
  .game-canvas {
    min-height: 590px;
    max-height: 70vh;
  }

  .game-overlay {
    justify-content: flex-start;
    overflow-y: auto;
    padding: 38px 16px 24px;
  }

  .game-overlay h3 {
    margin-bottom: 25px;
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .game-team-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-team {
    min-height: 132px;
    padding-top: 70px;
  }

  .game-team img {
    top: -12px;
    width: 90px;
    height: 96px;
  }

  .game-team small {
    display: none;
  }

  .game-touch-controls {
    display: grid;
  }

  .game-sidebar {
    grid-template-columns: 1fr;
  }

  .game-rules {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .game-stage,
  .game-canvas {
    min-height: 560px;
  }

  .game-team {
    min-height: 124px;
  }

  .game-result-actions {
    width: 100%;
    flex-direction: column;
  }

}

/* Separated character stage and condensed origin timeline */
.spread-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(145, 255, 68, 0.04), transparent 36%),
    var(--panel);
}

.spread-timeline article {
  min-height: 260px;
  padding: clamp(24px, 3.2vw, 42px);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 180ms ease, transform 180ms ease;
}

.spread-timeline article + article {
  border-left: 1px solid var(--line);
}

.spread-timeline article:hover {
  background: rgba(145, 255, 68, 0.055);
  transform: translateY(-5px);
}

.spread-timeline span {
  margin-bottom: auto;
  color: var(--acid);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.spread-timeline strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  line-height: 0.92;
}

.spread-timeline p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.wearer-stage,
.newcomer-visual {
  background-color: #040604;
  background-image:
    linear-gradient(180deg, rgba(2, 3, 2, 0.03), rgba(2, 3, 2, 0.55)),
    url("assets/hoodening/runway-background-v2.png");
  background-position: center;
  background-size: cover;
}

.wearer-stage > picture,
.newcomer-visual picture {
  z-index: 2;
}

.wearer-stage .wearer-aura,
.newcomer-visual .hood-aura {
  z-index: 1;
}

.newcomer-visual::before,
.newcomer-visual::after {
  display: none;
}

[data-spotlight] .hood-aura,
[data-spotlight] .wearer-aura {
  z-index: 1;
  background: radial-gradient(
    circle clamp(150px, 23vw, 330px) at var(--spot-x) var(--spot-y),
    rgba(145, 255, 68, 0.82) 0,
    rgba(145, 255, 68, 0.42) 24%,
    rgba(145, 255, 68, 0.11) 48%,
    transparent 72%
  );
  filter: blur(7px);
  mix-blend-mode: screen;
}

.wearer-stage > picture img,
.newcomer-visual picture img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.62));
}

[data-spotlight]:hover picture img {
  filter:
    brightness(1.07)
    saturate(1.1)
    contrast(1.02)
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.7));
}

.game-giveaway {
  max-width: 540px;
  margin: 0 0 24px !important;
  padding: 13px 16px;
  border: 1px solid rgba(145, 255, 68, 0.4);
  background: rgba(145, 255, 68, 0.08);
  color: var(--ink) !important;
  font-size: 0.7rem;
  line-height: 1.5;
}

.game-giveaway b,
.game-giveaway strong {
  color: var(--acid);
}

.coin-guide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  background: rgba(7, 10, 7, 0.92);
}

.coin-guide article {
  min-width: 0;
  padding: 14px 8px 12px;
  text-align: center;
}

.coin-guide article + article {
  border-left: 1px solid var(--line);
}

.coin-guide img {
  width: 58px;
  height: 58px;
  margin: 0 auto 7px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(145, 255, 68, 0.28));
}

.coin-guide .powerup-score {
  position: relative;
}

.coin-guide .powerup-score::after {
  content: "$H";
  position: absolute;
  top: 35px;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 950;
}

.coin-guide .powerup-score::after {
  color: var(--acid);
}

.coin-guide .powerup-score img {
  filter: saturate(1.25) drop-shadow(0 0 12px rgba(114, 231, 255, 0.5));
}

.coin-guide b,
.coin-guide small {
  display: block;
}

.coin-guide b {
  overflow: hidden;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
}

.coin-guide small {
  margin-top: 2px;
  color: var(--acid);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .spread-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .spread-timeline article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .spread-timeline article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .spread-timeline {
    grid-template-columns: 1fr;
  }

  .spread-timeline article {
    min-height: 190px;
  }

  .spread-timeline article + article,
  .spread-timeline article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .game-giveaway {
    font-size: 0.64rem;
  }
}

/* Keep the fitting-room stage identical while normalizing DOGE's wider crop. */
.wearer-stage {
  --hood-accent: #91ff44;
  --hood-accent-soft: rgba(145, 255, 68, 0.34);
}

.wearer-stage[data-hood-id="doge"] > picture {
  width: 58%;
}

@media (max-width: 720px) {
  .wearer-stage[data-hood-id="doge"] > picture {
    width: 64%;
  }
}
