:root {
  color-scheme: dark;
  --bg: #03040a;
  --bg-2: #070914;
  --panel: rgba(8, 13, 30, 0.76);
  --panel-strong: rgba(7, 12, 27, 0.94);
  --cyan: #1ee7ff;
  --cyan-soft: #7ef3ff;
  --blue: #377dff;
  --orange: #ff8a16;
  --orange-soft: #ffc45a;
  --magenta: #ff36bd;
  --violet: #7c48ff;
  --text: #f7f9ff;
  --muted: #99a7c3;
  --line: rgba(155, 202, 255, 0.16);
  --line-bright: rgba(30, 231, 255, 0.38);
  --shadow-cyan: 0 0 42px rgba(30, 231, 255, 0.18);
  --shadow-orange: 0 0 46px rgba(255, 138, 22, 0.20);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 7%, rgba(124, 72, 255, 0.17), transparent 30rem),
    radial-gradient(circle at 91% 14%, rgba(30, 231, 255, 0.15), transparent 34rem),
    radial-gradient(circle at 18% 68%, rgba(255, 54, 189, 0.09), transparent 30rem),
    radial-gradient(circle at 84% 72%, rgba(255, 138, 22, 0.08), transparent 34rem),
    linear-gradient(180deg, #04050c 0%, #03040a 46%, #050510 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 86%, transparent);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 0 47%, rgba(255,255,255,.016) 47.2% 47.35%, transparent 47.55% 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

::selection {
  background: var(--cyan);
  color: #031016;
}

#aura-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .82;
  contain: strict;
}

.page-glow {
  position: fixed;
  z-index: 1;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  opacity: 0.16;
  transform: translateZ(0);
  animation: none;
}

.page-glow-a {
  top: 42vh;
  left: -16vw;
  background: var(--magenta);
}

.page-glow-b {
  top: 138vh;
  right: -18vw;
  background: var(--cyan);
}


main,
footer {
  position: relative;
  z-index: 2;
}

.section-shell {
  width: min(var(--shell), calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 62px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(4, 6, 15, 0.72);
  box-shadow: 0 18px 70px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(10px) saturate(1.08);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-width: 0;
  font-size: 0.89rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(30,231,255,.28);
  border-radius: 12px;
  background: rgba(30,231,255,.06);
  box-shadow: 0 0 24px rgba(30,231,255,.15);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

nav a {
  padding: 8px 13px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

nav a:hover {
  background: rgba(30,231,255,.07);
  color: var(--cyan-soft);
}


.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-width: 0;
}

.sound-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 86px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(30,231,255,.20);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,231,255,.075), rgba(124,72,255,.055));
  color: #9daac4;
  font: inherit;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px rgba(255,255,255,.03);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.sound-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(30,231,255,.45);
  color: var(--cyan-soft);
  box-shadow: 0 0 28px rgba(30,231,255,.09), inset 0 1px rgba(255,255,255,.04);
}

.sound-toggle.is-playing {
  border-color: rgba(30,231,255,.42);
  background: linear-gradient(135deg, rgba(30,231,255,.13), rgba(255,54,189,.07));
  color: var(--cyan-soft);
  box-shadow: 0 0 24px rgba(30,231,255,.10);
}

.sound-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 16px;
  height: 16px;
}

.sound-icon i {
  display: block;
  width: 2px;
  height: 5px;
  border-radius: 4px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  transform-origin: center;
}

.sound-toggle.is-playing .sound-icon i {
  animation: soundBars .76s ease-in-out infinite alternate;
}

.sound-toggle.is-playing .sound-icon i:nth-child(2) {
  height: 11px;
  animation-delay: -.26s;
}

.sound-toggle.is-playing .sound-icon i:nth-child(3) {
  height: 8px;
  animation-delay: -.48s;
}

.sound-toggle.is-muted .sound-icon i {
  height: 2px;
  animation: none;
  opacity: .42;
}

@keyframes soundBars {
  from { transform: scaleY(.45); opacity: .55; }
  to { transform: scaleY(1.18); opacity: 1; }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  min-height: 44px;
  padding: 0 8px 0 16px;
  border: 1px solid rgba(255,176,72,.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,138,22,.15), rgba(255,54,189,.08));
  color: #ffd78b;
  font-size: .79rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255,176,72,.75);
  background: linear-gradient(135deg, rgba(255,138,22,.24), rgba(255,54,189,.12));
}

