:root {
  --bg: #061120;
  --bg-soft: #0d1d36;
  --panel: rgba(16, 22, 37, 0.88);
  --panel-strong: rgba(12, 16, 27, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3efe8;
  --muted: #b6b0bd;
  --cyan: #00c8ff;
  --pink: #ff35b6;
  --lime: #9eff1f;
  --blue: #4b63ff;
  --accent: #f65843;
  --accent-soft: #ffca32;
  --shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  --shell-width: 1200px;
  --shell-gutter: clamp(18px, 3vw, 32px);
  --section-space: clamp(52px, 7vw, 80px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 36%, rgba(246, 88, 67, 0.14), transparent 18%),
    radial-gradient(circle at top, rgba(0, 200, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.7), rgba(6, 10, 18, 0.96)),
    linear-gradient(180deg, #0a1020 0%, #0b1322 45%, #090f1b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 75%);
}

.page-shell {
  width: min(var(--shell-width), calc(100% - (var(--shell-gutter) * 2)));
  margin: 0 auto;
  padding-bottom: 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 14, 21, 0.94), rgba(11, 14, 23, 0.88)),
    radial-gradient(circle at right center, rgba(246, 88, 67, 0.12), transparent 24%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.brand-text strong,
.hero h1,
.section-heading h2,
.step-card h3,
.download-card h2,
.game-day-copy h2 {
  font-family: "Barlow", sans-serif;
}

.brand-text span:last-child {
  color: #9893a0;
  font-size: 0.88rem;
}

.brand-text strong {
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
  padding: 0;
}

.site-nav a {
  color: #9893a0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.mobile-app-banner {
  display: none;
}

.store-nav-link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 52px;
  padding: 10px 16px 11px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(17, 22, 34, 0.96), rgba(9, 13, 22, 0.96)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 42%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.store-nav-link:hover,
.store-nav-link:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.store-nav-link-primary {
  border-color: rgba(255, 202, 50, 0.36);
  background: linear-gradient(135deg, rgba(255, 202, 50, 0.98), rgba(239, 183, 27, 0.94));
  box-shadow: 0 16px 36px rgba(255, 202, 50, 0.18);
}

.store-nav-link-primary .store-nav-kicker,
.store-nav-link-primary .store-nav-name {
  color: #11131a;
}

.store-nav-link-primary:hover,
.store-nav-link-primary:focus-visible {
  border-color: rgba(255, 214, 88, 0.46);
  box-shadow: 0 18px 40px rgba(255, 202, 50, 0.24);
}

.store-nav-kicker {
  font-size: 0.63rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.store-nav-name {
  margin-top: 5px;
  font-family: "Barlow", sans-serif;
  font-size: 1.06rem;
  line-height: 1;
  font-weight: 700;
  color: #f5f7fb;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(81, 182, 255, 0.34);
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.95), #3e67ff 78%);
  color: #f7fbff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 36px rgba(40, 119, 255, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) 0 clamp(52px, 8vw, 84px);
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 9ch;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.hero-text,
.step-card p,
.game-day-copy p,
.download-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-text {
  max-width: 42ch;
  margin: 24px 0 0;
  font-size: clamp(1.14rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.download-actions {
  align-items: stretch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent-soft), #efb71b);
  color: #12131a;
  box-shadow: 0 14px 36px rgba(255, 202, 50, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.store-badge-ios,
.store-badge-android {
  display: inline-flex;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-badge-ios:hover,
.store-badge-ios:focus-visible,
.store-badge-android:hover,
.store-badge-android:focus-visible {
  transform: translateY(-2px);
  opacity: 0.88;
}

.store-badge-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Google Play badge has built-in padding so needs to be slightly taller to visually match */
.store-badge-img-play {
  height: 78px;
  margin: -9px 0;
}

.hero-proof {
  margin: 12px 0 0;
  color: #d8d2c8;
  font-size: 0.98rem;
  line-height: 1.5;
}

.download-contact-link {
  align-self: center;
  white-space: nowrap;
}

.hero-showcase {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 10% 12% 6%;
  background:
    radial-gradient(circle at 50% 40%, rgba(246, 88, 67, 0.16), transparent 34%),
    radial-gradient(circle at 50% 70%, rgba(0, 200, 255, 0.12), transparent 36%);
  filter: blur(22px);
}

.hero-device-duo {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
  justify-content: center;
}

.hero-device-duo .hero-device--light {
  transform: rotate(-4deg) translateX(16px);
  z-index: 1;
}

.hero-device-duo .hero-device--dark {
  transform: rotate(4deg) translateX(-16px);
  z-index: 2;
}

.hero-device-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0,0,0,0.45);
  padding: 3px 10px;
  border-radius: 20px;
  pointer-events: none;
}

.hero-device {
  position: relative;
  margin: 0;
  width: min(100%, 320px);
  border-radius: 40px;
  overflow: hidden;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-device img,
.step-card img,
.gallery-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.step-card,
.gallery-panel,
.download-card {
  position: relative;
  isolation: isolate;
  background: var(--panel);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.step-card > *,
.gallery-panel > *,
.download-card > * {
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--section-space) 0 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.page-title {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-copy {
  margin: 14px 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 8px;
}

.feature-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 24px 16px;
  border-radius: 24px;
  border: 1px solid rgba(107, 149, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(55, 85, 143, 0.96), rgba(42, 69, 122, 0.96)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 38%);
  box-shadow: 0 22px 44px rgba(11, 20, 41, 0.22);
  text-align: center;
}

.feature-highlight-copy {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 22ch;
}

.feature-highlight h3 {
  margin: 0;
  max-width: 11ch;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #f8fbff;
}

.feature-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.feature-more-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-more-links a:hover,
.feature-more-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 202, 50, 0.32);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.step-card,
.download-card {
  border-radius: 28px;
  padding: 24px;
}

.step-card h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--text);
}

.step-payoff {
  margin: 8px 0 0;
  color: var(--accent-soft);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.step-card p,
.download-card p {
  color: var(--muted);
}

.showcase-section {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: var(--section-space);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 34px 28px;
  margin-top: 36px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--lime);
  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.step-card img {
  width: min(100%, 300px);
  margin: 16px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.4rem;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  margin-top: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.legal-header {
  position: static;
  margin-top: 14px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}

.legal-page {
  padding: 24px 0 72px;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.legal-card h1,
.legal-card h2 {
  font-family: "Barlow", sans-serif;
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card a {
  color: var(--muted);
}

.legal-card a {
  text-decoration: none;
}

.legal-card a:hover {
  color: var(--text);
}

.legal-updated {
  margin-top: 16px;
  font-size: 0.95rem;
}

.legal-section + .legal-section {
  margin-top: 28px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 22px;
  margin-top: 28px;
}

.contact-panel,
.contact-sidebar-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 25, 42, 0.94), rgba(12, 18, 31, 0.92)),
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.08), transparent 32%);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.contact-panel {
  padding: 24px;
}

.contact-panel h2,
.contact-sidebar-card h2 {
  margin: 0 0 10px;
}

.contact-panel-copy,
.contact-sidebar-card p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-form-status.is-success {
  color: #8fe388;
}

.contact-form-status.is-error {
  color: #ff8c84;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8f93a4;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(81, 182, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.08);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.contact-submit-button {
  border: 1px solid rgba(81, 182, 255, 0.34);
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.18), rgba(62, 103, 255, 0.82));
  color: #f7fbff;
  box-shadow: 0 14px 32px rgba(40, 119, 255, 0.18);
}

.contact-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-sidebar-card {
  padding: 22px;
}

.contact-sidebar-card a {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 560px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.download-section {
  padding-bottom: 72px;
}

.download-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 88, 67, 0.2), transparent 70%);
}

