:root {
  --paper: #fbfbff;
  --white: #ffffff;
  --navy: #07142f;
  --navy-2: #10234c;
  --ink-soft: #4d5870;
  --line: rgba(7, 20, 47, 0.12);
  --blue: #4d5cff;
  --purple: #7650ff;
  --pink: #f52886;
  --orange: #ff8126;
  --yellow: #ffbd2e;
  --gradient: linear-gradient(110deg, var(--orange) 0%, var(--pink) 46%, var(--blue) 100%);
  --shadow: 0 24px 80px rgba(37, 46, 105, 0.14);
  --radius: 28px;
  --shell: min(1200px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 251, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(7, 20, 47, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 114px;
  height: 66px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
}

.brand img {
  width: 122px;
  height: auto;
  max-width: none;
  margin: -8px -4px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--navy-2);
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 180ms ease;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--white);
  border: 0;
  border-radius: 17px;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 20, 47, 0.16);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 0 18px 32px rgba(7, 20, 47, 0.22);
  background: var(--navy-2);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 0.8rem;
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 20, 47, 0.08);
}

.hero {
  min-height: 760px;
  padding-top: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 189, 46, 0.13), transparent 23%),
    radial-gradient(circle at 82% 13%, rgba(77, 92, 255, 0.12), transparent 27%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--navy-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 30px;
  height: 4px;
  border-radius: 10px;
  background: var(--gradient);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.65rem, 7.2vw, 7.1rem);
}

h2 {
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.gradient-text,
.download h2 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.hero-lede strong {
  color: var(--navy);
}

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

.proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
}

.proof-line span {
  position: relative;
}

.proof-line span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -13px;
  color: var(--pink);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 18px;
  height: 18px;
  top: 20%;
  left: 4%;
  background: var(--orange);
  box-shadow: 30px 22px 0 -5px var(--pink), 13px 52px 0 -3px var(--blue);
  animation: float 4s ease-in-out infinite;
}

.hero-orb-two {
  width: 14px;
  height: 14px;
  right: 6%;
  bottom: 15%;
  background: var(--purple);
  box-shadow: -28px 18px 0 -4px var(--orange), 5px 38px 0 -3px var(--pink);
  animation: float 5s 600ms ease-in-out infinite reverse;
}

.arena-wrap {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
}

.arena-glow {
  position: absolute;
  inset: 8% -10% 4% 4%;
  border-radius: 46% 54% 60% 40%;
  background: var(--gradient);
  opacity: 0.16;
  filter: blur(45px);
  animation: pulse 5s ease-in-out infinite;
}

.arena-card {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(7, 20, 47, 0.06);
  backdrop-filter: blur(15px);
  transform: rotate(1.5deg);
}

.arena-topline,
.recap-head,
.score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 2px 4px 14px;
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(245, 40, 134, 0.13);
}

.shared-screen {
  position: relative;
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  border: 8px solid var(--navy);
  border-radius: 25px;
  background:
    radial-gradient(circle at 75% 28%, rgba(255, 255, 255, 0.25), transparent 10%),
    var(--gradient);
  box-shadow: inset 0 0 40px rgba(7, 20, 47, 0.15);
}

.shared-screen::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -35px;
  bottom: -48px;
  border: 36px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.screen-label,
