/* Smash League — core tokens & global utilities */

:root {
  --c-ink: #0a0a0b;
  --c-ink-2: #18181a;
  --c-ink-3: #2a2a2e;
  --c-sand: #f4ecde;
  --c-sand-2: #ebe1cf;
  --c-paper: #f6f4ef;
  --c-yellow: #ffd60a;
  --c-yellow-2: #ffc400;
  --c-hot: #ff3d2e;
  --c-cool: #15d5ff;
  --c-line: rgba(10, 10, 11, 0.12);

  --font-display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --font-body: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

[data-palette="aaa"] {
  --c-ink: #07070a;
  --c-ink-2: #101018;
  --c-ink-3: #1c1c28;
  --c-sand: #efece6;
  --c-paper: #f8f7f3;
  --c-yellow: #e8c84a;
  --c-yellow-2: #c9a82e;
  --c-hot: #d24a3a;
  --c-cool: #6aa8c8;
}

[data-palette="sport"] {
  --c-ink: #111111;
  --c-ink-2: #1f1f1f;
  --c-ink-3: #2f2f2f;
  --c-sand: #f7f4ec;
  --c-paper: #ffffff;
  --c-yellow: #ffd400;
  --c-yellow-2: #f3c100;
  --c-hot: #ff2e2e;
  --c-cool: #1e6cff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.lp {
  background: var(--c-ink);
  color: var(--c-sand);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.lp,
.lp * {
  box-sizing: border-box;
}

.lp-display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.85;
  text-transform: uppercase;
}

.lp-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-yellow);
}

.lp-section {
  position: relative;
  padding: 96px 80px;
}

.lp-section--sand {
  background: var(--c-sand);
  color: var(--c-ink);
}

.lp-section--ink {
  background: var(--c-ink);
  color: var(--c-sand);
}

.lp-section--paper {
  background: var(--c-paper);
  color: var(--c-ink);
}

.lp-grid {
  display: grid;
  gap: 24px;
}

.lp-rule {
  border: 0;
  border-top: 1px solid currentColor;
  opacity: 0.18;
  margin: 0;
}

/* ── buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  padding: 18px 28px;
  font-size: 18px;
  line-height: 1;
  border-radius: 0;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  position: relative;
}
.btn:hover {
  transform: translate(-2px, -2px);
}
.btn-primary {
  background: var(--c-yellow);
  color: var(--c-ink);
  box-shadow: 6px 6px 0 0 var(--c-ink);
}
.btn-primary:hover {
  box-shadow: 8px 8px 0 0 var(--c-ink);
}
.btn-ghost {
  background: transparent;
  color: currentColor;
  border: 2px solid currentColor;
}
.btn-dark {
  background: var(--c-ink);
  color: var(--c-sand);
  box-shadow: 6px 6px 0 0 var(--c-yellow);
}
.btn-dark:hover {
  box-shadow: 8px 8px 0 0 var(--c-yellow);
}

/* ── nav ────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  background: var(--c-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-sand);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.lp-nav__brand > div {
  min-width: 0;
}
.lp-nav__mark {
  width: 34px;
  height: 34px;
  background: var(--c-yellow);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--c-ink);
  font-size: 22px;
  transform: rotate(-6deg);
}
.lp-nav__name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
}
.lp-nav__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}
.lp-nav__link {
  color: var(--c-sand);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.lp-nav__link:hover {
  opacity: 1;
  color: var(--c-yellow);
}
.lp-nav__cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.lp-nav__launch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.lp-nav__launch .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--c-yellow);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.4s infinite;
}
@media (max-width: 980px) {
  .lp-nav__launch {
    display: none;
  }
}

/* ── hero ───────────────────────────────── */
.hero {
  position: relative;
  background: var(--c-ink);
  color: var(--c-sand);
  overflow: hidden;
  padding: 64px 80px 80px;
  min-height: 760px;
}

.hero__bgline {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0 60px,
      rgba(255, 214, 10, 0.04) 60px 61px
    );
  pointer-events: none;
}