.download-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.download-card-copy {
  max-width: 680px;
}

.download-qr {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 220px);
  color: var(--text);
  text-align: center;
  text-decoration: none;
}

.download-qr-frame {
  display: block;
  width: min(100%, 196px);
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
}

.download-qr-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.download-qr-copy {
  display: grid;
  gap: 4px;
}

.download-qr-copy strong {
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.download-qr-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: none;
  }

  .hero-showcase {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .hero {
    gap: 26px;
  }

  .feature-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }


  .game-day-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 38px;
    --shell-gutter: 16px;
  }

  .page-shell {
    padding-bottom: 42px;
  }

  .site-header {
    position: sticky;
    top: 6px;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 6px;
    margin-left: 0;
    margin-right: 0;
    padding: 7px 10px;
    border-radius: 16px;
    backdrop-filter: blur(18px);
  }

  .legal-header {
    position: static;
    top: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 9px;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
    margin-left: 0;
    justify-content: flex-start;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.84rem;
    line-height: 1.15;
  }

  .site-nav .store-nav-link {
    display: none;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .brand-text strong {
    font-size: 1.08rem;
    line-height: 1;
  }

  .brand-text span:last-child {
    display: none;
  }

  .hero {
    padding: 24px 0 38px;
    gap: 20px;
  }

  .hero-showcase {
    max-width: 480px;
  }

  .hero-device {
    border-radius: 30px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
    line-height: 0.95;
  }

  .hero-text {
    margin-top: 18px;
    line-height: 1.55;
  }

  .hero-text,
  .step-card p,
  .game-day-copy p,
  .download-card p {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-proof {
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .download-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .download-qr {
    display: none;
  }

  .download-section {
    padding-bottom: 44px;
  }

  .download-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.03;
  }

  .download-actions {
    margin-top: 18px;
  }

  .feature-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-highlight {
    min-height: 128px;
    padding: 18px 12px;
    border-radius: 18px;
  }

  .feature-highlight h3 {
    font-size: clamp(1.05rem, 4.6vw, 1.28rem);
    line-height: 1.25;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .feature-more-links {
    gap: 10px;
    margin-top: 16px;
  }

  .feature-more-links a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.93rem;
    line-height: 1.35;
  }

  .feature-highlight:last-child:nth-child(odd) {
    grid-column: span 2;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
  }

  .section-copy {
    margin-top: 12px;
    line-height: 1.55;
  }

  .step-card h3 {
    font-size: 1.42rem;
  }

  .step-payoff {
    margin-top: 6px;
    font-size: 0.94rem;
  }

  .step-card p:not(.step-payoff) {
    margin-top: 10px;
    line-height: 1.48;
  }

  .step-card img {
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .step-card,
  .gallery-panel,
  .download-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(16, 22, 37, 0.96);
  }
}

@media (max-width: 560px) {
  .button {
    width: 100%;
  }

  .site-header {
    border-radius: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-text strong {
    font-size: 1.02rem;
  }

  .brand-text span:last-child {
    font-size: 0.86rem;
  }

  .legal-card {
    padding: 22px;
  }

  .step-card,
  .download-card {
    padding: 20px;
  }
}

body.ios-mobile .mobile-app-banner,
body.android-mobile .mobile-app-banner {
  display: none;
}

@media (max-width: 760px) {
  body.ios-mobile .mobile-app-banner,
  body.android-mobile .mobile-app-banner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 8px;
    z-index: 24;
    margin: 8px 0 14px;
    padding: 9px 11px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(12, 14, 21, 0.94), rgba(11, 14, 23, 0.88)),
      radial-gradient(circle at right center, rgba(246, 88, 67, 0.12), transparent 24%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  .mobile-app-banner-home {
    display: contents;
  }

  .mobile-app-banner-icon {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  }

  .mobile-app-banner-copy {
    min-width: 0;
    color: var(--text);
  }

  .mobile-app-banner-copy strong {
    display: block;
    font-family: "Barlow", sans-serif;
    font-size: 1.05rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .mobile-app-banner-copy span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .mobile-app-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0a84ff;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
  }

  body.ios-mobile .site-header,
  body.android-mobile .site-header {
    display: none;
  }

  body.ios-mobile .store-badge-android {
    display: none;
  }

  body.android-mobile .store-badge-ios {
    display: none;
  }

  body.ios-mobile .hero,
  body.android-mobile .hero {
    padding-top: 8px;
  }

  body.ios-mobile .download-actions,
  body.android-mobile .download-actions {
    margin-top: 18px;
  }

  body.android-mobile .site-nav {
    display: none;
  }
}

/* ── Feature Spotlight ────────────────────────────────────── */
.feature-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.feature-spotlight-copy h2 {
  margin: 8px 0 16px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.feature-spotlight-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 40ch;
}

.feature-spotlight-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-spotlight-list strong {
  color: var(--text);
  font-weight: 800;
}

.feature-spotlight-note {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 38ch;
}

.feature-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.spotlight-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(158, 255, 31, 0.12);
  border: 1px solid rgba(158, 255, 31, 0.28);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 1px;
}

.feature-spotlight-visual {
  position: relative;
}

.feature-spotlight-visual::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle at 50% 50%, rgba(246, 88, 67, 0.14), transparent 58%);
  filter: blur(28px);
  pointer-events: none;
}

