:root {
  --ink: #17202d;
  --ink-2: #4d5662;
  --slate: #303946;
  --slate-2: #58616d;
  --paper: #fff9d8;
  --cream: #fffdf0;
  --surface: #ffffff;
  --orange: #f45a1f;
  --orange-2: #ff834d;
  --amber: #ffc93d;
  --lime: #c8fb58;
  --blue: #438fe3;
  --line: rgba(23, 32, 45, 0.14);
  --shadow: 0 18px 48px rgba(23, 32, 45, 0.16);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--cream) 0%, #ffe8cf 48%, var(--cream) 100%);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 253, 240, 0.92);
  border-bottom: 1px solid rgba(23, 32, 45, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 950;
}

.brand img {
  width: 78px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(244, 90, 31, 0.18));
}

.brand.compact img {
  width: 66px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.nav-menu a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--orange);
  background: rgba(244, 90, 31, 0.09);
}

.nav-cta {
  gap: 8px;
  color: var(--cream);
  background: var(--ink);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--orange);
}

.nav-cta svg,
.nav-toggle svg,
.button svg,
.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height) - 56px);
  overflow: hidden;
  color: var(--cream);
  background: #0c1712;
}

.play-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.play-canvas {
  opacity: 0.8;
}

.hero-overlay {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 23, 18, 0.96) 0%, rgba(12, 23, 18, 0.82) 46%, rgba(12, 23, 18, 0.3) 100%),
    linear-gradient(180deg, rgba(244, 90, 31, 0.28), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100dvh - var(--header-height) - 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 50px;
  padding: 42px 0 34px;
}

.hero-copy {
  max-width: 650px;
}

.hero-logo {
  width: min(230px, 58vw);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 20px 34px rgba(244, 90, 31, 0.22));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.8rem;
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.48rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-lede {
  margin-bottom: 28px;
  color: rgba(255, 253, 240, 0.84);
  font-size: 1.14rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 34px rgba(200, 251, 88, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d5ff75;
}

.button-ghost {
  color: var(--cream);
  border-color: rgba(255, 253, 240, 0.28);
  background: rgba(255, 253, 240, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 253, 240, 0.16);
}

.hero-gallery {
  position: relative;
  display: grid;
  min-height: 500px;
  justify-items: end;
  align-items: center;
}

.phone-shot,
.screen-card,
.mini-shot {
  margin: 0;
}

.phone-shot {
  overflow: hidden;
  padding: 8px;
  border: 8px solid #111820;
  border-radius: 34px;
  background: var(--cream);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: contain;
}

.main-shot {
  width: min(250px, 64vw);
  aspect-ratio: 508 / 1100;
  transform: rotate(2deg);
}

.side-shot {
  position: absolute;
  left: 2%;
  bottom: 10px;
  width: min(150px, 34vw);
  aspect-ratio: 393 / 852;
  transform: rotate(-5deg);
  padding: 6px;
  border-width: 6px;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.proof-band {
  background: var(--ink);
  color: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 253, 240, 0.14);
}

.proof-grid div {
  min-height: 130px;
  padding: 26px 22px;
  background: var(--ink);
}

.proof-grid strong {
  display: block;
  color: var(--lime);
  font-size: 2rem;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 240, 0.72);
}

.section,
.split-section,
.showcase-section,
.language-section {
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 1.06rem;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mode-card {
  min-height: 260px;
  padding: 24px;
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(244, 90, 31, 0.96), rgba(255, 131, 77, 0.82)),
    var(--orange);
  border: 1px solid rgba(23, 32, 45, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(244, 90, 31, 0.16);
}

.mode-card:nth-child(2),
.mode-card:nth-child(4) {
  background:
    linear-gradient(140deg, var(--slate), #6c4b3d);
}

.mode-card:nth-child(3) {
  color: var(--ink);
  background:
    linear-gradient(145deg, #fff7b9, #ffd889);
}

.mode-card.featured {
  color: var(--ink);
  background:
    linear-gradient(145deg, var(--lime), #fff59c);
}

.mode-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 0 10px;
  color: inherit;
  background: rgba(255, 253, 240, 0.22);
  border: 1px solid rgba(255, 253, 240, 0.26);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mode-card.featured .mode-kicker,
.mode-card:nth-child(3) .mode-kicker {
  background: rgba(23, 32, 45, 0.08);
  border-color: rgba(23, 32, 45, 0.12);
}

.mode-card p {
  margin-bottom: 0;
  color: currentColor;
  opacity: 0.82;
}

.split-section {
  color: var(--cream);
  background: var(--slate);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
}

.split-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 240, 0.74);
}

.multiplayer-list {
  display: grid;
  gap: 14px;
}

.multiplayer-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 253, 240, 0.08);
  border: 1px solid rgba(255, 253, 240, 0.14);
  border-radius: var(--radius);
}