.hero__halftone {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 540px;
  height: 540px;
  background-image: radial-gradient(var(--c-yellow) 1.5px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.35;
  mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.35);
  color: var(--c-yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__kicker .dot {
  width: 6px;
  height: 6px;
  background: var(--c-yellow);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 168px);
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.hero__title .yellow {
  color: var(--c-yellow);
  display: inline-block;
  transform: rotate(-2deg);
}
.hero__title .smash {
  display: inline-block;
  position: relative;
  color: var(--c-yellow);
  font-style: italic;
  letter-spacing: -0.04em;
  padding: 0 0.04em;
  -webkit-text-stroke: 1px var(--c-ink);
  text-shadow:
    3px 3px 0 var(--c-hot),
    6px 6px 0 var(--c-ink);
}
.hero__title .smash::before {
  content: "";
  position: absolute;
  left: -0.02em;
  right: 60%;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--c-hot);
  z-index: -1;
  transform: skewX(-12deg);
}

.hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 236, 222, 0.78);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__pricetag {
  position: absolute;
  top: 28px;
  right: 80px;
  background: var(--c-hot);
  color: var(--c-sand);
  padding: 12px 18px;
  transform: rotate(8deg);
  font-family: var(--font-display);
  text-align: center;
  z-index: 3;
  box-shadow: 4px 4px 0 var(--c-ink);
}
.hero__pricetag .small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.hero__pricetag .big {
  font-size: 28px;
  line-height: 1;
}
.hero__pricetag .tiny {
  display: block;
  font-size: 8px;
  letter-spacing: 0.18em;
  margin-top: 4px;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__sub-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.2s, color 0.2s;
}
.hero__sub-cta:hover {
  gap: 14px;
  color: var(--c-sand);
}
.hero__sub-cta span {
  transition: transform 0.4s cubic-bezier(.3,.7,.2,1);
}
.hero__sub-cta:hover span {
  transform: translateY(3px);
}

.hero__keyart {
  position: relative;
  aspect-ratio: 5/6;
  background: var(--c-ink-2);
  border: 1px solid rgba(255, 214, 10, 0.2);
  overflow: hidden;
}
.hero__keyart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -38deg,
    rgba(255, 214, 10, 0.04) 0 18px,
    rgba(255, 214, 10, 0.1) 18px 19px
  );
}
.hero__keyart__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__keyart__tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-yellow);
}
.hero__keyart__label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 236, 222, 0.7);
}
.hero__keyart__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--font-display);
  color: var(--c-yellow);
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__keyart__center small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(244, 236, 222, 0.5);
  margin-top: 10px;
}

/* Platform tabs */
.platform-tabs {
  margin-top: 32px;
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 214, 10, 0.25);
  background: rgba(255, 214, 10, 0.04);
  width: fit-content;
}
.platform-tab {
  padding: 12px 18px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 214, 10, 0.18);
  color: rgba(244, 236, 222, 0.65);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 130px;
  transition: all 0.15s;
}
.platform-tab:last-child {
  border-right: 0;
}
.platform-tab:hover {
  color: var(--c-sand);
}
.platform-tab[aria-selected="true"] {
  background: var(--c-yellow);
  color: var(--c-ink);
}
.platform-tab .plat-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.platform-tab .plat-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-top: 2px;
}

/* hero ticker */
.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.hero__ticker__inner {
  display: flex;
  gap: 32px;
  animation: ticker 28s linear infinite;
  padding-left: 32px;
}
.hero__ticker span::before {
  content: "★";
  margin-right: 16px;
  color: var(--c-hot);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* trailer */
.trailer {
  position: relative;
  margin: 0 80px;
  aspect-ratio: 16/9;
  background: var(--c-ink-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.trailer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(21, 213, 255, 0.12), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 214, 10, 0.18), transparent 55%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.025) 20px 21px);
}
.trailer__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--c-yellow);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 0 0 8px rgba(255, 214, 10, 0.18), 0 0 0 16px rgba(255, 214, 10, 0.08);
}
.trailer__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.trailer__play svg {
  width: 44px;
  height: 44px;
  fill: var(--c-ink);
  margin-left: 6px;
}
.trailer__label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 236, 222, 0.6);
}
.trailer__label::before {
  content: "▶";
  margin-right: 8px;
  color: var(--c-hot);
}
.trailer__timecode {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(244, 236, 222, 0.5);
}

/* Section heading */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.sec-head__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.sec-head__title .accent {
  position: relative;
  display: inline-block;
  color: var(--c-yellow);
  isolation: isolate;
}
.sec-head__title .accent::before {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.06em;
  height: 0.26em;
  background: var(--c-yellow);
  opacity: 0.18;
  transform: skewX(-10deg);
  z-index: -1;
}
.sec-head__title .strike {
  position: relative;
  display: inline-block;
  color: var(--c-hot);
}
.sec-head__title .strike::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: -0.04em;
  height: 0.1em;
  background: var(--c-hot);
  transform: skewX(-8deg);
}
.sec-head__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  text-align: right;
  min-width: 160px;
}

/* Features grid */
.feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.feat__cell {
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 36px 28px 32px;
  position: relative;
  transition: background 0.15s;
}
.feat__cell:hover {
  background: var(--c-yellow);
}
.feat__cell:hover .feat__num {
  color: var(--c-ink);
}
.feat__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-hot);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat__num::after {
  content: "";
  flex: 1;
  border-top: 1px dashed currentColor;
  opacity: 0.3;
}
.feat__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
}
.feat__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.feat__body {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.78;
  margin: 0;
}