.cta-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #13030d;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 108px;
  padding-bottom: 44px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 138px;
  left: -40px;
  z-index: 1;
  width: min(440px, 38vw);
  height: min(440px, 38vw);
  content: "";
  border: 1px solid rgba(30,231,255,.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 40px rgba(255,255,255,.01);
  opacity: .7;
}

.hero::after {
  position: absolute;
  top: 176px;
  left: 110px;
  z-index: 1;
  width: min(260px, 22vw);
  height: min(260px, 22vw);
  content: "";
  border: 1px solid rgba(255,138,22,.12);
  border-radius: 50%;
  opacity: .55;
}

.hero-stage {
  position: absolute;
  top: 72px;
  right: -6vw;
  bottom: 16px;
  left: clamp(210px, 20vw, 295px);
  z-index: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-stage::selection {
  background: transparent;
}

.hero-stage::before {
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 66% 44%, rgba(30,231,255,.18), transparent 29%),
    radial-gradient(circle at 50% 58%, rgba(255,54,189,.17), transparent 31%),
    radial-gradient(circle at 75% 72%, rgba(255,138,22,.10), transparent 30%);
  filter: blur(28px);
  opacity: .88;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg,
      rgba(3,4,10,1) 0%,
      rgba(3,4,10,.93) 6%,
      rgba(3,4,10,.64) 16%,
      rgba(3,4,10,.24) 29%,
      rgba(3,4,10,.04) 46%,
      transparent 62%),
    linear-gradient(180deg,
      rgba(3,4,10,.76) 0%,
      rgba(3,4,10,.10) 10%,
      transparent 28%,
      transparent 74%,
      rgba(3,4,10,.48) 90%,
      rgba(3,4,10,.96) 100%),
    linear-gradient(270deg, rgba(3,4,10,.62) 0%, transparent 8%);
}

.hero-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(1.10) contrast(1.06) brightness(.88);
  transform: scale(1.018);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
}

.hero-stage-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 28%, rgba(30,231,255,.08), transparent 24%),
    radial-gradient(circle at 60% 68%, rgba(255,54,189,.08), transparent 28%),
    linear-gradient(180deg, rgba(8,4,24,.10), rgba(3,4,10,.12));
  mix-blend-mode: screen;
}

.stage-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.020) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: .50;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.72) 36%, transparent 82%);
}

.hero-copy {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(46%, 590px);
  min-height: calc(100svh - 152px);
  padding: 42px 0 70px;
  text-shadow: 0 8px 30px rgba(0,0,0,.26);
}
.hero-copy::before {
  position: absolute;
  top: 9%;
  right: -24%;
  bottom: 6%;
  left: -22%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 42% 52%, rgba(3,4,10,.92) 0%, rgba(3,4,10,.70) 38%, rgba(3,4,10,.22) 68%, transparent 78%),
    radial-gradient(circle at 28% 58%, rgba(255,54,189,.08), transparent 45%);
  filter: blur(4px);
}


.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan-soft);
  font-size: .73rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker span {
  color: var(--orange-soft);
}

.eyebrow::after,
.section-kicker::after {
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, currentColor, transparent);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(4.25rem, 8vw, 7.8rem);
  font-weight: 1000;
  line-height: .77;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 span:nth-child(2) {
  margin-left: .14em;
  color: #dce7ff;
}