.mini-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.screen-score {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.screen-score strong {
  font-size: 6rem;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.screen-score span {
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.race-lines {
  position: absolute;
  inset: auto 20px 28px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.race-lines i {
  width: 22%;
  height: 6px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 9px;
  transform: skewX(-28deg);
}

.join-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 8px 4px;
}

.join-row strong {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
}

.mini-label {
  color: var(--pink);
}

.qr {
  position: relative;
  width: 64px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 7px solid var(--white);
  border-radius: 9px;
  background:
    linear-gradient(90deg, var(--navy) 11%, transparent 11% 22%, var(--navy) 22% 34%, transparent 34% 46%, var(--navy) 46% 59%, transparent 59% 72%, var(--navy) 72% 84%, transparent 84%),
    linear-gradient(var(--navy) 12%, transparent 12% 23%, var(--navy) 23% 37%, transparent 37% 51%, var(--navy) 51% 62%, transparent 62% 74%, var(--navy) 74% 87%, transparent 87%),
    var(--white);
  box-shadow: 0 7px 20px rgba(7, 20, 47, 0.13);
}

.qr span {
  position: absolute;
  inset: 20px;
  border: 4px solid var(--white);
  background: var(--navy);
}

.phones {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  width: 94%;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone {
  width: 94px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  border: 7px solid var(--navy);
  border-radius: 25px;
  box-shadow: 0 18px 30px rgba(7, 20, 47, 0.25);
  background: var(--gradient);
}

.phone::before {
  content: "";
  position: absolute;
  top: 7px;
  width: 24px;
  height: 5px;
  border-radius: 10px;
  background: var(--navy);
}

.phone span {
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.phone b {
  font-size: 2.3rem;
  line-height: 1;
}

.phone-a { position: relative; transform: rotate(-10deg) translateY(-5px); background: linear-gradient(145deg, var(--orange), var(--pink)); }
.phone-b { position: relative; transform: rotate(-3deg) translateY(14px); background: linear-gradient(145deg, var(--pink), var(--purple)); }
.phone-c { position: relative; transform: rotate(4deg) translateY(12px); background: linear-gradient(145deg, var(--purple), var(--blue)); }
.phone-d { position: relative; transform: rotate(10deg) translateY(-8px); background: linear-gradient(145deg, var(--blue), #4dc6ff); }

.player-pop {
  position: absolute;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 9px 22px rgba(245, 40, 134, 0.3);
  font-size: 0.78rem;
  font-weight: 950;
  animation: pop 2.8s ease-in-out infinite;
}

.player-pop-one { top: 12%; right: -1%; }
.player-pop-two { top: 32%; left: -3%; animation-delay: 1.4s; background: var(--blue); }

.wow {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.wow::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -100px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.25;
  filter: blur(10px);
}

.wow .section-kicker,
.remote .section-kicker {
  color: rgba(255, 255, 255, 0.65);
}

.wow-lines {
  position: relative;
  z-index: 1;
  margin-top: 35px;
}

.wow-lines p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(2.1rem, 6.3vw, 6.9rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.wow-lines p span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.62);
}

.wow-close {
  margin: 65px 0 0 auto;
  max-width: 720px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.wow-close h2 {
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
}

.spark {
  color: var(--orange);
  font-size: 2rem;
  animation: spin 8s linear infinite;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.section-heading > p,
.section-heading-centered p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading-centered {
  display: block;
  max-width: 950px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered p {
  margin-top: 24px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card,
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 42px rgba(7, 20, 47, 0.05);
}

.step-card {
  min-height: 340px;
  padding: 30px;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border: 25px solid rgba(77, 92, 255, 0.08);
  border-radius: 50%;
}

.step-card:nth-child(2)::after { border-color: rgba(245, 40, 134, 0.08); }
.step-card:nth-child(3)::after { border-color: rgba(255, 129, 38, 0.1); }

.step-number,
.feature-mark {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step-icon {
  width: 82px;
  height: 82px;
  margin: 40px 0 30px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(77, 92, 255, 0.1);
}

.step-card:nth-child(2) .step-icon { background: rgba(245, 40, 134, 0.1); }
.step-card:nth-child(3) .step-icon { background: rgba(255, 129, 38, 0.12); }

.screen-icon i {
  width: 45px;
  height: 31px;
  border: 4px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 9px 0 -6px var(--blue);
}

.scan-icon i {
  width: 38px;
  height: 38px;
  border: 5px dotted var(--pink);
  border-radius: 4px;
  background: repeating-conic-gradient(var(--pink) 0 7%, transparent 7% 15%);
}

.play-icon i {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 29px solid var(--orange);
}

.step-card h3,
.feature-card h3,
.game-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.step-card p,
.feature-card p,
.game-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.no-friction {
  width: fit-content;
  margin: 32px auto 0;
  padding: 13px 20px;
  color: var(--navy-2);
  border: 1px solid rgba(77, 92, 255, 0.15);
  border-radius: 99px;
  background: rgba(77, 92, 255, 0.06);
  font-size: 0.85rem;
  font-weight: 750;
  text-align: center;
}

.no-friction span {
  margin-right: 8px;
  color: var(--blue);
}

.possibilities {
  background: linear-gradient(180deg, #f3f2ff 0%, var(--paper) 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 245px;
  padding: 30px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--accent, var(--blue));
}

.feature-card:hover {
  transform: translateY(-7px) rotate(-0.4deg);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-top: 65px;
}

.feature-mark {
  color: var(--accent, var(--blue));
}

.accent-blue { --accent: var(--blue); }
.accent-pink { --accent: var(--pink); }
.accent-orange { --accent: var(--orange); }
.accent-purple { --accent: var(--purple); }

.games {
  background: var(--white);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.game-card {
  --game-a: var(--orange);
  --game-b: var(--pink);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.game-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: var(--shadow);
}

.game-art {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--game-a), var(--game-b));
}

.game-art::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 36px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transform: rotate(20deg);
}

.game-art span {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  text-shadow: 0 10px 25px rgba(7, 20, 47, 0.2);
}

.game-art i {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
}

.game-art i:nth-of-type(1) { top: 30px; left: 40px; transform: rotate(-30deg); }
.game-art i:nth-of-type(2) { right: 40px; bottom: 30px; transform: rotate(30deg); }
.game-art i:nth-of-type(3) { top: 38px; right: 74px; height: 18px; transform: rotate(75deg); }

.game-copy {
  padding: 26px;
}

.tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tags span {
  padding: 6px 10px;
  color: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
}

.game-pink { --game-a: #ff4f9a; --game-b: #b53eff; }
.game-blue { --game-a: #3c8fff; --game-b: #5347ff; }
.game-purple { --game-a: #7c3cff; --game-b: #ed2f9b; }
.game-coral { --game-a: #ff7338; --game-b: #ff346d; }
.game-navy { --game-a: #10234c; --game-b: #4d5cff; }

.content-loop {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(245, 40, 134, 0.14), transparent 30%),
    #f3f2ff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.7fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.content-lede {
  max-width: 650px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.loop-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.loop-list span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
}

.loop-list i {
  color: var(--pink);
  font-style: normal;
}

blockquote {
  margin: 35px 0 0;
  padding-left: 22px;
  border-left: 5px solid var(--pink);
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-weight: 850;
  line-height: 1.35;
}

.challenge {
  margin: 14px 0 0;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.recap-stack {
  position: relative;
  min-height: 610px;
}

.recap-card {
  position: absolute;
  inset: 0;
  width: min(100%, 390px);
  margin: auto;
  overflow: hidden;
  border: 8px solid var(--navy);
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.recap-back {
  height: 545px;
  transform: translate(38px, 22px) rotate(8deg);
  background: linear-gradient(145deg, var(--orange), var(--pink), var(--blue));
  opacity: 0.55;
}

.recap-front {
  height: 565px;
  padding: 15px;
  transform: rotate(-3deg);
}

.recap-head {
  padding: 5px 4px 14px;
  color: var(--navy);
}

.recap-visual {
  position: relative;
  min-height: 325px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  border-radius: 25px;
  background: var(--gradient);
}

.recap-burst {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 44px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.recap-count {
  position: relative;
  z-index: 2;
  text-align: center;
}

.recap-count strong {
  display: block;
  font-size: 7rem;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.recap-count span {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recap-sticker {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 17px;
  padding: 7px 10px;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 9px;
  background: var(--yellow);
  font-size: 0.62rem;
  font-weight: 950;
  transform: rotate(-4deg);
}

.recap-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 15px 0 11px;
  text-align: center;
}

.recap-metrics span {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.recap-metrics b {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}

.recap-types {
  display: flex;
  gap: 6px;
  overflow: hidden;
}

.recap-types span {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 9px;
  background: #f1f2f7;
  font-size: 0.55rem;
  font-weight: 800;
}

.occasions {
  overflow: hidden;
  background: var(--white);
}

.occasion-cloud {
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.occasion {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  padding: 14px 26px;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 5px 6px 0 var(--navy);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 900;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.occasion:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 8px 10px 0 var(--navy);
}

.occasion-1 { --tilt: -2deg; background: #ffe9aa; }
.occasion-2 { --tilt: 1.5deg; background: #dfe3ff; }
.occasion-3 { --tilt: -1deg; background: #ffdce9; }
.occasion-4 { --tilt: 2deg; background: #f0ddff; }
.occasion-5 { --tilt: -2.4deg; background: #dcf5ff; }
.occasion-6 { --tilt: 1deg; background: #ffe4cf; }
.occasion-7 { --tilt: -1.5deg; background: #e6e0ff; }
.occasion-8 { --tilt: 2.3deg; background: #ffd9ec; }

.remote {
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.remote::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  bottom: -300px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.2;
  filter: blur(20px);
}

.remote-grid {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.scoreboard {
  padding: 22px;
  color: var(--navy);
  border-radius: 35px;
  background: var(--white);
  box-shadow: 18px 20px 0 rgba(77, 92, 255, 0.35);
  transform: rotate(-2deg);
}

.score-top {
  padding: 0 3px 18px;
  color: var(--navy);
}

.teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 40px 25px;
  color: var(--white);
  border-radius: 25px;
  background: var(--gradient);
}

.team {
  text-align: center;
}

.team span,
.team small {
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(4.2rem, 8vw, 6.5rem);
  line-height: 0.75;
  letter-spacing: -0.1em;
}

.versus {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 4px solid var(--navy);
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  transform: rotate(-8deg);
}

.score-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 5px 1px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.score-bottom i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

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

.remote-copy h2 {
  font-size: clamp(3.8rem, 7vw, 7.1rem);
}

.remote-copy > p:not(.section-kicker):not(.remote-note) {
  margin: 26px 0 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.remote-note {
  max-width: 520px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.68);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  color: var(--navy);
  background: #f2f3ff;
}

.download {
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 55%, rgba(118, 80, 255, 0.13), transparent 32%),
    var(--paper);
}

.download-inner {
  position: relative;
  z-index: 2;
}

.download-logo {
  width: 170px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 8px;
}

.download h2 {
  font-size: clamp(3.6rem, 8vw, 8.3rem);
}

.download > .shell > p:not(.section-kicker):not(.launch-note) {
  max-width: 570px;
  margin: 28px auto;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  min-width: 210px;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 20px;
  color: var(--white);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 13px 30px rgba(7, 20, 47, 0.2);
  text-decoration: none;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(7, 20, 47, 0.26);
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.12;
}

.store-button small {
  font-size: 0.62rem;
}

.store-button strong {
  margin-top: 3px;
  font-size: 1.15rem;
}

.store-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 11px;
  font-weight: 950;
}

.play-store {
  font-size: 0.9rem;
}

.launch-note {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.download-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 8%;
  left: 50%;
  border: 55px solid rgba(77, 92, 255, 0.07);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pulse 5s ease-in-out infinite;
}

.site-footer {
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-inner {
  min-height: 85px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  width: 80px;
  height: 50px;
}

.footer-brand img {
  width: 86px;
  margin: -6px -3px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-inner nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-inner nav a,
.footer-inner nav button {
  padding: 7px 0;
  color: inherit;
  border: 0;
  background: none;
  font-size: 0.73rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.footer-inner nav a:hover,
.footer-inner nav button:hover {
  color: var(--white);
}

.copyright {
  color: rgba(255, 255, 255, 0.55);
}

.legal-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 38px;
  color: var(--navy);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(7, 20, 47, 0.35);
}

.legal-dialog::backdrop {
  background: rgba(7, 20, 47, 0.7);
  backdrop-filter: blur(8px);
}

.legal-dialog h2 {
  font-size: 3rem;
}

.legal-dialog p:not(.section-kicker) {
  color: var(--ink-soft);
}

.legal-dialog a {
  color: var(--blue);
  font-weight: 750;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes pop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 35px;
  }

  .arena-wrap {
    min-height: 520px;
  }

  .phone {
    width: 78px;
    height: 140px;
  }

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

  .content-grid,
  .remote-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }

  .section {
    padding: 76px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    background: rgba(251, 251, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1.25rem;
  }

  .primary-nav .button {
    margin-top: 20px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid,
  .content-grid,
  .remote-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .proof-line {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .arena-wrap {
    width: min(100%, 530px);
    min-height: 580px;
    margin-inline: auto;
  }

  .section-heading {
    gap: 22px;
  }

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

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

  .step-icon {
    margin: 30px 0 22px;
  }

  .recap-stack {
    min-height: 580px;
  }

  .remote-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .remote-copy {
    text-align: center;
  }

  .remote-note {
    margin-inline: auto;
  }

  .scoreboard {
    width: min(100%, 600px);
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
    --radius: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    width: 96px;
    height: 58px;
  }

  .brand img {
    width: 103px;
    margin: -6px -3px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-line {
    gap: 7px;
  }

  .proof-line span {
    width: 100%;
  }

  .proof-line span::after {
    display: none;
  }

  .arena-wrap {
    min-height: 475px;
  }

  .arena-card {
    padding: 12px;
    border-radius: 28px;
  }

  .shared-screen {
    min-height: 245px;
    padding: 20px;
    border-width: 6px;
  }

  .screen-score {
    margin-top: 36px;
  }

  .screen-score strong {
    font-size: 4.8rem;
  }

  .join-row {
    padding-top: 13px;
  }

  .join-row strong {
    font-size: 0.82rem;
  }

  .qr {
    width: 54px;
  }

  .phones {
    width: 98%;
  }

  .phone {
    width: 65px;
    height: 112px;
    border-width: 5px;
    border-radius: 18px;
  }

  .phone b {
    font-size: 1.7rem;
  }

  .phone span {
    font-size: 0.42rem;
  }

  .player-pop {
    display: none;
  }

  .wow-lines p {
    padding: 10px 0;
    font-size: clamp(2rem, 10.5vw, 3.6rem);
  }

  .wow-close {
    margin-top: 45px;
    display: block;
  }

  .spark {
    display: block;
    margin-bottom: 10px;
  }

  .feature-grid,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 210px;
  }

  .feature-card h3 {
    margin-top: 48px;
  }

  .game-art {
    min-height: 205px;
  }

  .loop-list i {
    font-size: 0.7rem;
  }

  .recap-stack {
    min-height: 530px;
  }

  .recap-card {
    width: min(90%, 350px);
  }

  .recap-front {
    height: 505px;
  }

  .recap-back {
    height: 490px;
    transform: translate(22px, 18px) rotate(7deg);
  }

  .recap-visual {
    min-height: 275px;
  }

  .recap-count strong {
    font-size: 6rem;
  }

  .occasion {
    min-height: 58px;
    padding: 10px 17px;
    border-radius: 18px;
    box-shadow: 4px 5px 0 var(--navy);
  }

  .teams {
    gap: 6px;
    padding: 32px 12px;
  }

  .team strong {
    font-size: 3.8rem;
  }

  .versus {
    width: 42px;
    height: 42px;
  }

  .store-buttons {
    display: grid;
  }

  .store-button {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-inner nav {
    width: 100%;
  }

  .legal-dialog {
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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