/* Modes switcher */
.modes {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border: 1px solid currentColor;
}
.modes__list {
  border-right: 1px solid currentColor;
  display: flex;
  flex-direction: column;
}
.modes__item {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 28px 24px;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  color: currentColor;
  position: relative;
  transition: background 0.15s;
  font-family: inherit;
}
.modes__item:last-child {
  border-bottom: 0;
}
.modes__item[aria-selected="true"] {
  background: var(--c-yellow);
  color: var(--c-ink);
}
.modes__item:not([aria-selected="true"]):hover {
  background: rgba(255, 214, 10, 0.06);
}
.modes__item__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 8px;
}
.modes__item__name {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.modes__item__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.7;
  text-transform: uppercase;
}
.modes__panel {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
  min-height: 480px;
}
.modes__visual {
  aspect-ratio: 1 / 1;
  background: var(--c-ink-2);
  position: relative;
  overflow: hidden;
}
.modes__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 214, 10, 0.06) 0 16px,
    rgba(255, 214, 10, 0.14) 16px 17px
  );
}
.modes__visual__label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow);
}
.modes__visual__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--c-yellow);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.modes__visual__diagram {
  position: absolute;
  inset: 20%;
  border: 2px solid var(--c-yellow);
  border-radius: 50%;
  opacity: 0.5;
}
.modes__visual__diagram::before {
  content: "";
  position: absolute;
  inset: -10%;
  border: 1px dashed var(--c-yellow);
  border-radius: 50%;
  opacity: 0.5;
}
.modes__copy h4 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.modes__copy p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.8;
  margin: 0 0 24px;
}
.modes__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid currentColor;
  padding-top: 20px;
}
.modes__stat__k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}
.modes__stat__v {
  font-family: var(--font-display);
  font-size: 24px;
  margin-top: 4px;
  color: var(--c-hot);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery .tile {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--c-ink-2);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 10, 0.15);
}
.gallery .tile:nth-child(1),
.gallery .tile:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery .tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    var(--gallery-angle, 45deg),
    rgba(255, 214, 10, 0.05) 0 14px,
    rgba(255, 214, 10, 0.12) 14px 15px
  );
}
.gallery .tile:nth-child(1) { --gallery-angle: 45deg; }
.gallery .tile:nth-child(2) { --gallery-angle: -45deg; }
.gallery .tile:nth-child(3) { --gallery-angle: 0deg; }
.gallery .tile:nth-child(4) { --gallery-angle: 90deg; }
.gallery .tile:nth-child(5) { --gallery-angle: -30deg; }
.gallery .tile:nth-child(6) { --gallery-angle: 60deg; }
.gallery .tile:nth-child(7) { --gallery-angle: 30deg; }
.gallery .tile:nth-child(8) { --gallery-angle: -60deg; }
.gallery .tile__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 236, 222, 0.7);
  z-index: 2;
}
.gallery .tile__big {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--c-yellow);
  z-index: 2;
}
.gallery .tile__play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--c-yellow);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: all 0.2s;
}
.gallery .tile:hover .tile__play {
  background: var(--c-yellow);
}
.gallery .tile__play::before {
  content: "▶";
  color: var(--c-yellow);
  font-size: 12px;
}
.gallery .tile:hover .tile__play::before {
  color: var(--c-ink);
}
.gallery .tile.playing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 214, 10, 0.18) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: tileShine 1.4s linear infinite;
}
@keyframes tileShine {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

/* Lightbox */
.lbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 60px;
  cursor: pointer;
}
.lbox__frame {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: var(--c-ink-2);
  border: 1px solid var(--c-yellow);
  overflow: hidden;
  cursor: default;
}
.lbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--c-yellow);
  border: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  color: var(--c-ink);
}
.lbox__counter {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--c-yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  z-index: 2;
}
.lbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 214, 10, 0.18);
  border: 1px solid var(--c-yellow);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--c-yellow);
  font-family: var(--font-display);
  font-size: 20px;
}
.lbox__nav:hover {
  background: var(--c-yellow);
  color: var(--c-ink);
}
.lbox__nav--prev { left: 16px; }
.lbox__nav--next { right: 16px; }
.lbox__content {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 214, 10, 0.06) 0 16px,
    rgba(255, 214, 10, 0.14) 16px 17px
  );
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--c-yellow);
  font-size: 80px;
  text-transform: uppercase;
}