h1 .accent-word {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-left: .31em;
  background: linear-gradient(100deg, #fff 0 12%, var(--cyan-soft) 46%, #80a7ff 78%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(30,231,255,.16));
}

h1 .accent-word::after {
  position: absolute;
  right: -.13em;
  bottom: -.10em;
  width: 42%;
  height: .07em;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  transform: skewX(-28deg);
  box-shadow: 0 0 18px rgba(255,54,189,.35);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 950;
  line-height: .94;
  letter-spacing: -.055em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -.02em;
}

.hero-subtitle,
.intro p,
.gameplay-copy p,
.community p,
.platform-grid p,
.step-card p,
.section-note {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 530px;
  margin-bottom: 30px;
  font-size: clamp(1.03rem, 1.5vw, 1.24rem);
  line-height: 1.58;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 13px;
  font-size: .81rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.button::after {
  position: absolute;
  top: -90%;
  left: -35%;
  width: 34%;
  height: 280%;
  content: "";
  background: rgba(255,255,255,.24);
  transform: rotate(24deg);
  transition: left 420ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  left: 120%;
}

.button-primary {
  border: 1px solid rgba(255,191,91,.64);
  background: linear-gradient(120deg, #ff9a24, #ff6f29 42%, #ff3ebc 112%);
  color: #10050a;
  box-shadow: 0 16px 40px rgba(255,111,41,.19), 0 0 38px rgba(255,54,189,.10);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(255,111,41,.25), 0 0 46px rgba(255,54,189,.13);
}

.button-secondary {
  border: 1px solid rgba(30,231,255,.22);
  background: rgba(10,21,40,.44);
  color: var(--cyan-soft);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(30,231,255,.46);
  box-shadow: 0 0 34px rgba(30,231,255,.10);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 28px;
  color: #66748e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-meta span::before {
  margin-right: 7px;
  color: var(--cyan);
  content: "+";
}

.visual-hud {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px;
  background: rgba(3, 7, 18, 0.66);
  color: #d9f9ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hud-top {
  top: 22px;
  right: 22px;
}

.hud-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hud-score {
  right: 22px;
  bottom: 24px;
  color: #ffe5a7;
}

.hud-score b {
  color: var(--magenta);
}

.beat-meter {
  position: absolute;
  bottom: 24px;
  left: 26px;
  z-index: 5;
  display: flex;
  align-items: end;
  gap: 4px;
  height: 38px;
}

.beat-meter i {
  display: block;
  width: 3px;
  height: 22%;
  border-radius: 4px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(30,231,255,.4);
  animation: beatBars 1.1s ease-in-out infinite alternate;
}

.beat-meter i:nth-child(2n) { height: 58%; animation-delay: -.15s; }
.beat-meter i:nth-child(3n) { height: 92%; animation-delay: -.33s; }
.beat-meter i:nth-child(4n) { height: 42%; animation-delay: -.48s; }

.hero-index {
  position: absolute;
  right: 4px;
  bottom: 8px;
  left: 4px;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  color: #5f6c84;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .60rem;
  font-weight: 800;
  letter-spacing: .10em;
}

.hero-side-badge {
  position: absolute;
  top: 188px;
  right: 18px;
  z-index: 8;
  display: grid;
  gap: 6px;
  padding: 16px 14px;
  border-left: 1px solid rgba(30,231,255,.30);
  background: linear-gradient(90deg, rgba(5,10,24,.62), transparent);
  backdrop-filter: blur(6px);
}

.hero-side-badge span {
  color: var(--cyan-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .60rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-side-badge b {
  max-width: 11ch;
  color: #f5f7ff;
  font-size: .85rem;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: .02em;
}

.brand-statement {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(90px, 10vw, 140px) 0 clamp(86px, 9vw, 126px);
}

.brand-statement::before {
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(30,231,255,.48), rgba(255,255,255,.06) 38%, transparent);
}

.statement-label {
  position: sticky;
  top: 112px;
  padding-top: 12px;
  color: #73809a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.statement-lines {
  position: relative;
}

.brand-statement p {
  margin: 0;
  width: max-content;
  max-width: 100%;
  font-size: clamp(3rem, 7.5vw, 7.7rem);
  font-weight: 1000;
  line-height: .86;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.brand-statement .statement-shift {
  margin-left: clamp(14px, 7vw, 110px);
  color: var(--cyan-soft);
}

.brand-statement .statement-final {
  margin-top: 8px;
  margin-left: clamp(34px, 15vw, 250px);
  background: linear-gradient(90deg, var(--orange-soft), var(--orange), var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255,138,22,.13));
}

.statement-stroke {
  display: block;
  width: min(420px, 54vw);
  height: 7px;
  margin: clamp(24px, 4vw, 42px) 0 clamp(24px, 4vw, 42px) clamp(20px, 9vw, 140px);
  background: linear-gradient(90deg, transparent, var(--magenta), var(--orange), transparent);
  transform: skewX(-28deg);
  box-shadow: 0 0 24px rgba(255,54,189,.32);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  padding: 90px 0 110px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.intro-head h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.intro-body {
  padding-bottom: 6px;
}

.intro-rule {
  width: 72px;
  height: 3px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  transform: skewX(-24deg);
}

.intro p {
  margin-bottom: 24px;
  font-size: 1.03rem;
  line-height: 1.72;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.intro-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(30,231,255,.14);
  border-radius: 7px;
  background: rgba(30,231,255,.04);
  color: #72819c;
  font-size: .60rem;
  font-weight: 900;
  letter-spacing: .10em;
}

.steps,
.gameplay,
.platforms,
.community {
  padding: 110px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-note {
  flex: 0 0 auto;
  margin: 0 0 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .72rem;
  line-height: 1.7;
  letter-spacing: .04em;
  text-align: right;
  text-transform: uppercase;
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.step-grid::before {
  position: absolute;
  top: 60px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(30,231,255,.34), rgba(255,138,22,.38), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(30,231,255,.06), transparent 38%),
    linear-gradient(180deg, rgba(13,18,39,.78), rgba(6,8,18,.80));
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 24px 70px rgba(0,0,0,.20);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.step-card:hover {
  z-index: 3;
  transform: translateY(-8px);
  border-color: rgba(30,231,255,.22);
  background:
    linear-gradient(160deg, rgba(30,231,255,.10), transparent 40%),
    linear-gradient(180deg, rgba(15,22,47,.88), rgba(6,8,18,.86));
}

.step-card:nth-child(2),
.step-card:nth-child(4) {
  margin-top: 26px;
}

.step-card:nth-child(2)::after,
.step-card:nth-child(4)::after {
  position: absolute;
  right: -38px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(255,138,22,.12);
  filter: blur(28px);
}

.step-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.step-top span {
  color: var(--orange-soft);
  font-size: clamp(3.1rem, 5vw, 4.6rem);
  font-weight: 1000;
  line-height: .82;
  letter-spacing: -.06em;
}

.step-card:nth-child(even) .step-top span {
  color: var(--cyan-soft);
}

.step-top b {
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  color: #65728b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .56rem;
  letter-spacing: .10em;
}

.step-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.62;
}

.gameplay {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(470px, 1.15fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.gameplay-copy h2 {
  max-width: 600px;
}

.gameplay-copy > p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.72;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.stat-row div {
  position: relative;
  padding: 14px 12px;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stat-row div::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 28px;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(30,231,255,.5);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  margin-bottom: 3px;
  color: var(--cyan-soft);
  font-size: .82rem;
  letter-spacing: .05em;
}

.stat-row div:nth-child(2) strong {
  color: var(--orange-soft);
}

.stat-row span {
  color: #6e7a91;
  font-size: .71rem;
}

.gameplay-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30,231,255,.18);
  border-radius: 24px;
  background: var(--panel-strong);
  box-shadow: 0 40px 100px rgba(0,0,0,.42), 0 0 70px rgba(30,231,255,.08);
  transform: perspective(1100px) rotateY(-2.5deg) rotateX(1deg);
  transform-origin: center;
}

.gameplay-panel::after {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}

.gameplay-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #68768f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.gameplay-toolbar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9feef8;
}

.gameplay-toolbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5574;
  box-shadow: 0 0 10px rgba(255,85,116,.6);
}

.gameplay-media,
.camera-feed {
  position: relative;
  min-height: 460px;
}

.camera-feed {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(124,72,255,.18), transparent 32%),
    linear-gradient(135deg, rgba(30,231,255,.07), transparent 36%),
    linear-gradient(225deg, rgba(255,138,22,.09), transparent 30%),
    #050711;
}

.camera-feed::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(30,231,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,231,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 54%, black, transparent 82%);
}

.camera-feed::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255,255,255,.018) 50%, transparent 50%);
  background-size: 100% 4px;
  opacity: .38;
}

