/* World of Champions — Power of the Void landing
   Compact void steel · logo lockup · Lenis + star grid */

:root {
  --void: #03060c;
  --void-2: #070d18;
  --panel: rgba(8, 18, 32, 0.62);
  --stroke: rgba(90, 170, 210, 0.22);
  --stroke-soft: rgba(90, 170, 210, 0.13);
  --stroke-hot: rgba(15, 207, 237, 0.55);
  --cyan: #0fcfed;
  --cyan-dim: #5eb8d4;
  --cyan-glow: rgba(15, 207, 237, 0.4);
  --amber: #e8a030;
  --text: #e8f2ff;
  --muted: #7ea8c2;
  --muted-2: #567b93;
  --danger: #ff5a5a;
  --ok: #6fdf8a;
  --font-display: "Oxanium", "Monda", sans-serif;
  --font-body: "Monda", system-ui, sans-serif;
  --radius: 0;
  --radius-sm: 0;
  --radius-card: 14px;
  --radius-card-sm: 10px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout rhythm: wide column for art/breakouts, narrow column for reading */
  --max: 1120px;
  --max-wide: 1340px;
  --max-read: 640px;
  --section-y: clamp(5rem, 10vw, 9rem);
  --section-gap: clamp(3.5rem, 7vw, 6rem);

  /* Type scale */
  --fs-hero: clamp(1.9rem, 3.1vw, 2.85rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.25rem);
  --fs-h3: clamp(1.3rem, 2.2vw, 1.65rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  background: var(--void);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.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;
}

/* ---------- Atmosphere ---------- */
.void-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1100px 520px at 72% -8%, rgba(15, 70, 110, 0.32), transparent 58%),
    radial-gradient(800px 480px at -8% 45%, rgba(18, 50, 80, 0.22), transparent 55%),
    linear-gradient(180deg, #040914 0%, var(--void) 42%, #02050a 100%);
}