/* Characters */
.chars {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 16px;
  scrollbar-color: var(--c-yellow) transparent;
}
.chars > .char {
  flex: 0 0 220px;
  aspect-ratio: 3/4;
  background: var(--c-ink-2);
  border: 1px solid rgba(255, 214, 10, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.chars > .char:hover {
  transform: translateY(-4px);
  border-color: var(--c-yellow);
}
.chars > .char::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -20deg,
    rgba(255, 214, 10, 0.05) 0 12px,
    rgba(255, 214, 10, 0.12) 12px 13px
  );
}
.char__num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--c-yellow);
}
.char__big {
  position: absolute;
  top: 24px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255, 214, 10, 0.6);
}
.char__meta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
}
.char__name {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  color: var(--c-sand);
}
.char__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-top: 4px;
}

/* Crossplay */
.xplay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.xplay__diag {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.xplay__core {
  width: 140px;
  height: 140px;
  background: var(--c-yellow);
  color: var(--c-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  text-align: center;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  z-index: 2;
  transform: rotate(-4deg);
}
.xplay__core small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-top: 6px;
  opacity: 0.7;
}
.xplay__orbit {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: 0.25;
  animation: spin 30s linear infinite;
}
.xplay__orbit2 {
  position: absolute;
  width: 60%;
  height: 60%;
  border: 1px dashed currentColor;
  border-radius: 50%;
  opacity: 0.4;
  animation: spin 18s linear infinite reverse;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.xplay__node {
  position: absolute;
  padding: 10px 14px;
  background: var(--c-ink);
  color: var(--c-yellow);
  border: 1px solid var(--c-yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.xplay__node--1 { top: 8%; left: 50%; transform: translateX(-50%); }
.xplay__node--2 { bottom: 14%; left: 8%; }
.xplay__node--3 { bottom: 14%; right: 8%; }

/* Community */
.community {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.community__card {
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.community__card::after {
  content: "S";
  position: absolute;
  right: -40px;
  bottom: -100px;
  font-family: var(--font-display);
  font-size: 380px;
  color: rgba(10, 10, 11, 0.08);
  line-height: 0.8;
}
.community__title {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.9;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.community__body {
  font-size: 17px;
  max-width: 460px;
  line-height: 1.5;
  margin: 0 0 32px;
}
.community__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.community__stat {
  background: var(--c-ink);
  color: var(--c-sand);
  padding: 24px 24px 22px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.community__stat__k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow);
}
.community__stat__v {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  margin-top: 12px;
}

/* Email */
.email {
  background: var(--c-ink);
  color: var(--c-sand);
  padding: 80px 80px;
  border-top: 1px solid rgba(255, 214, 10, 0.18);
  border-bottom: 1px solid rgba(255, 214, 10, 0.18);
  position: relative;
}
.email__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.email__title {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.email__title em {
  color: var(--c-yellow);
  font-style: normal;
}
.email__sub {
  font-size: 15px;
  opacity: 0.7;
  margin: 0 0 28px;
}
.email__form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  background: var(--c-ink-2);
  border: 1px solid rgba(255, 214, 10, 0.4);
}
.email__input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  color: var(--c-sand);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.email__input::placeholder {
  color: rgba(244, 236, 222, 0.4);
}
.email__button {
  background: var(--c-yellow);
  color: var(--c-ink);
  border: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 28px;
  cursor: pointer;
  font-size: 14px;
}
.email__button:hover {
  background: var(--c-sand);
}
.email__fine {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.4;
  text-transform: uppercase;
}
.email__success {
  font-family: var(--font-display);
  color: var(--c-yellow);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 18px 0;
}

/* Press */
.press {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press__card {
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 32px 28px;
  border: 1px solid currentColor;
  position: relative;
}
.press__quote {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.press__source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  padding-top: 16px;
}
.press__name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.press__score {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-hot);
}

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid currentColor;
  position: relative;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--c-hot);
  border-radius: 50%;
}
.roadmap__col {
  border-right: 1px solid currentColor;
  padding: 24px 24px 28px;
}
.roadmap__col:last-child {
  border-right: 0;
}
.roadmap__col[data-now="true"] {
  background: var(--c-yellow);
  color: var(--c-ink);
}
.roadmap__when {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.roadmap__when .badge {
  background: var(--c-hot);
  color: var(--c-sand);
  padding: 2px 8px;
  font-size: 9px;
}
.roadmap__head {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.roadmap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}
.roadmap__list li {
  padding: 8px 0;
  border-bottom: 1px dashed currentColor;
  display: flex;
  gap: 10px;
}
.roadmap__list li::before {
  content: "→";
  flex-shrink: 0;
}
.roadmap__list li:last-child {
  border-bottom: 0;
}

/* FAQ */
.faq__item {
  border-bottom: 1px solid currentColor;
  padding: 24px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__q {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}
.faq__plus {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--c-hot);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  transition: transform 0.2s;
}
.faq__item[open] .faq__plus {
  transform: rotate(45deg);
}
.faq__a {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.78;
  max-width: 720px;
}

/* Footer */
.foot {
  background: var(--c-ink);
  color: var(--c-sand);
  padding: 80px 80px 40px;
  position: relative;
  overflow: hidden;
}
.foot__mega {
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 260px);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--c-yellow);
  margin: 0 0 56px;
  text-align: center;
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.foot__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin: 0 0 16px;
}
.foot__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__col a {
  color: rgba(244, 236, 222, 0.7);
  text-decoration: none;
  font-size: 14px;
}
.foot__col a:hover {
  color: var(--c-yellow);
}
.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

/* Sticky buy bar */
.stickybuy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-yellow);
  color: var(--c-ink);
  display: flex;
  align-items: center;
  padding: 14px 24px;
  z-index: 60;
  transform: translateY(100%);
  transition: transform 0.3s;
  border-top: 2px solid var(--c-ink);
}
.stickybuy.show {
  transform: translateY(0);
}
.stickybuy__brand {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.stickybuy__price {
  font-family: var(--font-display);
  font-size: 22px;
  margin-left: 20px;
  color: var(--c-hot);
}
.stickybuy__plats {
  display: flex;
  gap: 0;
  margin-left: auto;
  margin-right: 16px;
}
.stickybuy__plat {
  padding: 8px 14px;
  background: rgba(10, 10, 11, 0.08);
  border: 1px solid rgba(10, 10, 11, 0.18);
  border-right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.stickybuy__plat:last-child {
  border-right: 1px solid rgba(10, 10, 11, 0.18);
}
.stickybuy__plat[aria-selected="true"] {
  background: var(--c-ink);
  color: var(--c-yellow);
}
.stickybuy__cta {
  background: var(--c-ink);
  color: var(--c-yellow);
  font-family: var(--font-display);
  font-size: 14px;
  padding: 12px 22px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Pitch annotations */
.anno {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-hot);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 220px;
  line-height: 1.4;
}
.anno__num {
  background: var(--c-hot);
  color: var(--c-sand);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  flex-shrink: 0;
}
.anno__text {
  background: rgba(10, 10, 11, 0.92);
  color: var(--c-sand);
  padding: 6px 10px;
  border: 1px solid var(--c-hot);
}

/* Animated entry helpers */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideR {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.hero__copy > * {
  animation: slideUp 0.8s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.28s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.38s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.48s; }
.hero__keyart {
  animation: scaleIn 0.9s 0.2s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero__pricetag {
  animation: scaleIn 0.6s 0.7s cubic-bezier(.2,.7,.2,1) backwards;
}

/* Responsive — narrow */
.lp[data-screen="tablet"] .hero__inner,
.lp[data-screen="mobile"] .hero__inner,
.lp[data-screen="tablet"] .modes,
.lp[data-screen="mobile"] .modes,
.lp[data-screen="tablet"] .community,
.lp[data-screen="mobile"] .community,
.lp[data-screen="tablet"] .xplay,
.lp[data-screen="mobile"] .xplay {
  grid-template-columns: 1fr;
}
.lp[data-screen="mobile"] .feat,
.lp[data-screen="tablet"] .feat {
  grid-template-columns: 1fr 1fr;
}
.lp[data-screen="mobile"] .feat {
  grid-template-columns: 1fr;
}
.lp[data-screen="mobile"] .roadmap,
.lp[data-screen="tablet"] .roadmap {
  grid-template-columns: 1fr 1fr;
}
.lp[data-screen="mobile"] .roadmap {
  grid-template-columns: 1fr;
}
.lp[data-screen="mobile"] .press,
.lp[data-screen="tablet"] .press {
  grid-template-columns: 1fr;
}
.lp[data-screen="mobile"] .gallery {
  grid-template-columns: 1fr 1fr;
}
.lp[data-screen="mobile"] .lp-section,
.lp[data-screen="mobile"] .hero,
.lp[data-screen="mobile"] .email,
.lp[data-screen="mobile"] .foot {
  padding-left: 20px;
  padding-right: 20px;
}
.lp[data-screen="mobile"] .trailer {
  margin-left: 20px;
  margin-right: 20px;
}
.lp[data-screen="mobile"] .hero__pricetag {
  right: 20px;
  top: 16px;
  padding: 8px 12px;
  transform: rotate(8deg) scale(0.72);
  transform-origin: top right;
}
.lp[data-screen="mobile"] .hero__pricetag .big {
  font-size: 22px;
}
.lp[data-screen="tablet"] .hero__pricetag {
  right: 32px;
  top: 20px;
  padding: 10px 14px;
  transform: rotate(8deg) scale(0.85);
  transform-origin: top right;
}
.lp[data-screen="tablet"] .hero__pricetag .big {
  font-size: 24px;
}
.lp[data-screen="mobile"] .lp-nav {
  padding: 12px 20px;
}
.lp[data-screen="mobile"] .lp-nav__links {
  display: none;
}
.lp[data-screen="mobile"] .modes__panel {
  grid-template-columns: 1fr;
}
.lp[data-screen="mobile"] .foot__grid {
  grid-template-columns: 1fr 1fr;
}

/* Mobile hero title — clamp uses viewport vw, which doesn't account for
   the 390-wide artboard. Force a fitted size + tighter .smash chrome so
   the title doesn't overflow the artboard. */
.lp[data-screen="mobile"] .hero__title {
  font-size: 54px;
  line-height: 0.88;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.lp[data-screen="mobile"] .hero__title .smash {
  padding: 0 4px;
  text-shadow:
    2px 2px 0 var(--c-hot),
    4px 4px 0 var(--c-ink);
  margin-right: 10px; /* room for the offset hot-pink shadow */
  margin-bottom: 6px;
}
.lp[data-screen="tablet"] .hero__title {
  font-size: 88px;
}

/* TV — bigger */
.lp[data-screen="tv"] {
  font-size: 18px;
}
.lp[data-screen="tv"] .hero {
  min-height: 1100px;
}

/* ── crossplay v2 — live lobby ─────────── */
.xplay2 {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}
.xplay2__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}
.xplay2__platlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid currentColor;
}
.xplay2__platlist li {
  display: grid;
  grid-template-columns: 40px auto 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.2s, padding 0.2s;
  cursor: default;
}
.xplay2__platlist .plat-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 222, 0.45);
  font-weight: 400;
}
.xplay2__platlist li:hover {
  background: rgba(255, 214, 10, 0.06);
  padding-left: 12px;
}
.xplay2__platlist .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-hot);
}
.xplay2__platlist .status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--c-yellow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.xplay2__platlist .status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-yellow);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