.multiplayer-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-weight: 950;
}

.multiplayer-list p {
  margin-bottom: 0;
  color: rgba(255, 253, 240, 0.7);
}

.showcase-section {
  background: var(--cream);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.screen-card {
  overflow: hidden;
  padding: 8px;
  background: #111820;
  border: 1px solid rgba(17, 24, 32, 0.9);
  border-radius: 34px;
  box-shadow: 0 14px 36px rgba(23, 32, 45, 0.1);
}

.screen-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 393 / 852;
  border-radius: 22px;
  object-fit: contain;
  background: var(--cream);
}

.screen-card figcaption {
  min-height: 48px;
  padding: 12px 14px 8px;
  color: var(--cream);
  font-weight: 900;
}

.screen-card.tall {
  margin-top: 44px;
}

.screen-card.wide {
  margin-top: 28px;
}

.rewards-section {
  padding-bottom: 106px;
}

.reward-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 42px;
  align-items: center;
}

.reward-copy {
  display: grid;
  gap: 14px;
}

.reward-block {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(23, 32, 45, 0.08);
}

.reward-block p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.store-stack {
  position: relative;
  min-height: 580px;
}

.mini-shot {
  position: absolute;
  overflow: hidden;
  padding: 8px;
  width: min(320px, 58%);
  aspect-ratio: 508 / 1100;
  border: 8px solid #111820;
  border-radius: 34px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.mini-shot img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: contain;
}

.floating-shot {
  right: 0;
  top: 70px;
  transform: rotate(4deg);
}

.store-stack .mini-shot:first-child {
  left: 0;
  top: 0;
  transform: rotate(-3deg);
}

.language-section {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(67, 143, 227, 0.18), transparent 34%),
    var(--ink);
}

.language-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 36px;
  align-items: center;
}

.language-layout p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 253, 240, 0.72);
}

.language-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 253, 240, 0.08);
  border: 1px solid rgba(255, 253, 240, 0.14);
  border-radius: var(--radius);
}

.language-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 950;
}

.language-card strong {
  font-size: 1.35rem;
  line-height: 1.24;
}

.download-section {
  padding: 78px 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(244, 90, 31, 0.2), transparent 42%),
    var(--slate);
}

.download-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
}

.download-layout h2 {
  max-width: 560px;
}

.download-layout p:not(.eyebrow) {
  color: rgba(255, 253, 240, 0.74);
}

.signup-form {
  padding: 22px;
  background: rgba(255, 253, 240, 0.08);
  border: 1px solid rgba(255, 253, 240, 0.16);
  border-radius: var(--radius);
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 253, 240, 0.9);
  font-weight: 850;
}

.signup-form input {
  flex: 1 1 220px;
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.signup-form input::placeholder {
  color: #7a7a68;
}

.signup-form .button {
  flex: 0 0 auto;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--lime);
  font-weight: 850;
}

.footer {
  padding: 30px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer p {
  margin-bottom: 0;
  color: var(--ink-2);
}

@media (max-width: 1020px) {
  .hero-inner,
  .split-layout,
  .reward-layout,
  .language-layout,
  .download-layout {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    justify-items: center;
  }

  .side-shot {
    left: 8%;
  }

  .mode-grid,
  .screen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-stack {
    min-height: 520px;
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    order: 3;
  }

  .nav-cta {
    justify-self: end;
    order: 2;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2rem;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1140px);
  }

  .site-header {
    --header-height: 68px;
  }

  .brand img {
    width: 64px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: calc(100dvh - var(--header-height) - 56px);
  }

  .hero-inner {
    gap: 28px;
    display: block;
    padding: 34px 0 30px;
  }

  .hero-logo {
    width: 154px;
  }

  h1 {
    font-size: 2.78rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-gallery {
    position: absolute;
    right: 10px;
    bottom: 22px;
    z-index: -1;
    min-height: 0;
    opacity: 0.34;
    pointer-events: none;
  }

  .main-shot {
    width: min(128px, 34vw);
    transform: none;
  }

  .side-shot {
    display: none;
  }

  .proof-grid,
  .mode-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    min-height: 104px;
  }

  .section,
  .split-section,
  .showcase-section,
  .language-section {
    padding: 66px 0;
  }

  .mode-card {
    min-height: 220px;
  }

  .multiplayer-list article {
    grid-template-columns: 1fr;
  }

  .screen-card.tall,
  .screen-card.wide {
    margin-top: 0;
  }

  .store-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mini-shot,
  .floating-shot,
  .store-stack .mini-shot:first-child {
    position: static;
    width: min(300px, 100%);
    justify-self: center;
    transform: none;
  }

  .form-row {
    display: grid;
  }

  .signup-form .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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