:root {
  --bg: #05070d;
  --bg-2: #090d16;
  --panel: #0e1422;
  --panel-strong: #121b2d;
  --line: rgba(0, 229, 255, 0.34);
  --line-hot: rgba(255, 45, 137, 0.44);
  --text: #f5fbff;
  --muted: #aab7c8;
  --cyan: #00e5ff;
  --green: #00ff88;
  --pink: #ff2d89;
  --yellow: #ffea00;
  --red: #ff4b5c;
  --shadow-cyan: 0 0 28px rgba(0, 229, 255, 0.34);
  --shadow-pink: 0 0 30px rgba(255, 45, 137, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 45, 137, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 15% 5%, rgba(255, 45, 137, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(0, 229, 255, 0.12), transparent 22rem),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  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: 50;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 8px
  );
  mix-blend-mode: overlay;
  opacity: 0.38;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--cyan);
  color: #001018;
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.2rem);
  border-bottom: 1px solid rgba(0, 229, 255, 0.24);
  background: rgba(5, 7, 13, 0.86);
  backdrop-filter: blur(14px);
}

.brand-lockup,
.header-actions,
.nav-links,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 0.8rem;
  min-width: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-lockup img {
  width: clamp(2.85rem, 4.5vw, 3.35rem);
  height: clamp(2.85rem, 4.5vw, 3.35rem);
  flex: 0 0 auto;
}

.brand-lockup span {
  font-size: 0.95rem;
}

.nav-links {
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
  text-shadow: var(--shadow-cyan);
}

.header-actions {
  justify-content: flex-end;
  gap: 0.8rem;
}

.language-switcher {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.lang-button {
  min-width: 2.25rem;
  min-height: 2rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--cyan);
  color: #001018;
}

.header-cta,
.ghost-cta,
.play-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid transparent;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 1rem;
  background: var(--green);
  color: #00130b;
}

.header-cta:hover,
.play-cta:hover,
.ghost-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem clamp(1rem, 4vw, 4rem) 4rem;
  background:
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 45, 137, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 24%, rgba(0, 229, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 78% 34%, rgba(255, 45, 137, 0.1), transparent 24rem),
    linear-gradient(180deg, #060912 0%, #05070d 72%, #070b12 100%);
  background-size: 74px 74px, 74px 74px, auto, auto, auto;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.44) 44%, rgba(5, 7, 13, 0.78)),
    linear-gradient(0deg, var(--bg), transparent 52%);
}

.speed-lines {
  position: absolute;
  inset: auto 0 12% 0;
  z-index: -1;
  height: 30vh;
  overflow: hidden;
  pointer-events: none;
}

.speed-lines span {
  position: absolute;
  right: -8rem;
  width: 62vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink));
  transform: skewY(-8deg);
  animation: speed-line 3.6s linear infinite;
}

.speed-lines span:nth-child(2) {
  top: 34%;
  width: 44vw;
  animation-delay: -1.2s;
}

.speed-lines span:nth-child(3) {
  top: 68%;
  width: 72vw;
  animation-delay: -2.4s;
}

@keyframes speed-line {
  from {
    transform: translateX(0) skewY(-8deg);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  to {
    transform: translateX(-115vw) skewY(-8deg);
    opacity: 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  min-height: calc(100svh - 11rem);
}

.hero-copy {
  max-width: 52rem;
  min-width: 0;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 0.85rem;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-logo {
  width: clamp(8rem, 18vw, 14rem);
  margin: 0 0 0.8rem -1rem;
}

.hero-badge {
  width: clamp(11.5rem, 22vw, 18rem);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 0 1rem -1.1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 14.8ch;
  font-size: clamp(3.2rem, 8.8vw, 8.2rem);
  font-weight: 1000;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 0 34px rgba(0, 229, 255, 0.28);
}

p {
  overflow-wrap: break-word;
}

.hero-subtitle {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: #dce8f5;
  font-size: clamp(1.02rem, 2vw, 1.35rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.play-cta {
  gap: 0.8rem;
  padding: 0.95rem 1.15rem;
  background: linear-gradient(90deg, var(--green), #a8ff00);
  color: #00130b;
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.18), 0 16px 44px rgba(0, 255, 136, 0.18);
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 0.43rem solid transparent;
  border-bottom: 0.43rem solid transparent;
  border-left: 0.7rem solid #00130b;
}

.ghost-cta {
  padding: 0.95rem 1.05rem;
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(0, 229, 255, 0.06);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 42rem;
  margin: 2rem 0 0;
  padding: 0;
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.18);
}

.hero-stats div {
  padding: 1rem;
  background: rgba(5, 7, 13, 0.76);
}

.hero-stats dt {
  color: var(--cyan);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  font-weight: 1000;
}

.hero-stats dd {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-panel {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(255, 45, 137, 0.42);
  background: linear-gradient(180deg, rgba(18, 27, 45, 0.88), rgba(5, 7, 13, 0.84));
  box-shadow: var(--shadow-pink);
}

.mission-panel::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 42%;
  height: 4px;
  content: "";
  background: var(--pink);
  box-shadow: var(--shadow-pink);
}

.mission-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.mission-panel ol {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #dce8f5;
}

.proof-strip,
.showcase,
.arsenal,
.garage,
.worlds,
.final-cta,
.faq {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.28), transparent);
}

.proof-item {
  min-height: 9rem;
  padding: 1.2rem;
  background: var(--bg-2);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-bottom: 1px solid rgba(255, 45, 137, 0.18);
}

.proof-item strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
}

.section-heading {
  max-width: 54rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading.compact {
  max-width: 44rem;
}

.section-heading h2,
.garage-copy h2,
.final-card h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.garage-copy p {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.gameplay-frame {
  position: relative;
  overflow: visible;
  max-width: 62rem;
  margin: 0 auto;
  border: 1px solid rgba(0, 229, 255, 0.36);
  background: #000;
  box-shadow: var(--shadow-cyan);
}

.gameplay-frame::before,
.garage-shot::before {
  position: absolute;
  inset: -0.6rem;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 45, 137, 0.32);
  transform: translate(0.8rem, 0.8rem);
}

.gameplay-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.arsenal {
  background:
    linear-gradient(180deg, rgba(255, 45, 137, 0.06), transparent),
    var(--bg-2);
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 76rem;
  margin: 0 auto;
}

.power-card {
  min-height: 18rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(18, 27, 45, 0.86), rgba(8, 11, 20, 0.9));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.power-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: var(--shadow-cyan);
}

.power-icon {
  display: block;
  width: clamp(3.75rem, 6vw, 5.5rem);
  height: clamp(3.75rem, 6vw, 5.5rem);
  margin-bottom: 2.4rem;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.24)) drop-shadow(0 0 22px rgba(255, 45, 137, 0.16));
}

