:root {
  --bg-0: #000000;
  --bg-1: #0f0f0f;
  --bg-2: #1c1c1e;
  --bg-3: #2c2c2e;
  --border: #38383a;
  --accent: #007aff;
  --accent-hover: #0066d6;
  --green: #34c759;
  --gray: #8e8e93;
  --text-0: #ffffff;
  --text-1: #ebebf5;
  --text-2: #aeaeb2;
  --text-3: #98989d;
  --radius: 12px;
  --radius-sm: 8px;
  --accent-rgb: 0, 122, 255;
  --green-rgb: 52, 199, 89;
  --bg-0-rgb: 0, 0, 0;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: var(--bg-0);
  color: var(--text-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  background: rgba(var(--bg-0-rgb), 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent); }
span.brand-swing { color: var(--accent); }

.hero-icon {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text-0); }

.nav-links .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--text-0);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}

.nav-links .btn-nav:hover { background: var(--accent-hover); color: var(--text-0); }

.nav-links .btn-nav-soon {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  cursor: default;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
}

/* ── Shared layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

section { padding: 80px 24px; }

.section-label {
  display: inline-block;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

.section-header h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  line-height: 1.05;
}

.section-header p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.6;
}

/* ── Hero ── */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(var(--accent-rgb), 0.18) 0%, transparent 65%),
    var(--bg-0);
}

.hero h1 {
  font-size: clamp(44px, 9vw, 88px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.0;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-0);
  color: var(--bg-0);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  transition: opacity 0.15s;
}

.btn-appstore:hover { opacity: 0.88; color: var(--bg-0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover { border-color: var(--text-2); color: var(--text-0); }

.hero-note {
  font-size: 13px;
  color: var(--text-3);
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Features section ── */
.features-section {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}

/* ── Feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(var(--accent-rgb), 0.5); }

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-card p:last-child { margin-bottom: 0; }

.about-card {
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* ── Sports badges ── */
.sports-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sport-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  min-width: 220px;
}

.sport-badge .sport-emoji { font-size: 32px; }

.sport-badge h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.sport-badge p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── Free section ── */
.free-section {
  background:
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(var(--accent-rgb), 0.12) 0%, transparent 65%),
    var(--bg-0);
  border-top: 1px solid var(--border);
  text-align: center;
}

.free-section h2 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
  line-height: 1.05;
}

.free-section > .container > p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--green-rgb), 0.1);
  border: 1px solid rgba(var(--green-rgb), 0.25);
  color: var(--green);
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Footer ── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}

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

footer p {
  font-size: 13px;
  color: var(--text-3);
}

/* ── Inner page hero ── */
.page-hero {
  padding: 64px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(var(--accent-rgb), 0.12) 0%, transparent 60%),
    var(--bg-0);
}

.page-hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-2);
}

/* ── Prose (FAQ / Privacy) ── */
.prose {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* FAQ */
.faq-group { margin-bottom: 52px; }

.faq-group-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-item { margin-bottom: 28px; }

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-0);
  letter-spacing: -0.2px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.faq-followup { margin-top: 8px; }

.faq-item code {
  font-size: 13px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  color: var(--text-1);
}

/* Privacy */
.privacy-meta {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.privacy-section { margin-bottom: 40px; }

.privacy-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.privacy-section p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Contact card */
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  margin-top: 56px;
}

.contact-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-0);
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-email:hover { background: var(--accent-hover); color: var(--text-0); }

/* ── User Stories ── */
.stories-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.story:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.story-text { flex: 1 1 320px; max-width: 400px; }

.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.story-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

.story-eyebrow-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
}

.story-quote {
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: var(--text-1);
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.story-screens {
  flex: 1;
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  align-items: flex-start;
  scrollbar-width: none;
}

.story-screens::-webkit-scrollbar { display: none; }

.phone-frame {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--bg-2);
  border-radius: 38px;
  padding: 14px 8px 12px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Volume buttons — left side */
.phone-frame::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 104px;
  width: 3px;
  height: 32px;
  background: var(--bg-3);
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.08),
    0 38px 0 0 var(--bg-3);
}

/* Power button — right side */
.phone-frame::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 96px;
  width: 3px;
  height: 56px;
  background: var(--bg-3);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.08);
}

.story-screen {
  display: block;
  width: 160px;
  aspect-ratio: 1206 / 2622;
  border-radius: 22px;
}

/* ── Hero trust row ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--green-rgb), 0.08);
  border: 1px solid rgba(var(--green-rgb), 0.25);
  color: var(--green);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ── Lightbox (CSS :target + lightbox.js for close-scroll fix and keyboard nav) ── */
.screen-link {
  display: block;
  cursor: zoom-in;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox:target { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-img {
  position: relative;   /* stacks above backdrop */
  max-height: 88vh;
  max-width: min(88vw, 380px);
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 3rem;
  line-height: 1;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
  user-select: none;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover { color: #fff; background: rgba(0, 0, 0, 0.65); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { color: #fff; background: rgba(0, 0, 0, 0.7); }

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { gap: 12px; }
  section { padding: 60px 16px; }
  .hero { padding: 80px 16px 60px; }
  .stats-strip { padding: 40px 16px; }
  .prose { padding: 40px 16px 60px; }
  .page-hero { padding: 48px 16px 36px; }
  .story { flex-direction: column; gap: 28px; align-items: stretch; }
  .story-text { flex: none; }
  .story-screens { width: 100%; }
}
