/* PlayWow — Penalty Shootout landing styles */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");

:root {
  --pitch: #1FD46B;
  --pitch-600: #15B257;
  --pitch-700: #0E8A44;
  --flare: #FFB020;
  --flare-300: #FFC74D;
  --keeper: #2B6BFF;
  --keeper-300: #6FA0FF;
  --striker: #FF6A2C;
  --danger: #E53935;
  --ink: #0F1B2D;
  --night: #0B1422;
  --night-800: #142036;
  --night-700: #1E2C45;
  --paper: #F4F6F2;
  --white: #FFFFFF;
  --font: "Sora", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--night);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pitch);
  text-decoration: none;
}

a:hover {
  color: var(--flare);
}

img {
  display: block;
}

button {
  font-family: var(--font);
  cursor: pointer;
}

/* ---------- reveal-on-scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv-d1 {
  transition-delay: .1s;
}

.rv-d2 {
  transition-delay: .2s;
}

.rv-d3 {
  transition-delay: .3s;
}

.rv-d4 {
  transition-delay: .4s;
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}

.nav.scrolled {
  background: rgba(11, 20, 34, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.nav-logo b {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav-logo b span {
  color: var(--pitch);
}

/* ---------- logo assembly animation ---------- */
.logo-anim {
  overflow: visible;
}

.logo-anim .la-tile {
  transform-origin: 32px 32px;
  animation: laTile .65s cubic-bezier(.34, 1.56, .64, 1) both;
}

.logo-anim .la-play {
  transform-origin: 32px 32px;
  animation: laPlay .55s cubic-bezier(.34, 1.56, .64, 1) .35s both;
}

.logo-anim .la-ball {
  transform-origin: 46px 18px;
  animation: laBall .7s cubic-bezier(.22, 1, .36, 1) .7s both;
}