.power-card h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
}

.power-card p {
  color: var(--muted);
}

.garage {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.9fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.garage-copy {
  max-width: 42rem;
}

.garage-shot {
  position: relative;
  max-width: 22rem;
  margin-inline: auto;
  border: 1px solid rgba(0, 255, 136, 0.32);
  background: #02040a;
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.15);
}

.garage-shot img {
  display: block;
  max-width: 100%;
  height: auto;
}

.world-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1rem;
  max-width: 78rem;
  margin: 0 auto;
}

.world-tile {
  position: relative;
  overflow: hidden;
  min-height: clamp(15.5rem, 24vw, 17.5rem);
  padding: 1.25rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.08), transparent 45%),
    linear-gradient(180deg, var(--panel-strong), rgba(5, 7, 13, 0.95));
}

.world-tile::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: var(--world-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.36;
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.04);
}

.world-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.34), rgba(5, 7, 13, 0.9) 72%),
    linear-gradient(90deg, rgba(0, 229, 255, 0.14), transparent 52%);
}

.world-night {
  --world-bg: url("/landing-assets/world-night.webp");
}

.world-dawn {
  --world-bg: url("/landing-assets/world-dawn.webp");
}

.world-day {
  --world-bg: url("/landing-assets/world-day.webp");
}

.world-tile span {
  position: relative;
  z-index: 2;
  color: var(--cyan);
  font-size: 4rem;
  font-weight: 1000;
  line-height: 1;
  opacity: 0.78;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.36);
}

.world-dawn {
  border-color: rgba(0, 255, 136, 0.34);
}

.world-day {
  border-color: var(--line-hot);
}

.world-tile h3 {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  font-size: 1.55rem;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.world-tile p {
  position: relative;
  z-index: 2;
  color: #d7e8f8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.final-cta {
  background: linear-gradient(180deg, var(--bg), #02040a);
}

.final-card {
  display: grid;
  justify-items: center;
  max-width: 62rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(0, 229, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 45, 137, 0.08), rgba(0, 229, 255, 0.08)),
    var(--panel);
  text-align: center;
}

.final-mark {
  width: clamp(4.5rem, 8vw, 6rem);
  height: clamp(4.5rem, 8vw, 6rem);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.36)) drop-shadow(0 0 22px rgba(255, 45, 137, 0.24));
}

.final-card .play-cta {
  margin-top: 1.4rem;
}

.faq {
  background: var(--bg-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 68rem;
  margin: 0 auto;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel);
}

summary {
  min-height: 4.25rem;
  padding: 1.1rem;
  color: var(--text);
  font-weight: 950;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.2rem;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--muted);
  background: #02040a;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand {
  min-width: 0;
}

.footer-brand img {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.22));
}

.site-footer a {
  color: var(--cyan);
}

.footer-share {
  border: 1px solid rgba(0, 229, 255, 0.28);
  padding: 0.45rem 0.7rem;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer a:hover,
.footer-share:hover {
  color: var(--green);
  border-color: rgba(0, 255, 136, 0.48);
}

.share-toast {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 30;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 229, 255, 0.45);
  background: rgba(2, 4, 10, 0.94);
  color: var(--ice);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.18);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.share-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .garage {
    grid-template-columns: 1fr;
  }

  .mission-panel {
    max-width: 34rem;
  }

  .proof-strip,
  .power-grid,
  .world-track {
    grid-template-columns: 1fr;
  }

  .garage-shot {
    max-width: 16rem;
  }

}

@media (max-width: 680px) {
  .site-header {
    padding: 0.65rem 0.8rem;
  }

  .brand-lockup span {
    display: none;
  }

  .brand-lockup img {
    width: 2.55rem;
    height: 2.55rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .language-switcher {
    display: none;
  }

  .header-cta {
    min-height: 2.35rem;
    padding-inline: 0.8rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-logo {
    margin-left: -0.6rem;
  }

  .hero-badge {
    width: min(82vw, 17rem);
    margin-left: -0.8rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 3.2rem);
    letter-spacing: -0.01em;
    text-wrap: pretty;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-row,
  .play-cta,
  .ghost-cta {
    width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gameplay-frame {
    max-width: calc(100vw - 2rem);
    margin-inline: auto;
  }

  .gameplay-frame::before {
    inset: -0.35rem;
    transform: translate(0.45rem, 0.45rem);
  }

  .gameplay-frame img {
    width: 100%;
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .garage-shot {
    max-width: 14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