/* live lobby */
.lobby {
  background: var(--c-ink-2);
  border: 1px solid rgba(255, 214, 10, 0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.lobby::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 214, 10, 0.03) 0 18px,
    rgba(255, 214, 10, 0.06) 18px 19px
  );
  pointer-events: none;
}
.lobby__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.lobby__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-yellow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lobby__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-hot);
}
.lobby__live::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-hot);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
.lobby__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(244, 236, 222, 0.55);
  text-transform: uppercase;
}
.lobby__match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 214, 10, 0.12);
  border-bottom: 1px solid rgba(255, 214, 10, 0.12);
  position: relative;
}
.lobby__team {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lobby__team--away {
  align-items: flex-end;
}
.lobby__player {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-sand);
}
.lobby__player .plat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 2px 6px;
  background: rgba(255, 214, 10, 0.15);
  color: var(--c-yellow);
  border: 1px solid rgba(255, 214, 10, 0.35);
}
.lobby__player .ping {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(244, 236, 222, 0.5);
}
.lobby__score {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-yellow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lobby__score small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(244, 236, 222, 0.5);
}
.lobby__feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244, 236, 222, 0.7);
  letter-spacing: 0.04em;
  position: relative;
}
.lobby__feed-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  opacity: 0;
  animation: feedIn 0.4s forwards;
}
@keyframes feedIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
.lobby__feed-row .t {
  color: var(--c-yellow);
  letter-spacing: 0.14em;
  flex-shrink: 0;
}
.lobby__feed-row .ev {
  color: rgba(244, 236, 222, 0.85);
}
.lobby__feed-row .ev em {
  font-style: normal;
  color: var(--c-yellow);
}
.lobby__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 4px;
  position: relative;
}
.lobby__chip {
  background: rgba(10, 10, 11, 0.65);
  padding: 10px 12px;
  border: 1px solid rgba(255, 214, 10, 0.18);
}
.lobby__chip .k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(244, 236, 222, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.lobby__chip .v {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-yellow);
  line-height: 1;
}

