:root {
  --ink: #172033;
  --muted: #687184;
  --soft: #f6f7fb;
  --card: #ffffff;
  --line: #dde2ee;
  --primary: #5361aa;
  --primary-dark: #333f87;
  --mint: #62c68d;
  --sun: #ffb33f;
  --rose: #ee6a91;
  --sky: #70b8ff;
  --shadow: 0 24px 80px rgba(43, 51, 96, 0.16);
  font-family:
    "Avenir Next",
    "Nunito Sans",
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(112, 184, 255, 0.24), transparent 32rem),
    radial-gradient(circle at top right, rgba(238, 106, 145, 0.18), transparent 34rem),
    var(--soft);
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 28px clamp(20px, 5vw, 72px) 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto 70px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  box-shadow: 0 12px 30px rgba(83, 97, 170, 0.28);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.48;
}

.hero-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  padding: 0 24px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 32px rgba(83, 97, 170, 0.3);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  color: var(--primary-dark);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.button.full {
  width: 100%;
}

.trust,
.form-note,
.form-status {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  min-height: 560px;
}

.orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.orbit-one {
  inset: 10% 4% auto auto;
  width: 260px;
  height: 260px;
  background: rgba(255, 179, 63, 0.25);
}

.orbit-two {
  inset: auto auto 4% 0;
  width: 220px;
  height: 220px;
  background: rgba(98, 198, 141, 0.22);
}

.phone-card {
  position: relative;
  z-index: 1;
  max-width: 370px;
  margin: 20px auto 0;
  border: 10px solid #1c2234;
  border-radius: 46px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f3f5ff);
  box-shadow: var(--shadow);
}

.phone-header {
  margin-bottom: 26px;
  color: var(--primary);
  font-size: 34px;
  font-weight: 950;
}

.score-card {
  display: grid;
  gap: 8px;
  border-radius: 26px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 38, 68, 0.1);
}

.score-card span,
.score-card small {
  color: var(--muted);
  font-weight: 700;
}

.score-card strong {
  font-size: 42px;
  letter-spacing: -0.05em;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-grid span {
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(83, 97, 170, 0.24), rgba(238, 106, 145, 0.22));
}

.game-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(31, 38, 68, 0.16);
}

.chip-blue {
  top: 6%;
  left: 5%;
  background: var(--sky);
}

.chip-green {
  right: 2%;
  top: 38%;
  background: var(--mint);
}

.chip-orange {
  left: 8%;
  bottom: 22%;
  background: var(--sun);
}

.chip-pink {
  right: 18%;
  bottom: 4%;
  background: var(--rose);
}

.stores,
.waitlist-section,
.section {
  max-width: 1180px;
  margin: 0 auto 36px;
  padding: clamp(32px, 6vw, 72px);
}

.stores,
.waitlist-section,
.section {
  border: 1px solid rgba(221, 226, 238, 0.7);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(43, 51, 96, 0.08);
}

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

.section-heading p,
.waitlist-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.store {
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 22px;
  text-decoration: none;
  background: #fff;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.store:hover {
  border-color: rgba(83, 97, 170, 0.36);
  box-shadow: 0 16px 34px rgba(43, 51, 96, 0.1);
  transform: translateY(-2px);
}

.store span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.store strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  border-radius: 32px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(43, 51, 96, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #cfd5e4;
  border-radius: 16px;
  padding: 0 16px;
  color: var(--ink);
  background: #fbfcff;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(83, 97, 170, 0.18);
  border-color: var(--primary);
}

.checkbox {
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.hidden {
  display: none;
}

.form-status.success {
  color: #1a7b45;
  font-weight: 850;
}

.form-status.error {
  color: #b13b43;
  font-weight: 850;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: 34px 20px 48px;
  color: var(--muted);
}

footer a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.thanks-page {
  min-height: 100vh;
}

.thanks-shell {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px;
}

.thanks-card {
  border: 1px solid rgba(221, 226, 238, 0.7);
  border-radius: 42px;
  padding: clamp(34px, 7vw, 76px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(48px, 8vw, 78px);
}

@media (max-width: 880px) {
  .hero {
    padding-top: 22px;
  }

  .nav {
    margin-bottom: 38px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 440px;
  }

  .phone-card {
    max-width: 310px;
  }

}

@media (max-width: 560px) {
  .hero,
  .stores,
  .waitlist-section,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stores,
  .waitlist-section,
  .section {
    border-radius: 28px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions,
  .store-buttons {
    flex-direction: column;
  }

  .button,
  .store {
    width: 100%;
  }
}