@keyframes laTile {
  0% {
    transform: scale(0) rotate(-90deg);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes laPlay {
  0% {
    transform: scale(0) rotate(120deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes laBall {
  0% {
    transform: translate(-34px, 34px) scale(0);
    opacity: 0;
  }
  55% {
    transform: translate(4px, -6px) scale(1.15);
    opacity: 1;
  }
  75% {
    transform: translate(-2px, 2px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

.lw {
  display: inline-block;
  animation: lwUp .5s cubic-bezier(.22, 1, .36, 1) both;
}

.lw-1 {
  animation-delay: .5s;
}

.lw-2 {
  animation-delay: .62s;
}

.lw-3 {
  animation-delay: .78s;
}

@keyframes lwUp {
  0% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* replay assembly on hover */
.nav-logo:hover .la-ball {
  animation: laBall .7s cubic-bezier(.22, 1, .36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .logo-anim .la-tile, .logo-anim .la-play, .logo-anim .la-ball, .lw {
    animation: none;
  }
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: var(--pitch);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 24px -8px rgba(31, 212, 107, 0.6);
  transition: transform .15s, box-shadow .15s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(31, 212, 107, 0.75);
}

@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: radial-gradient(90% 60% at 50% 115%, rgba(31, 212, 107, 0.28) 0%, transparent 60%),
  radial-gradient(60% 40% at 12% 8%, rgba(255, 176, 32, 0.14) 0%, transparent 60%),
  radial-gradient(60% 40% at 88% 8%, rgba(43, 107, 255, 0.16) 0%, transparent 60%),
  linear-gradient(180deg, #0B1422 0%, #10203a 55%, #0B1422 100%);
}

.hero-pitchlines {
  position: absolute;
  inset: 0;
  opacity: .10;
  pointer-events: none;
  will-change: transform;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.8);
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pitch);
  animation: blink 1.6s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: .35;
  }
  50% {
    opacity: 1;
  }
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(46px, 8.5vw, 104px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -0.04em;
}

.hero h1 .l1 {
  display: block;
}

.hero h1 .l2 {
  display: block;
  color: var(--pitch);
  text-shadow: 0 0 60px rgba(31, 212, 107, 0.45);
}

.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  border: none;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 10px 32px -10px rgba(0, 0, 0, 0.55);
  text-align: left;
}

.store-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 42px -10px rgba(31, 212, 107, 0.4);
}

.store-badge .tiny {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #64748B;
}

.store-badge .big {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.store-badge.dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-badge.dark .tiny {
  color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
  margin-top: 44px;
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat .n {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-stat .n em {
  font-style: normal;
  color: var(--pitch);
}

.hero-stat .l {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.5);
}

/* hero players */
.hero-player {
  position: absolute;
  bottom: 0;
  width: clamp(180px, 24vw, 380px);
  pointer-events: none;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
  will-change: transform;
  z-index: 2;
}

.hero-player.yellow {
  left: max(-30px, 2vw);
}

.hero-player.blue {
  right: max(-30px, 2vw);
}

@media (max-width: 900px) {
  .hero-player {
    opacity: .45;
    width: 200px;
  }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  animation: cueFloat 2.2s ease-in-out infinite;
}

@keyframes cueFloat {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--pitch);
  padding: 14px 0;
  transform: rotate(-1.2deg) scale(1.04);
  margin: -20px 0 0;
  position: relative;
  z-index: 5;
  min-width: 100vw;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marq 28s linear infinite;
  width: max-content;
  min-width: 200vw;
}

.marquee-track span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--ink);
  padding-right: 42px;
}

@keyframes marq {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- sections ---------- */
.section {
  padding: 110px 24px;
  position: relative;
  scroll-margin-top: 76px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sec-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--pitch);
}

.sec-title {
  margin-top: 12px;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.sec-sub {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
}

.light {
  background: var(--paper);
  color: var(--ink);
}

.light .sec-sub {
  color: #64748B;
}

.light .sec-label {
  color: var(--pitch-700);
}

/* ---------- how to play ---------- */
.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  border-radius: 26px;
  padding: 34px 28px 30px;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 6px 24px -12px rgba(15, 27, 45, 0.16);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 48px -18px rgba(15, 27, 45, 0.28);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(15, 27, 45, 0.06);
}

.step-ico {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.step-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #64748B;
}

.step-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
}

/* ---------- phones ---------- */
.phones {
  margin-top: 70px;
  display: flex;
  gap: 34px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  perspective: 1400px;
}

.phone {
  width: 270px;
  border-radius: 38px;
  padding: 8px;
  background: #0B0F16;
  box-shadow: 0 40px 80px -24px rgba(15, 27, 45, 0.5), 0 0 0 1px rgba(15, 27, 45, 0.3);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.phone-screen {
  border-radius: 31px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}

.phone.tilt-l {
  transform: rotate(-5deg) translateY(22px);
}

.phone.tilt-r {
  transform: rotate(5deg) translateY(22px);
}

.phone:hover {
  transform: rotate(0) translateY(-10px) scale(1.04);
  z-index: 3;
}

.phone-label {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #94A3B8;
}

/* ---------- vs section ---------- */
.vs-wrap {
  position: relative;
  margin-top: 70px;
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
}

.vs-half {
  flex: 1;
  position: relative;
  padding: 54px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  overflow: hidden;
  transition: flex .5s cubic-bezier(.22, 1, .36, 1);
}

.vs-half:hover {
  flex: 1.35;
}

.vs-half.yellow {
  background: linear-gradient(160deg, #FFC74D 0%, #FFB020 55%, #E89400 100%);
  color: var(--ink);
}

.vs-half.blue {
  background: linear-gradient(200deg, #4E8BFF 0%, #2B6BFF 55%, #1647C0 100%);
  color: #fff;
}

.vs-half img {
  position: absolute;
  bottom: 0;
  right: -10px;
  height: 88%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
  transition: transform .5s;
}

.vs-half:hover img {
  transform: scale(1.06);
}

.vs-half .vs-team {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  opacity: .75;
}

.vs-half h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  max-width: 60%;
  line-height: 1.05;
}

.vs-half p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  opacity: .8;
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 999px;
  z-index: 10;
  background: var(--night);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 760px) {
  .vs-wrap {
    flex-direction: column;
  }

  .vs-half h3, .vs-half p {
    max-width: 100%;
  }

  .vs-half img {
    opacity: .35;
  }
}

/* ---------- ELO section ---------- */
.elo-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 900px) {
  .elo-grid {
    grid-template-columns: 1fr;
  }
}

.lb-card {
  border-radius: 26px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 30px 70px -30px rgba(15, 27, 45, 0.35);
  overflow: hidden;
}

.lb-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15, 27, 45, 0.07);
}

.lb-head b {
  font-size: 16px;
  font-weight: 800;
}

.lb-chip {
  padding: 4px 10px;
  border-radius: 6px;
  background: #E5EEFF;
  color: #1647C0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(15, 27, 45, 0.05);
  transition: background .2s, transform .2s;
}

.lb-row:hover {
  background: #F8FAF8;
  transform: translateX(4px);
}

.lb-rank {
  width: 26px;
  font-weight: 800;
  color: #94A3B8;
  font-variant-numeric: tabular-nums;
}

.lb-av {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  flex: none;
}

.lb-name {
  flex: 1;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lb-tier {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 5px;
}

.lb-elo {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.lb-delta {
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

.lb-row.you {
  background: #E8FBF0;
  border-left: 4px solid var(--pitch);
}

.elo-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.elo-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.elo-point .ico {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  flex: none;
  display: grid;
  place-items: center;
}

.elo-point h4 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.elo-point p {
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item[open] {
  box-shadow: 0 14px 40px -18px rgba(15, 27, 45, 0.25);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .plus {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #E8FBF0;
  color: var(--pitch-700);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  transition: transform .25s, background .25s;
  flex: none;
}

.faq-item[open] summary .plus {
  transform: rotate(45deg);
  background: var(--pitch);
  color: #fff;
}

.faq-item .faq-body {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748B;
}

/* ---------- final CTA ---------- */
.final {
  position: relative;
  text-align: center;
  padding: 130px 24px 140px;
  overflow: hidden;
  background: radial-gradient(80% 70% at 50% 120%, rgba(31, 212, 107, 0.35) 0%, transparent 60%),
  linear-gradient(180deg, #0B1422, #10203a);
}

.final h2 {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.final h2 span {
  color: var(--flare);
}

.final p {
  margin-top: 18px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- footer ---------- */
.footer {
  background: #070D17;
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
}

/* ---------- mobile ---------- */
@media (max-width: 640px) {
  .hero {
    padding: 100px 20px 90px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    margin-top: 35px;
  }

  .hero-stats {
    gap: 22px;
  }

  .hero-stat .n {
    font-size: 20px;
  }

  .hero-player {
    opacity: .3;
    width: 160px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .store-badge {
    justify-content: center;
  }

  .section {
    padding: 72px 20px;
  }

  .phones {
    gap: 22px;
  }

  .phone {
    width: min(270px, 82vw);
  }

  .phone.tilt-l, .phone.tilt-r {
    transform: none;
  }

  .vs-half {
    padding: 34px 24px;
    min-height: 340px;
  }

  .vs-badge {
    width: 64px;
    height: 64px;
    font-size: 17px;
  }

  .marquee-track span {
    font-size: 13px;
  }

  .footer-top {
    gap: 28px;
  }

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

/* ═══════════════════════════════════════════════════════════════════════════
   EXTENSION — content pages (Privacy / Terms / About / …), 404, a11y.
   Not part of the Claude Design bundle: the bundle ships the home page only.
   Approved by the product owner on 07/14/2026: same nav + footer as the
   landing, light #F4F6F2 sheet, 1160px container, everything else standard.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ---------- accessibility: the bundle's CSS has no visible focus ring ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--pitch);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- store badges are placeholders until the apps are published ---------- */
.store-badge[disabled] {
  cursor: default;
}

.store-badge[disabled]:hover {
  transform: none;
  box-shadow: 0 10px 32px -10px rgba(0, 0, 0, 0.55);
}

.store-note {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- content page shell ---------- */
.doc {
  background: var(--paper);
  color: var(--ink);
  padding: 148px 24px 96px;
}

.doc-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.doc-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--pitch-700);
}

.doc h1 {
  margin-top: 12px;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.doc-meta {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #94A3B8;
}

.doc-lede {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: #64748B;
}

.doc-body {
  margin-top: 48px;
}

.doc-body h2 {
  margin-top: 44px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.doc-body h2:first-child {
  margin-top: 0;
}

.doc-body h3 {
  margin-top: 26px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.doc-body p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #64748B;
}

.doc-body ul {
  margin-top: 12px;
  padding-left: 20px;
}

.doc-body li {
  margin-top: 8px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #64748B;
}

.doc-body a {
  color: var(--pitch-700);
  font-weight: 600;
  text-decoration: underline;
}

.doc-body a:hover {
  color: var(--striker);
}

.doc-body strong {
  color: var(--ink);
  font-weight: 700;
}

.doc-card {
  margin-top: 26px;
  padding: 26px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 6px 24px -12px rgba(15, 27, 45, 0.16);
}

.doc-card h3 {
  margin-top: 0;
}

.doc-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 760px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
}

.doc-mail {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--pitch);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(31, 212, 107, 0.6);
}

.doc-mail:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.doc-facts {
  margin-top: 26px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, 0.08);
}

.doc-fact {
  display: flex;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(15, 27, 45, 0.05);
}

.doc-fact:last-child {
  border-bottom: none;
}

.doc-fact dt {
  flex: none;
  width: 190px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #94A3B8;
  text-transform: uppercase;
}

.doc-fact dd {
  font-size: 15px;
  line-height: 1.6;
  color: #64748B;
}

@media (max-width: 640px) {
  .doc {
    padding: 120px 20px 72px;
  }

  .doc-fact {
    flex-direction: column;
    gap: 4px;
  }

  .doc-fact dt {
    width: auto;
  }
}

/* ---------- 404 ---------- */
.nf {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 90px;
  background: radial-gradient(80% 60% at 50% 115%, rgba(31, 212, 107, 0.22) 0%, transparent 60%),
  linear-gradient(180deg, #0B1422 0%, #10203a 60%, #0B1422 100%);
}

.nf .code {
  font-size: clamp(70px, 14vw, 140px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--pitch);
  line-height: 1;
}

.nf h1 {
  margin-top: 14px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nf p {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
}

.nf .nf-cta {
  margin-top: 28px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--pitch);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 30px -10px rgba(31, 212, 107, 0.6);
}

.nf .nf-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- image aspect ratio ----------
   The <img> width/height attributes (added so the layout doesn't jump while images load) also act
   as presentational hints. Where a rule sets only ONE dimension, the attribute supplies the other
   and the picture gets stretched: the hero players took height=1164px from the attribute, and the
   VS renders took width=734px. Release the axis the CSS drives. */
.hero-player {
  height: auto;
}

.vs-half img {
  width: auto;
}

/* ---------- nav on pages without a dark hero ----------
   The landing's nav starts transparent and only gains a background once you scroll (.scrolled),
   which works because a dark hero sits behind it. Content pages open on the light #F4F6F2 sheet,
   where the nav's white links were invisible until the first scroll. Those pages render the nav
   with .solid so it carries its background from the first paint. */
.nav.solid {
  background: rgba(11, 20, 34, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXTENSION — mobile vertical rhythm (≤640px)

   The bundle's mobile query only reaches .section, so the spacing drifted:
   the heading→content gap was 44 / 56 / 64 / 70px depending on the block, the
   closing CTA kept its desktop 130/140px padding, and .final + .footer used
   24px side padding while every section used 20px.

   One scale for the whole page on mobile:
     • section padding      64px vertical / 20px sides
     • heading → content    40px
     • closing CTA          80 / 88px  (deliberately roomier — it's the finish)
     • footer               56 / 32px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section {
    padding: 64px 20px;
  }

  /* heading → content: was 64 (.steps, .elo-grid), 70 (.phones, .vs-wrap), 56 (.faq-list) */
  .steps,
  .phones,
  .vs-wrap,
  .elo-grid,
  .faq-list {
    margin-top: 40px;
  }

  .sec-sub {
    margin-top: 14px;
  }

  .elo-grid {
    gap: 32px;
  }

  .elo-points {
    gap: 22px;
  }

  .phone-label {
    margin-top: 16px;
  }

  /* hero: keep the 100px top (the fixed nav sits over it), tighten the rest */
  .hero {
    padding: 100px 20px 72px;
  }

  .hero h1 {
    margin-top: 40px;
  }

  .hero-sub {
    margin-top: 30px;
  }

  .hero-ctas {
    margin-top: 28px;
  }

  .store-note {
    margin-top: 30px;
  }

  .hero-stats {
    margin-top: 32px;
    gap: 20px 26px;
  }

  /* the closing CTA and the footer never entered the mobile query at all */
  .final {
    padding: 80px 20px 88px;
  }

  .final p {
    margin-top: 14px;
  }

  .footer {
    padding: 56px 20px 32px;
  }

  .footer-top {
    gap: 26px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    gap: 10px;
  }
}