/* lobby v2 — cleaner roster, no team-vs-team score block */
.lobby--v2 .lobby__chips {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}
.lobby__roster {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.lobby__roster li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(10, 10, 11, 0.5);
  border-left: 2px solid rgba(255, 214, 10, 0.25);
  transition: border-color 0.2s, background 0.2s;
}
.lobby__roster li:hover {
  border-left-color: var(--c-yellow);
  background: rgba(255, 214, 10, 0.06);
}
.lobby__roster li.vs {
  display: flex;
  justify-content: center;
  background: transparent;
  border-left: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--c-hot);
  padding: 8px 0;
  text-transform: uppercase;
}
.lobby__roster .plat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  background: rgba(255, 214, 10, 0.12);
  color: var(--c-yellow);
  border: 1px solid rgba(255, 214, 10, 0.35);
  justify-self: start;
}
.lobby__roster .name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--c-sand);
  text-transform: uppercase;
}
.lobby__roster .ping {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(244, 236, 222, 0.55);
}
.lobby__roster .ping i {
  font-style: normal;
  opacity: 0.55;
  margin-left: 2px;
}

/* responsive */
.lp[data-screen="tablet"] .xplay2,
.lp[data-screen="mobile"] .xplay2,
.lp.is-site .xplay2 {
  /* default sets above */
}
@media (max-width: 1080px) {
  .lp.is-site .xplay2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 720px) {
  .lp.is-site .lobby__chips {
    grid-template-columns: 1fr 1fr;
  }
  .lp.is-site .lobby__match {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lp.is-site .lobby__team--away {
    align-items: flex-start;
  }
}

/* ── reveal-on-scroll initial states (used by GSAP `from` immediateRender) ── */
/* Initial state — JS-driven animations toggle the .in class which removes the
   hidden state instantly. The actual motion is applied via Element.animate()
   from useScrollReveals so we don't depend on CSS transitions (which can stall
   under heavy re-rendering). */
.reveal-up,
.reveal-fade,
.reveal-stagger > * {
  opacity: 0;
}
.reveal-up,
.reveal-stagger > * {
  transform: translateY(40px);
}
.reveal-up.in,
.reveal-fade.in,
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-chars > .char {
  display: inline-block;
}
/* If animations are turned off entirely, force visible. */
.lp.is-site[data-animations="off"] .reveal-up,
.lp.is-site[data-animations="off"] .reveal-fade,
.lp.is-site[data-animations="off"] .reveal-stagger > * {
  opacity: 1;
  transform: none;
}

/* Three.js hero canvas slot */
.hero__three {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.hero__three canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
/* Don't force position on every hero child — only the inner needs to sit
   above the three.js canvas. Other absolute children (bgline, halftone,
   pricetag, ticker) keep their original `position: absolute`. */
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__ticker { z-index: 2; }
.hero__pricetag { z-index: 3; }

/* Lottie slot */
.lottie-slot {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

/* ── Real-asset overrides — Spikeball Smash brand imagery ── */
.lp-nav__logo {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.lp-nav__brand--img {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-sand);
  text-decoration: none;
  flex-shrink: 0;
}
.lp-nav__brand--img .by {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 222, 0.45);
  white-space: nowrap;
}

/* Hero key art with real image */
.hero__keyart--real {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--c-ink-2);
  border: 1px solid rgba(255, 214, 10, 0.15);
  overflow: hidden;
}
.hero__keyart--real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__keyart--real::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0) 60%,
    rgba(10, 10, 11, 0.55) 100%
  );
  pointer-events: none;
}
.hero__keyart--real__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-yellow);
  background: rgba(10, 10, 11, 0.65);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__keyart--real__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-yellow);
  border-radius: 50%;
}