.scan-line {
  position: absolute;
  top: 12%;
  right: 5%;
  left: 5%;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,231,255,.65), transparent);
  box-shadow: 0 0 18px rgba(30,231,255,.35);
  animation: scan 5s ease-in-out infinite;
}

.camera-corner {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-color: rgba(30,231,255,.72);
}

.corner-tl { top: 18px; left: 18px; border-top: 2px solid; border-left: 2px solid; }
.corner-tr { top: 18px; right: 18px; border-top: 2px solid; border-right: 2px solid; }
.corner-bl { bottom: 18px; left: 18px; border-bottom: 2px solid; border-left: 2px solid; }
.corner-br { right: 18px; bottom: 18px; border-right: 2px solid; border-bottom: 2px solid; }

.skeleton {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 4;
  width: 220px;
  height: 300px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 14px rgba(30,231,255,.58));
}

.skeleton i,
.skeleton b {
  position: absolute;
  display: block;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(30,231,255,.72);
}

.skeleton i {
  height: 5px;
  border-radius: 99px;
  transform-origin: center;
}

.skeleton b,
.skeleton .head {
  border-radius: 999px;
}

.skeleton .head { top: 10px; left: 88px; width: 44px; height: 44px; }
.skeleton .body { top: 78px; left: 106px; width: 5px; height: 108px; }
.skeleton .arm-left { top: 94px; left: 24px; width: 92px; transform: rotate(-24deg); }
.skeleton .arm-right { top: 98px; right: 22px; width: 96px; transform: rotate(31deg); }
.skeleton .leg-left { top: 206px; left: 42px; width: 90px; transform: rotate(-48deg); }
.skeleton .leg-right { top: 208px; right: 34px; width: 98px; transform: rotate(43deg); }