.void-bg__stars {
  position: absolute;
  inset: -40px 0 0;
  opacity: 0.55;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, #fff, transparent),
    radial-gradient(1px 1px at 30% 70%, #cfefff, transparent),
    radial-gradient(1.5px 1.5px at 55% 35%, #fff, transparent),
    radial-gradient(1px 1px at 75% 15%, #9fdfff, transparent),
    radial-gradient(1px 1px at 88% 60%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 42% 88%, #b8e8ff, transparent),
    radial-gradient(1px 1px at 18% 48%, #fff, transparent),
    radial-gradient(1px 1px at 62% 12%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 8% 82%, #cfefff, transparent);
  will-change: transform;
}

.void-bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(15, 207, 237, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 207, 237, 0.45) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 20%, transparent 75%);
}

.void-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.void-bg__glow--a {
  width: 420px;
  height: 420px;
  top: 12%;
  right: -100px;
  background: rgba(15, 180, 220, 0.32);
  animation: glow-pulse 10s ease-in-out infinite;
}

.void-bg__glow--b {
  width: 340px;
  height: 340px;
  bottom: 8%;
  left: -120px;
  background: rgba(40, 90, 150, 0.28);
  animation: glow-pulse 12s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.38;
    transform: scale(1.06);
  }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 12px var(--cyan-glow);
  transform-origin: left;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.82rem 1.4rem 0.68rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.btn--sm {
  min-height: 36px;
  padding: 0.48rem 0.95rem 0.36rem;
  font-size: 0.62rem;
}

.btn--lg {
  min-height: 52px;
  padding: 0.98rem 1.75rem 0.82rem;
  font-size: 0.76rem;
}

.btn--primary {
  border-color: rgba(15, 207, 237, 0.35);
  background: linear-gradient(135deg, #12d4f0 0%, #178db4 48%, #0a5f7a 100%);
  color: #031018;
  box-shadow:
    0 0 0 1px rgba(15, 207, 237, 0.2),
    0 12px 32px rgba(15, 207, 237, 0.22);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(15, 207, 237, 0.45),
    0 16px 40px rgba(15, 207, 237, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--glass {
  border-color: var(--stroke-hot);
  background: linear-gradient(180deg, rgba(20, 45, 65, 0.5), rgba(6, 14, 24, 0.7));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn--glass:hover {
  transform: translateY(-1px);
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(15, 207, 237, 0.2);
}

.btn--ghost {
  border-color: var(--stroke);
  background: rgba(8, 18, 30, 0.45);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: var(--cyan-dim);
  color: #fff;
}

.btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.btn--primary:hover .btn__shine,
.waitlist__submit:hover .btn__shine {
  animation: shine-sweep 0.85s var(--ease);
}

@keyframes shine-sweep {
  to {
    transform: translateX(120%);
  }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(3, 8, 16, 0.82);
  border-bottom-color: var(--stroke);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo {
  display: block;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(15, 207, 237, 0.2));
  transition: filter 0.35s ease;
}

.nav__brand:hover .nav__logo {
  filter: drop-shadow(0 0 16px rgba(15, 207, 237, 0.45));
}

@media (min-width: 700px) {
  .nav__logo {
    width: 40px;
    height: 40px;
  }
}

.nav__links {
  display: none;
  gap: 1.5rem;
}

.nav__links a {
  position: relative;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--cyan);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__actions {
  display: none;
  gap: 0.55rem;
  margin-left: auto;
}

.nav__burger {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(8, 18, 30, 0.55);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--cyan);
  transition: transform 0.3s var(--ease);
}

.nav.is-open .nav__burger span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav.is-open .nav__burger span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 1.25rem 1.25rem;
  background: rgba(3, 8, 16, 0.96);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(18px);
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer a {
  padding: 0.9rem 0.35rem;
  border-bottom: 1px solid rgba(90, 170, 210, 0.12);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

@media (min-width: 900px) {
  .nav__links {
    position: absolute;
    left: 50%;
    display: flex;
    transform: translateX(-50%);
  }
  .nav__actions {
    display: flex;
  }
  .nav__burger,
  .nav-drawer {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: calc(var(--nav-h) + 1.5rem) clamp(1rem, 4vw, 2.5rem) 5rem;
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 58% at 50% 46%, rgba(3, 6, 12, 0.55) 0%, rgba(3, 6, 12, 0.32) 42%, rgba(3, 6, 12, 0.12) 68%, rgba(3, 6, 12, 0.35) 100%),
    linear-gradient(180deg, rgba(3, 6, 12, 0.35) 0%, transparent 24%, transparent 70%, var(--void) 100%);
}

.hero__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 3px,
    rgba(15, 207, 237, 0.025) 3px,
    rgba(15, 207, 237, 0.025) 4px
  );
  mix-blend-mode: screen;
  pointer-events: none;
  animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
  to {
    background-position: 0 48px;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(220px, 36vw, 340px);
  margin: 0 0 clamp(1.1rem, 2.5vw, 1.6rem);
  padding: 1.25rem 0.5rem 0.35rem;
  overflow: visible;
}

.hero__emblem::before {
  content: "";
  position: absolute;
  inset: -8% -18% -18%;
  background: radial-gradient(circle, rgba(15, 207, 237, 0.12) 0%, rgba(15, 207, 237, 0) 68%);
  animation: emblem-pulse 7s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.hero__emblem img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(15, 207, 237, 0.22));
}

@keyframes emblem-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.03);
  }
}

.hero__brandline {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, rgba(15, 207, 237, 0), var(--cyan));
}

.hero__eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--cyan), rgba(15, 207, 237, 0));
}

@media (max-width: 639px) {
  .hero__eyebrow-line {
    display: none;
  }
}

.hero__headline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #cfe9f5;
}