/* Gallery tiles with real screenshots */
.tile--img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--c-ink-2);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 10, 0.15);
  transition: transform 0.25s ease;
}
.tile--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tile--img:hover {
  transform: translateY(-2px);
  border-color: var(--c-yellow);
}
.tile--img:hover img {
  transform: scale(1.06);
}
.tile--img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.7));
  pointer-events: none;
}
.tile--img .tile__label {
  z-index: 2;
}
.tile--img .tile__big {
  z-index: 2;
  background: rgba(10, 10, 11, 0.65);
  padding: 2px 8px;
}
.tile--img .tile__play {
  z-index: 2;
}

/* Modes visual with real screen */
.modes__visual--real {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-ink-2);
}
.modes__visual--real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.modes__visual--real::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.75));
  pointer-events: none;
}
.modes__visual--real .modes__visual__label {
  z-index: 2;
  background: rgba(10, 10, 11, 0.6);
  padding: 4px 8px;
}

/* Lightbox with real image */
.lbox__content--real {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lbox__content--real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Community card with imagery backdrop */
.community__card--real {
  position: relative;
  isolation: isolate;
}
.community__card--real .community__card__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  mix-blend-mode: multiply;
  overflow: hidden;
}
.community__card--real .community__card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.community__card--real > * {
  position: relative;
  z-index: 1;
}

/* Footer logo */
.foot__logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.trailer__mute {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 11, 0.75);
  border: 1px solid var(--c-yellow);
  color: var(--c-yellow);
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 0;
  transition: background 0.15s;
}
.trailer__mute:hover {
  background: var(--c-yellow);
}