.joint { width: 12px; height: 12px; }
.j1 { top: 92px; left: 51px; }
.j2 { top: 96px; right: 55px; }
.j3 { top: 214px; left: 60px; }
.j4 { top: 216px; right: 64px; }

.particle {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255,138,22,.85);
  animation: floatPulse 3.8s ease-in-out infinite;
}

.p1 { top: 26%; left: 22%; }
.p2 { right: 24%; bottom: 27%; background: var(--magenta); }
.p3 { top: 45%; right: 17%; background: var(--cyan); }

.motion-readout {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #69778f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .58rem;
  letter-spacing: .08em;
}

.motion-readout strong {
  color: var(--cyan-soft);
  font-size: .95rem;
}

.game-hud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(4,7,17,.88);
}

.game-hud div {
  position: relative;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,.06);
}

.game-hud div:last-child {
  border-right: 0;
}

.game-hud div::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 22px;
  height: 1px;
  content: "";
  background: var(--cyan);
}

.game-hud div:nth-child(2)::before { background: var(--orange); }
.game-hud div:nth-child(3)::before { background: var(--magenta); }

.game-hud span,
.game-hud strong {
  display: block;
}

.game-hud span {
  margin-bottom: 2px;
  color: #627089;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .59rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.game-hud strong {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: -.03em;
}

.platforms {
  position: relative;
}

.platform-heading {
  align-items: center;
}

.platform-orbit {
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(30,231,255,.18);
  border-radius: 50%;
  color: #5e6b83;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.35;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(30,231,255,.04);
}

.platform-orbit::before {
  width: 74px;
  height: 74px;
  border: 1px dashed rgba(255,138,22,.30);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.platform-grid article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 76% 18%, rgba(30,231,255,.07), transparent 28%),
    linear-gradient(180deg, rgba(13,18,39,.72), rgba(6,8,18,.82));
  transition: transform 180ms ease, border-color 180ms ease;
}

.platform-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(30,231,255,.20);
}

.platform-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 76% 18%, rgba(255,138,22,.09), transparent 28%),
    linear-gradient(180deg, rgba(16,18,36,.76), rgba(8,8,17,.86));
}

.platform-grid article:nth-child(3) {
  background:
    radial-gradient(circle at 76% 18%, rgba(255,54,189,.08), transparent 28%),
    linear-gradient(180deg, rgba(14,17,36,.76), rgba(7,8,18,.86));
}