.hero__lede {
  margin: 0 0 2.25rem;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .hero__eyebrow,
  .hero__headline {
    white-space: nowrap;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 0.25s ease;
}

.hero__scroll:hover {
  color: var(--cyan);
}

.hero__scroll i {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.35;
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (min-width: 800px) {
  .hero__scroll {
    display: flex;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-y) clamp(1rem, 4vw, 2.5rem);
}

.section__head {
  max-width: 620px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.section__kicker {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section__lede {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
}

/* ---------- Mosaic loop ---------- */
.mosaic {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.mosaic__feature {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 880px) {
  .mosaic__feature {
    grid-template-columns: 1.2fr 1fr;
  }

  .mosaic__feature:nth-child(even) .mosaic__media {
    order: 2;
  }
}

.mosaic__feature--hero .mosaic__copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
}

.mosaic__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #050a12;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--stroke-soft);
}

.mosaic__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(15, 207, 237, 0.15);
  pointer-events: none;
}

.mosaic__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: min(58vh, 620px);
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.mosaic__feature:hover .mosaic__media img {
  transform: scale(1.035);
}

.mosaic__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: var(--max-read);
}

.mosaic__index {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  color: var(--cyan-dim);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mosaic__index em {
  font-style: normal;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 207, 237, 0.4);
  text-stroke: 1px rgba(15, 207, 237, 0.4);
}

.mosaic__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

.mosaic__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ---------- Systems ---------- */
.systems__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .systems__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.systems__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.6rem 1.35rem;
  border-radius: var(--radius-card);
  background:
    linear-gradient(165deg, rgba(14, 36, 54, 0.55), rgba(5, 12, 22, 0.88));
  box-shadow: inset 0 0 0 1px var(--stroke);
  border-left: 2px solid rgba(15, 207, 237, 0.55);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.systems__item::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(15, 207, 237, 0.12), transparent 68%);
  pointer-events: none;
}

.systems__item:hover {
  transform: translateY(-4px);
  border-left-color: var(--cyan);
  box-shadow:
    inset 0 0 0 1px var(--stroke-hot),
    0 18px 40px -24px rgba(15, 207, 237, 0.28);
}

.systems__index {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.systems__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.systems__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.brief {
  max-width: var(--max);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .brief {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.brief__col {
  position: relative;
  padding: 1.35rem 1.25rem 1.45rem 1.35rem;
  border-radius: var(--radius-card-sm);
  background: rgba(6, 14, 24, 0.55);
  box-shadow: inset 0 0 0 1px var(--stroke-soft);
  border-left: 2px solid rgba(15, 207, 237, 0.55);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.brief__col:hover {
  transform: translateY(-3px);
  border-left-color: var(--cyan);
  box-shadow:
    inset 0 0 0 1px var(--stroke),
    0 14px 32px -22px rgba(0, 0, 0, 0.55);
}

.brief__col h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.brief__col p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---------- Platforms ---------- */
.platforms__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
}

@media (min-width: 800px) {
  .platforms__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.platforms__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  border-radius: var(--radius-card);
  background: rgba(9, 19, 32, 0.55);
  box-shadow: inset 0 0 0 1px var(--stroke-soft);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.platforms__item:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--stroke-hot);
}

.platforms__item .btn {
  margin-top: auto;
  align-self: flex-start;
}

.platforms__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.platforms__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.platforms__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.34rem 0.6rem 0.24rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 223, 138, 0.4);
  background: rgba(111, 223, 138, 0.1);
  color: var(--ok);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.platforms__badge--soon {
  border-color: rgba(232, 160, 48, 0.4);
  background: rgba(232, 160, 48, 0.08);
  color: var(--amber);
}

.platforms__item--live {
  background: linear-gradient(165deg, rgba(15, 60, 85, 0.55), rgba(6, 16, 28, 0.85));
  box-shadow:
    inset 0 0 0 1px var(--stroke-hot),
    0 20px 45px -20px rgba(15, 207, 237, 0.28);
}

/* ---------- Waitlist ---------- */
.waitlist__panel {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  border-radius: var(--radius-card);
  background: linear-gradient(165deg, rgba(16, 38, 56, 0.55), rgba(4, 10, 18, 0.88));
  box-shadow:
    inset 0 0 0 1px var(--stroke-hot),
    0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 0 90px -30px rgba(15, 207, 237, 0.2);
}

@media (min-width: 860px) {
  .waitlist__panel {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.waitlist__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.waitlist__lede {
  margin: 0;
  color: var(--muted);
}

.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.waitlist__input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card-sm);
  background: rgba(3, 8, 16, 0.7);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.waitlist__input::placeholder {
  color: #5f849e;
}

.waitlist__input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(15, 207, 237, 0.15);
}

.waitlist__interests {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card-sm);
  background: rgba(3, 8, 16, 0.35);
}