/* Trailer slot used as a static marketing banner */
.trailer--banner {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--c-ink);
  border: 1px solid rgba(255, 214, 10, 0.18);
}
.trailer__banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero key art slot doubling as the trailer video — native 16:9, no cropping.
   Pulled up so the price tag floats over its top-right corner. */
.hero__keyart--video {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--c-ink-2);
  border: 1px solid rgba(255, 214, 10, 0.2);
  margin-top: -16px;
  align-self: start;
}
.hero__keyart--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--c-ink);
}
.hero__keyart--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, transparent 32%, rgba(10,10,11,0.55) 80%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease;
}
.hero__keyart--video.is-playing::after {
  opacity: 0;
}
.hero__keyart--video .hero__keyart--real__tag,
.hero__keyart--video .hero__play,
.hero__keyart--video .hero__video__cta {
  z-index: 2;
}
.hero__keyart--video .hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  background: var(--c-yellow);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.25s ease;
  box-shadow: 0 0 0 6px rgba(255, 214, 10, 0.2), 0 0 0 12px rgba(255, 214, 10, 0.08);
}
.hero__keyart--video .hero__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.hero__keyart--video .hero__play svg {
  width: 36px;
  height: 36px;
  fill: var(--c-ink);
  margin-left: 6px;
}
.hero__keyart--video.is-playing .hero__play {
  opacity: 0;
  pointer-events: none;
}
.hero__video__cta {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow);
  background: rgba(10, 10, 11, 0.55);
  padding: 6px 10px;
}

/* ── Real viewport responsiveness (for standalone site) ──
   Mirrors the data-screen overrides so the same CSS works on actual phones/tablets.
   Scoped to .lp.is-site so it only applies on standalone pages, not in design-canvas
   artboards (where each artboard has its own fixed width). */

@media (max-width: 1080px) {
  .lp.is-site .hero__inner,
  .lp.is-site .modes,
  .lp.is-site .community,
  .lp.is-site .xplay {
    grid-template-columns: 1fr;
  }
  .lp.is-site .feat,
  .lp.is-site .roadmap,
  .lp.is-site .press {
    grid-template-columns: 1fr 1fr;
  }
  .lp.is-site .modes__panel {
    grid-template-columns: 1fr;
  }
  .lp.is-site .hero {
    min-height: auto;
  }
  .lp.is-site .hero__keyart {
    aspect-ratio: auto;
    height: 320px;
    max-height: 45vh;
  }
  .lp.is-site .hero__title {
    font-size: clamp(64px, 11vw, 120px);
  }
  .lp.is-site .sec-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp.is-site .sec-head__meta {
    text-align: left;
  }
}

@media (max-width: 1080px) and (min-width: 721px) {
  .lp.is-site .hero__pricetag {
    right: 32px;
    top: 20px;
    padding: 10px 14px;
    transform: rotate(8deg) scale(0.85);
    transform-origin: top right;
  }
  .lp.is-site .hero__pricetag .big {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .lp.is-site .lp-section,
  .lp.is-site .hero,
  .lp.is-site .email,
  .lp.is-site .foot {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lp.is-site .hero {
    padding-top: 48px;
    padding-bottom: 72px;
    min-height: auto;
  }
  .lp.is-site .trailer {
    margin-left: 20px;
    margin-right: 20px;
  }
  .lp.is-site .hero__pricetag {
    right: 16px;
    top: 14px;
    padding: 8px 12px;
    transform: rotate(8deg) scale(0.7);
    transform-origin: top right;
  }
  .lp.is-site .hero__pricetag .big {
    font-size: 22px;
  }
  .lp.is-site .hero__pricetag .small {
    font-size: 8px;
  }
  .lp.is-site .lp-nav {
    padding: 12px 20px;
  }
  .lp.is-site .lp-nav__links {
    display: none;
  }
  .lp.is-site .feat,
  .lp.is-site .roadmap,
  .lp.is-site .press {
    grid-template-columns: 1fr;
  }
  .lp.is-site .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .lp.is-site .foot__grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp.is-site .hero__title {
    font-size: clamp(56px, 14vw, 96px);
  }
  .lp.is-site .sec-head__title {
    font-size: clamp(36px, 9vw, 64px);
  }
  .lp.is-site .platform-tab {
    min-width: 100px;
    padding: 10px 12px;
  }
  .lp.is-site .stickybuy {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
  }
  .lp.is-site .stickybuy__plats {
    margin-left: 0;
    order: 3;
    width: 100%;
  }
  .lp.is-site .stickybuy__plat {
    flex: 1;
  }
  .lp.is-site .community__title,
  .lp.is-site .email__title,
  .lp.is-site .foot__mega {
    font-size: clamp(40px, 11vw, 72px);
  }
  .lp.is-site .foot__mega {
    font-size: clamp(64px, 22vw, 180px);
  }
}