.platform-number {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #56637a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .63rem;
  font-weight: 900;
}

.device-icon {
  position: relative;
  display: grid;
  width: 100%;
  height: 190px;
  place-items: center;
  margin-bottom: 20px;
}

.device-desktop::before {
  width: 132px;
  height: 82px;
  border: 2px solid rgba(30,231,255,.64);
  border-radius: 8px;
  content: "";
  box-shadow: 0 0 24px rgba(30,231,255,.10), inset 0 0 24px rgba(30,231,255,.05);
}

.device-desktop::after {
  position: absolute;
  bottom: 39px;
  width: 72px;
  height: 2px;
  content: "";
  background: rgba(30,231,255,.52);
  box-shadow: 0 -18px 0 -0.5px rgba(30,231,255,.45);
}

.device-phone::before {
  width: 76px;
  height: 136px;
  border: 2px solid rgba(255,169,76,.62);
  border-radius: 15px;
  content: "";
  box-shadow: 0 0 24px rgba(255,138,22,.08), inset 0 0 24px rgba(255,138,22,.04);
}

.platform-grid article:nth-child(3) .device-phone::before {
  border-color: rgba(255,54,189,.54);
}

.device-phone::after {
  position: absolute;
  bottom: 35px;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  content: "";
  background: rgba(255,255,255,.22);
}

.platform-grid h3 {
  margin-bottom: 9px;
}

.platform-grid p {
  max-width: 33ch;
  margin-bottom: 0;
  font-size: .92rem;
  line-height: 1.6;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(440px, .85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

.community-copy h2 {
  max-width: 650px;
}

.community-copy p {
  max-width: 600px;
  margin-bottom: 0;
  line-height: 1.7;
}

.ranking-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13,18,39,.78), rgba(6,8,18,.88));
  box-shadow: 0 30px 90px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.03);
}

.ranking-top,
.ranking-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 16px;
  color: #66748c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.ranking-top {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ranking-top span:last-child {
  color: #ff6e8a;
}

.rank-line {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.rank-line b {
  color: #56637c;
  font-size: .84rem;
}

.rank-line span {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .03em;
}

.rank-line strong {
  color: #dbe5fa;
  font-size: .88rem;
}

.rank-line.active {
  position: relative;
  background: linear-gradient(90deg, rgba(30,231,255,.11), rgba(30,231,255,.02));
}

.rank-line.active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(30,231,255,.55);
}

.rank-line.active b,
.rank-line.active span,
.rank-line.active strong {
  color: var(--cyan-soft);
}

.ranking-bottom {
  justify-content: flex-end;
  min-height: 42px;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 380px;
  margin-top: 76px;
  margin-bottom: 76px;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255,54,189,.22), transparent 32%),
    radial-gradient(circle at 12% 42%, rgba(30,231,255,.13), transparent 30%),
    linear-gradient(120deg, rgba(14,20,43,.94), rgba(8,9,21,.95));
  box-shadow: 0 40px 120px rgba(0,0,0,.40), inset 0 1px rgba(255,255,255,.04);
}

.final-cta::before {
  position: absolute;
  top: 0;
  right: 32%;
  width: 1px;
  height: 150%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255,138,22,.5), transparent);
  transform: rotate(24deg) translateY(-20%);
  box-shadow: 0 0 24px rgba(255,138,22,.3);
}

.final-copy {
  position: relative;
  z-index: 2;
}

.final-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.8vw, 6.7rem);
}

.final-button {
  z-index: 3;
  flex: 0 0 auto;
  min-width: 190px;
}