.waitlist__legend {
  padding: 0 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.waitlist__check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.45rem 0;
  color: #c8dceb;
  cursor: pointer;
}

.waitlist__check input {
  accent-color: var(--cyan);
  width: 1rem;
  height: 1rem;
}

.waitlist__submit {
  width: 100%;
}

.waitlist__status {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
}

.waitlist__status[data-kind="ok"] {
  color: var(--ok);
}

.waitlist__status[data-kind="error"] {
  color: var(--danger);
}

.waitlist__status[data-kind="pending"] {
  color: var(--cyan-dim);
}

/* ---------- Status pages (confirm / unsubscribe) ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(3, 8, 16, 0.92), rgba(3, 8, 16, 0));
  pointer-events: none;
}

.site-nav a {
  pointer-events: auto;
}

.site-nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(230, 242, 255, 0.9);
}

.site-nav__play {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--stroke-hot);
  background: rgba(8, 18, 30, 0.72);
  padding: 0.55rem 1rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.site-nav__play:hover {
  color: #fff;
  border-color: var(--cyan);
  background: rgba(15, 50, 70, 0.85);
}

.status-page {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: calc(var(--nav-h) + 2rem) clamp(1rem, 4vw, 2.5rem) 3rem;
  text-align: center;
}

.status-page__title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--cyan);
}

.status-page__lede {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
}

.status-page__detail {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0.5rem 0 0;
}

/* ---------- Playtest feedback (/feedback) ---------- */
.feedback-page {
  align-content: start;
  padding-top: 5.5rem;
}

.feedback-page__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-dim, #4c8096);
}

.feedback-panel {
  width: min(100%, 36rem);
  text-align: left;
}

.feedback-form__field {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.feedback-form__field .waitlist__legend {
  margin: 0;
}

.feedback-form__field em {
  font-style: normal;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
}

.feedback-form__rating {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feedback-form__rate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.75rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(80, 140, 180, 0.35);
  background: rgba(1, 2, 8, 0.65);
  color: rgba(220, 235, 248, 0.92);
  font-size: 0.95rem;
  cursor: pointer;
}

.feedback-form__rate:has(input:checked) {
  border-color: var(--cyan);
  color: var(--cyan);
}

.feedback-form__rate input {
  accent-color: var(--cyan);
}

.feedback-form__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.feedback-form__textarea {
  resize: vertical;
  min-height: 4.5rem;
  line-height: 1.4;
}

.feedback-form__contact {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(80, 140, 180, 0.18);
}

.feedback-done {
  text-align: center;
}

.feedback-done__text {
  margin: 0 0 1.25rem;
  color: rgba(220, 235, 248, 0.92);
  font-size: 1.05rem;
}

/* ?????? Close CTA ?????? */

/* ---------- Close ---------- */
.close {
  text-align: center;
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}

.close__logo {
  display: block;
  width: clamp(72px, 12vw, 110px);
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 22px rgba(15, 207, 237, 0.35));
}

.close__title {
  margin: 0 0 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.close__text {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: var(--muted);
}

.close__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--stroke);
  padding: 1.75rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  background: rgba(2, 5, 10, 0.85);
}

.site-foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.site-foot__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-foot__note a {
  color: var(--cyan-dim);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-foot__note a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .void-bg__glow,
  .hero__scan,
  .hero__scroll i,
  .hero__emblem::before,
  .btn__shine {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mosaic__feature:hover .mosaic__media img {
    transform: none;
  }
  .btn--primary:hover,
  .btn--glass:hover {
    transform: none;
  }
}