.feature-spotlight-visual img {
  position: relative;
  display: block;
  width: min(100%, 320px);
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

  .feature-spotlight-visual {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── Import Roster Showcase ───────────────────────────────── */
.import-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.import-showcase-visuals {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.import-showcase-visuals::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.1), transparent 58%);
  filter: blur(28px);
  pointer-events: none;
}

.import-showcase-visuals {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.import-showcase-visuals img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.import-showcase-visuals img:first-child {
  border-radius: 12px;
  transform: rotate(-3deg) translateY(12px);
}

.import-showcase-visuals img:nth-child(2) {
  transform: translateY(-10px);
}

.import-showcase-visuals img:nth-child(3) {
  transform: translateY(10px);
}

.import-showcase-copy h2 {
  margin: 8px 0 16px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.import-showcase-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 40ch;
}

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

  .import-showcase-visuals {
    max-width: 420px;
    margin: 0 auto;
  }

  .import-showcase-visuals img:first-child {
    transform: translateY(14px);
  }
}

@media (max-width: 760px) {
  .feature-spotlight,
  .import-showcase {
    gap: 24px;
  }

  .feature-spotlight {
    padding-top: 4px;
  }

  .feature-spotlight-copy > p,
  .import-showcase-copy > p {
    font-size: 1rem;
    line-height: 1.52;
  }

  .feature-spotlight-list {
    margin-top: 18px;
    gap: 10px;
  }

  .feature-spotlight-list li {
    line-height: 1.42;
  }

  .feature-spotlight-actions {
    margin-top: 18px;
  }

  .feature-spotlight-actions .button {
    width: 100%;
  }

  .feature-spotlight-visual {
    max-width: 285px;
  }

  .feature-spotlight-visual img {
    border-radius: 28px;
  }

  .import-showcase {
    grid-template-areas:
      "copy"
      "visual";
  }

  .import-showcase-copy {
    grid-area: copy;
  }

  .import-showcase-visuals {
    grid-area: visual;
    max-width: 360px;
    gap: 10px;
  }

  .import-showcase-visuals img {
    border-radius: 16px;
  }
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox-trigger {
  cursor: zoom-in;
}

#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lb-fade-in 0.18s ease;
}

#lightbox-overlay.open {
  display: flex;
}

#lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  animation: lb-scale-in 0.2s ease;
}

#lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  padding: 4px 8px;
}

#lightbox-close:hover {
  opacity: 1;
}

@keyframes lb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lb-scale-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