.final-word {
  position: absolute;
  right: -1.5%;
  bottom: -14%;
  color: transparent;
  font-size: clamp(8rem, 19vw, 18rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.09em;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  user-select: none;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(var(--shell), calc(100% - 56px));
  margin: 0 auto;
  padding: 18px 0 44px;
  color: #65728b;
  font-size: .77rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: #b8c4da;
  font-weight: 900;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

footer > span {
  text-align: center;
}

footer > a {
  justify-self: end;
  transition: color 160ms ease;
}

footer > a:hover {
  color: var(--cyan-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
}


/* Performance: defer rendering of below-the-fold sections without changing layout semantics. */
.brand-statement,
.intro,
.steps,
.gameplay,
.platforms,
.community,
.final-cta,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

/* On smaller devices, avoid expensive fixed full-screen blur compositing. */
@media (max-width: 900px) {
  .page-glow {
    filter: blur(48px);
    opacity: .12;
  }

  .site-header {
    backdrop-filter: blur(8px) saturate(1.06);
  }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: .62; }
  50% { transform: translateY(-18px) scale(1.35); opacity: 1; }
}

@keyframes scan {
  0%, 100% { top: 12%; opacity: .25; }
  50% { top: 88%; opacity: .75; }
}

@keyframes beatBars {
  from { transform: scaleY(.55); opacity: .55; }
  to { transform: scaleY(1.1); opacity: 1; }
}


@keyframes glowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .20; }
  50% { transform: translate3d(2vw, -2vh, 0) scale(1.08); opacity: .28; }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    width: min(960px, calc(100% - 30px));
  }

  .hero-stage {
    right: -4vw;
    left: 22%;
  }

  .hero-copy {
    width: 50%;
  }

  h1 {
    font-size: clamp(4rem, 9vw, 6.8rem);
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid::before {
    display: none;
  }

  .step-card:nth-child(2),
  .step-card:nth-child(4) {
    margin-top: 0;
  }

  .step-card {
    min-height: 270px;
  }

  .gameplay {
    grid-template-columns: minmax(280px, .72fr) minmax(420px, 1fr);
  }
}

