:root {
  --ink: #0a0908;
  --paper: #f1eadc;
  --acid: #d8ff2e;
  --yellow: #f2a900;
  --orange: #ff5722;
  --purple: #6840c6;
  --pink: #ff4f9a;
  --line: 3px solid var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: var(--ink); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem 3vw;
  border-bottom: 2px solid rgba(241,234,220,.35);
  font-weight: 900;
  letter-spacing: -.03em;
}
.wordmark { display: flex; align-items: center; gap: .6rem; font-size: 1.1rem; }
.wordmark-dot { width: 15px; height: 15px; background: var(--yellow); border-radius: 50%; box-shadow: 12px 0 0 var(--purple); }
.site-header nav { display: flex; gap: 2rem; font-size: .72rem; letter-spacing: .08em; }
.site-header nav a:hover { color: var(--acid); }
.status-pill { justify-self: end; border: 1px solid rgba(241,234,220,.6); border-radius: 100px; padding: .55rem .85rem; font-size: .65rem; letter-spacing: .08em; }
.status-pill i { display: inline-block; width: 7px; height: 7px; margin-right: .45rem; background: var(--orange); border-radius: 50%; animation: pulse 1.6s infinite; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 2vw;
  padding: 8.5rem 4vw 5rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 42%, rgba(104,64,198,.48), transparent 29%),
    linear-gradient(135deg, #11100f 0 61%, #24143c 61% 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-noise { position: absolute; inset: 0; z-index: -1; opacity: .16; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-block; transform: rotate(-2deg); margin: 0 0 1.1rem .35rem; padding: .42rem .8rem; background: var(--acid); color: var(--ink); font: 900 .72rem/1 Arial, sans-serif; letter-spacing: .11em; box-shadow: 5px 5px 0 var(--purple); }
.hero h1 { margin: 0; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(4rem, 8.8vw, 9.7rem); line-height: .78; letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 em { color: var(--yellow); font-style: normal; -webkit-text-stroke: 2px var(--paper); text-shadow: 6px 6px 0 var(--purple); }
.scribble { position: relative; color: var(--acid); }
.scribble::after { content: ""; position: absolute; left: 1%; right: -2%; bottom: -.08em; height: .11em; transform: rotate(-1deg); background: var(--pink); }
.hero-deck { max-width: 590px; margin: 2rem 0 1.5rem; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.5; font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.button, .anti-button { display: inline-block; padding: .95rem 1.2rem; border: var(--line); font-size: .75rem; font-weight: 1000; letter-spacing: .06em; }
.button--primary { background: var(--pink); color: var(--ink); box-shadow: 5px 5px 0 var(--paper); transition: .2s ease; }
.button--primary:hover { transform: translate(4px,4px); box-shadow: 1px 1px 0 var(--paper); }
.anti-button { background: transparent; border-color: var(--paper); transform: rotate(2deg); }
.hero-art { position: relative; display: grid; place-items: center; min-width: 0; }
.logo-orbit { position: relative; width: min(96%, 720px); aspect-ratio: 1; border-radius: 50%; filter: drop-shadow(18px 24px 0 rgba(0,0,0,.34)); animation: float 5s ease-in-out infinite; }
.logo-orbit::before { content: ""; position: absolute; inset: 3%; z-index: -1; border: 3px dashed var(--acid); border-radius: 50%; transform: scale(1.09); animation: spin 28s linear infinite; }
.logo-orbit img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.sticker { position: absolute; z-index: 3; padding: .8rem 1rem; border: var(--line); color: var(--ink); font: 1000 .8rem/1.1 "Arial Black", Arial, sans-serif; text-align: center; box-shadow: 5px 5px 0 var(--ink); }
.sticker--top { top: 4%; right: -1%; transform: rotate(7deg); background: var(--acid); }
.sticker--bottom { bottom: 7%; left: -2%; transform: rotate(-7deg); background: var(--pink); }
.scroll-note { position: absolute; right: 2.3vw; bottom: 1.5rem; writing-mode: vertical-rl; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }

.marquee { overflow: hidden; background: var(--acid); color: var(--ink); border-block: var(--line); transform: rotate(-1deg) scale(1.02); }
.marquee-track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.marquee span { display: flex; align-items: center; gap: 1.8rem; padding: .9rem 1.7rem; font: 1000 1rem/1 "Arial Black", Arial, sans-serif; white-space: nowrap; }
.marquee b { color: var(--purple); }

.cooked-section { background: var(--paper); color: var(--ink); padding: 9rem 4vw 8rem; }
.section-heading { display: grid; grid-template-columns: 1.2fr 1fr; align-items: end; column-gap: 5vw; margin-bottom: 4.5rem; }
.kicker { margin: 0 0 1rem; font-size: .72rem !important; line-height: 1 !important; font-weight: 1000 !important; letter-spacing: .14em; text-transform: uppercase; }
.section-heading .kicker { grid-column: 1 / -1; }
.section-heading h2, .lore-intro h2, .community-copy h2, .fine-print h2 { margin: 0; font: 1000 clamp(4rem, 8vw, 8.5rem)/.8 Impact, "Arial Black", sans-serif; letter-spacing: -.045em; }
.section-heading h2 span { color: var(--purple); }
.section-heading > p:last-child { max-width: 560px; margin: 0 0 .5rem; font-size: clamp(1.2rem, 2vw, 2rem); line-height: 1.15; font-weight: 900; }
.race-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.race-card { min-height: 470px; display: flex; flex-direction: column; padding: 1.5rem; border: var(--line); box-shadow: 8px 8px 0 var(--ink); transition: transform .25s ease; }
.race-card:hover { transform: translateY(-9px) rotate(-1deg); }
.race-card--purple { background: var(--purple); color: var(--paper); transform: rotate(-1.5deg); }
.race-card--orange { background: var(--orange); transform: translateY(25px) rotate(1deg); }
.race-card--acid { background: var(--acid); transform: rotate(-.5deg); }
.card-topline { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 2px solid currentColor; font-size: .72rem; font-weight: 1000; letter-spacing: .1em; }
.card-topline b { font-size: 2.2rem; }
.race-card h3 { margin: 2rem 0 1rem; font: 1000 clamp(2rem, 3vw, 3.1rem)/.88 Impact, "Arial Black", sans-serif; letter-spacing: -.02em; }
.race-card p { margin: 0; font-size: 1rem; line-height: 1.45; font-weight: 700; }
.punchline { margin-top: auto; padding: .75rem; background: var(--ink); color: var(--paper); font: 900 .68rem/1.2 monospace; text-transform: uppercase; }

.quote-break { padding: 8rem 4vw; text-align: center; color: var(--ink); background: var(--yellow); border-block: var(--line); }
.quote-break p { margin: 0 0 1rem; font-size: .8rem; font-weight: 1000; letter-spacing: .14em; }
.quote-break h2 { margin: 0 auto; max-width: 1100px; font: 1000 clamp(4rem, 9vw, 9rem)/.82 Impact, "Arial Black", sans-serif; letter-spacing: -.04em; text-shadow: 5px 5px 0 var(--paper); }
.quote-break span { display: block; margin-top: 2rem; font: 900 .75rem/1 monospace; }

.lore-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6vw; padding: 9rem 4vw; background: var(--purple); }
.lore-intro { position: relative; align-self: start; }
.lore-intro h2 { color: var(--acid); }
.tape-note { display: inline-block; margin: 3rem 0 0 2rem; padding: 1rem 1.4rem; transform: rotate(-5deg); background: var(--paper); color: var(--ink); border: var(--line); box-shadow: 7px 7px 0 var(--ink); font: 1000 1rem/1.05 "Arial Black", Arial, sans-serif; }
.lore-list { border-top: 2px solid var(--paper); }
.lore-list article { display: grid; grid-template-columns: 65px 1fr auto; gap: 1.5rem; align-items: start; padding: 2rem .25rem; border-bottom: 2px solid var(--paper); }
.lore-list article > span { display: grid; place-items: center; width: 46px; height: 46px; background: var(--acid); color: var(--ink); border-radius: 50%; font-weight: 1000; }
.lore-list h3 { margin: 0 0 .6rem; font: 1000 clamp(1.8rem, 3.2vw, 3.5rem)/.9 Impact, "Arial Black", sans-serif; }
.lore-list p { max-width: 520px; margin: 0; font-weight: 700; line-height: 1.45; }
.lore-list article > b { font-size: 2.2rem; }

.community-section { display: grid; grid-template-columns: .56fr 1.44fr; min-height: 800px; background: var(--paper); color: var(--ink); }
.community-title { display: flex; flex-direction: column; justify-content: space-around; align-items: center; overflow: hidden; padding: 4rem 1rem; background: var(--ink); color: var(--paper); border-right: var(--line); }
.community-title span { width: max-content; font: 1000 clamp(2.8rem, 5vw, 5.5rem)/1 Impact, "Arial Black", sans-serif; transform: rotate(-90deg); color: var(--pink); -webkit-text-stroke: 1px var(--paper); }
.community-title span:nth-child(2) { color: var(--acid); }
.community-title span:nth-child(3) { color: var(--yellow); }
.community-copy { display: flex; flex-direction: column; justify-content: center; padding: 7rem 5vw; }
.community-copy h2 { font-size: clamp(4.2rem, 8vw, 9rem); }
.community-copy > p:not(.kicker) { max-width: 780px; margin: 2rem 0; font-size: clamp(1.1rem, 1.8vw, 1.6rem); line-height: 1.35; font-weight: 800; }
.three-nos { display: flex; flex-wrap: wrap; gap: .7rem; }
.three-nos span { padding: .65rem .8rem; border: 2px solid var(--ink); background: var(--acid); font-size: .68rem; font-weight: 1000; letter-spacing: .08em; }
.three-nos span:nth-child(2) { background: var(--pink); transform: rotate(2deg); }
.three-nos span:nth-child(3) { background: var(--yellow); transform: rotate(-1deg); }

.fine-print { display: grid; grid-template-columns: .7fr 1.3fr; gap: 6vw; align-items: center; padding: 8rem 6vw; background: var(--orange); color: var(--ink); border-top: var(--line); }
.warning-stamp { justify-self: center; padding: 2.3rem; border: 12px double var(--ink); border-radius: 50%; transform: rotate(-12deg); font: 1000 clamp(2.3rem, 5vw, 5rem)/.83 Impact, "Arial Black", sans-serif; text-align: center; }
.fine-print h2 { font-size: clamp(4.4rem, 8vw, 8rem); }
.fine-print > div:last-child > p:not(.kicker) { max-width: 800px; font-size: 1.05rem; line-height: 1.55; font-weight: 800; }

footer { background: var(--ink); color: var(--paper); padding: 5rem 4vw 2rem; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 4rem; }
.footer-mark { font: 1000 clamp(5rem, 13vw, 13rem)/.66 Impact, "Arial Black", sans-serif; letter-spacing: -.05em; color: var(--yellow); }
.footer-main p { margin: 2rem 0 0; font-size: .75rem; font-weight: 900; line-height: 1.45; letter-spacing: .08em; }
.footer-main > a { padding-bottom: .5rem; border-bottom: 2px solid var(--acid); font-size: .72rem; font-weight: 1000; letter-spacing: .08em; }
.telegram-warning { display: flex; gap: 1rem; padding: 1.2rem; border: 2px solid var(--pink); background: rgba(255,79,154,.1); font-size: .82rem; font-weight: 800; line-height: 1.4; }
.telegram-warning span { flex: 0 0 auto; color: var(--pink); font-weight: 1000; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
@keyframes spin { to { transform: scale(1.09) rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(1.5); box-shadow: 0 0 0 5px rgba(255,87,34,.15); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 8rem; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: clamp(4.4rem, 15vw, 8rem); }
  .hero-art { margin-top: 1rem; }
  .logo-orbit { width: min(82vw, 620px); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 2rem; }
  .race-grid { grid-template-columns: 1fr; }
  .race-card { min-height: 350px; transform: none; }
  .race-card--orange { transform: none; }
  .lore-section { grid-template-columns: 1fr; }
  .community-section { grid-template-columns: 1fr; }
  .community-title { flex-direction: row; gap: 2rem; padding: 1.5rem; border-right: 0; border-bottom: var(--line); }
  .community-title span { font-size: clamp(1.7rem, 4vw, 3rem); transform: rotate(0); }
  .fine-print { grid-template-columns: 1fr; }
  .warning-stamp { margin-bottom: 2rem; }
}

@media (max-width: 620px) {
  .site-header { padding: 1rem; }
  .status-pill { padding: .45rem .6rem; font-size: .52rem; }
  .hero { padding: 7rem 1rem 4rem; }
  .hero h1 { font-size: clamp(4rem, 21vw, 6.3rem); }
  .hero h1 em { -webkit-text-stroke-width: 1px; text-shadow: 3px 3px 0 var(--purple); }
  .hero-deck { font-size: .98rem; }
  .scroll-note { display: none; }
  .sticker { font-size: .59rem; padding: .55rem .65rem; }
  .cooked-section, .lore-section { padding: 6rem 1rem; }
  .section-heading h2, .lore-intro h2, .community-copy h2, .fine-print h2 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .section-heading > p:last-child { font-size: 1.15rem; }
  .race-card { min-height: 390px; }
  .quote-break { padding: 6rem 1rem; }
  .quote-break h2 { font-size: clamp(3.6rem, 17vw, 6rem); }
  .lore-list article { grid-template-columns: 48px 1fr; gap: 1rem; }
  .lore-list article > b { display: none; }
  .community-title { justify-content: flex-start; overflow-x: auto; }
  .community-title span { font-size: 1.25rem; }
  .community-copy { padding: 6rem 1rem; }
  .fine-print { padding: 6rem 1rem; }
  .warning-stamp { border-width: 8px; }
  footer { padding: 4rem 1rem 1.5rem; }
  .footer-main { display: block; }
  .footer-main > a { display: inline-block; margin-top: 3rem; }
  .telegram-warning { flex-direction: column; gap: .45rem; }
}

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