@media (max-width: 900px) {
  .hero::before,
  .hero::after {
    display: none;
  }

  .section-shell {
    width: min(100% - 36px, var(--shell));
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .header-actions {
    gap: 6px;
  }

  .sound-toggle {
    min-width: 44px;
    min-height: 40px;
    padding: 0 10px;
  }

  nav {
    display: none;
  }

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

  .hero {
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 34px;
  }

  .hero-stage {
    top: 68px;
    right: -18px;
    bottom: 34px;
    left: -18px;
  }

  .hero-stage img {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
  }

  .hero-stage-shade {
    background:
      linear-gradient(180deg, rgba(3,4,10,.04), rgba(3,4,10,.10) 34%, rgba(3,4,10,.82) 76%, rgba(3,4,10,.98)),
      linear-gradient(90deg, rgba(3,4,10,.18), transparent 66%);
    mix-blend-mode: normal;
  }

  .stage-grid {
    mask-image: linear-gradient(180deg, black, transparent 70%);
  }

  .hero-copy {
    justify-content: end;
    width: 100%;
    min-height: calc(100svh - 110px);
    padding: 220px 22px 54px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(3.5rem, 12.4vw, 6.5rem);
  }

  h1 span:nth-child(2),
  h1 .accent-word {
    margin-left: 0;
  }

  .hero-subtitle {
    max-width: 560px;
  }

  .hero-index {
    right: 10px;
    left: 10px;
  }

  .hero-side-badge {
    display: none;
  }

  .brand-statement {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .statement-label {
    position: static;
    padding-top: 0;
    writing-mode: initial;
    transform: none;
  }

  .intro,
  .gameplay,
  .community {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 36px;
  }

  .gameplay {
    gap: 44px;
  }

  .gameplay-panel {
    transform: none;
  }

  .community {
    gap: 46px;
  }

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

  .platform-grid article {
    min-height: 270px;
  }

  .device-icon {
    height: 130px;
  }

  .device-desktop::after {
    bottom: 8px;
  }

  .device-phone::after {
    bottom: 5px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    min-height: 420px;
  }

  footer {
    width: min(100% - 36px, var(--shell));
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 24px, var(--shell));
  }

  .site-header {
    width: calc(100% - 20px);
    padding-left: 9px;
    border-radius: 15px;
  }

  .brand-name {
    display: none;
  }

  .sound-toggle {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .sound-copy {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-left: 13px;
    font-size: .72rem;
  }

  .cta-arrow {
    width: 27px;
    height: 27px;
  }

  .hero-stage {
    border-radius: 22px;
  }

  .hero-copy {
    padding-right: 12px;
    padding-left: 12px;
  }

  .eyebrow,
  .section-kicker {
    font-size: .66rem;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(3.15rem, 17vw, 5.3rem);
    line-height: .80;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    display: none;
  }

  .visual-hud {
    font-size: .56rem;
  }

  .hud-top {
    top: 16px;
    right: 16px;
  }

  .hud-score {
    right: 16px;
    bottom: 18px;
  }

  .beat-meter {
    bottom: 18px;
    left: 18px;
  }

  .hero-index {
    display: none;
  }

  .brand-statement {
    padding: 92px 0 80px;
  }

  .brand-statement p {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
    line-height: .88;
  }

  .brand-statement .statement-shift,
  .brand-statement .statement-final {
    margin-left: 0;
  }

  .statement-stroke {
    margin-left: 0;
  }

  .intro,
  .steps,
  .gameplay,
  .platforms,
  .community {
    padding: 76px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .section-note {
    display: none;
  }

  .step-grid,
  .stat-row,
  .game-hud {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 230px;
  }

  .stat-row {
    gap: 0;
  }

  .gameplay-media,
  .camera-feed {
    min-height: 390px;
  }

  .game-hud div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .game-hud div:last-child {
    border-bottom: 0;
  }

  .platform-orbit {
    display: none;
  }

  .platform-grid article {
    min-height: 250px;
  }

  .ranking-card {
    border-radius: 16px;
  }

  .rank-line {
    grid-template-columns: 38px 1fr auto;
    padding: 0 12px;
  }

  .rank-line span,
  .rank-line strong {
    font-size: .75rem;
  }

  .final-cta {
    width: calc(100% - 24px);
    min-height: 390px;
    margin-top: 42px;
    margin-bottom: 42px;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .final-copy h2 {
    font-size: clamp(2.8rem, 13.5vw, 4.5rem);
  }

  .final-button {
    width: auto;
  }

  footer {
    grid-template-columns: 1fr auto;
    width: calc(100% - 28px);
    padding-bottom: 28px;
  }

  footer > span {
    display: none;
  }
}

/* V7 — preserve V5 atmosphere + V6 responsive safety */
@media (min-width: 1081px) {
  .hero-copy {
    width: min(49%, 640px);
    padding-right: 10px;
  }

  #hero-title {
    max-width: none;
    font-size: clamp(4rem, 7.15vw, 7.25rem);
    letter-spacing: -.075em;
  }

  #hero-title .accent-word {
    max-width: none;
    padding-right: .10em;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .hero-copy {
    width: 54%;
  }

  #hero-title {
    font-size: clamp(3.75rem, 8.35vw, 6.25rem);
    letter-spacing: -.075em;
  }

  #hero-title .accent-word {
    max-width: none;
    padding-right: .08em;
  }
}

/* Eliminate mobile drift from manifesto/final decorations without removing V5 FX. */
@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .statement-lines {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .brand-statement p {
    width: fit-content;
    max-width: 100%;
    font-size: clamp(2.3rem, 11.4vw, 4.1rem);
    letter-spacing: -.065em;
  }

  .statement-label {
    width: 100%;
    min-width: 0;
  }

  .final-cta {
    overflow: hidden;
  }

  .final-word {
    max-width: 100%;
    pointer-events: none;
  }

  .hero-copy,
  .hero-stage,
  .site-header,
  .section-shell,
  footer {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .brand-statement p {
    font-size: clamp(2.18rem, 11.1vw, 3.15rem);
  }
}


/* ============================================================
   REAL GAMEPLAY SHOWCASE
   Replaces the old conceptual stick/skeleton mockup on landing.
   ============================================================ */
.gameplay-panel-real {
  transform: perspective(1100px) rotateY(-2.5deg) rotateX(1deg);
}

.gameplay-real-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(30,231,255,.08), transparent 42%),
    #03050d;
}

.gameplay-real-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  box-shadow:
    inset 0 0 0 1px rgba(30,231,255,.08),
    inset 0 -28px 70px rgba(3,4,10,.24);
}

.gameplay-real-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  background: #03050d;
}

@media (max-width: 760px) {
  .gameplay-panel-real {
    transform: none;
  }

  .gameplay-real-media img {
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }
}
