/* ═══════════════════════════════════════════════════════
   PRALLEY — DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  /* Palette */
  --ink:      #0B1F1A;
  --court:    #0E3B2E;
  --court-dk: #0a2f24;
  --paper:    #F4EFE6;
  --paper2:   #EBE3D3;
  --chalk:    #FFFEF7;
  --clay:     #C8512B;
  --signal:   #E8FF52;
  --hot:      #FF3B2E;

  --muted:   rgba(11,31,26,0.45);
  --subtle:  rgba(11,31,26,0.22);
  --line:    rgba(11,31,26,0.08);

  --chalk-80:  rgba(255,254,247,0.80);
  --chalk-55:  rgba(255,254,247,0.55);
  --chalk-35:  rgba(255,254,247,0.35);
  --chalk-12:  rgba(255,254,247,0.12);
  --chalk-06:  rgba(255,254,247,0.06);

  /* Radius */
  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   16px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  36px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(11,31,26,0.08);
  --shadow-md:   0 4px 16px rgba(11,31,26,0.10);
  --shadow-lg:   0 12px 40px rgba(11,31,26,0.16);
  --shadow-hero: 0 32px 80px rgba(11,31,26,0.32);
  --shadow-phone:0 48px 120px rgba(0,0,0,0.55), 0 8px 32px rgba(0,0,0,0.30);

  /* Type scale */
  --text-hero:    clamp(52px, 6.5vw, 92px);
  --text-section: clamp(38px, 4.5vw, 62px);
  --text-feature: clamp(28px, 3vw, 44px);
  --text-lg:      18px;
  --text-md:      16px;
  --text-sm:      14px;
  --text-xs:      12px;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --gutter:      clamp(24px, 5vw, 80px);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
.display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.mono {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  letter-spacing: 0.04em;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.eyebrow-clay  { color: var(--clay); }
.eyebrow-signal{ color: var(--signal); }
.eyebrow-chalk { color: var(--chalk-55); }

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Anchor offset for fixed nav */
section[id] { scroll-margin-top: 72px; }

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--r-sm);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.18s ease,
              opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active{ transform: translateY(0); opacity: 0.88; }

.btn-primary {
  background: var(--court);
  color: var(--chalk);
  box-shadow: 0 2px 12px rgba(14,59,46,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(14,59,46,0.45); }

.btn-signal {
  background: var(--signal);
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(232,255,82,0.35);
}
.btn-signal:hover { box-shadow: 0 8px 28px rgba(232,255,82,0.50); }

.btn-ghost-light {
  background: transparent;
  color: var(--chalk-80);
  border: 1.5px solid var(--chalk-35);
}
.btn-ghost-light:hover { border-color: var(--chalk-80); color: var(--chalk); }

.btn-ghost {
  background: transparent;
  color: var(--court);
  border: 1.5px solid rgba(14,59,46,0.3);
}
.btn-ghost:hover { border-color: var(--court); }

.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: var(--r-md); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   PILLS / BADGES
═══════════════════════════════════════════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill-signal { background: rgba(232,255,82,0.15); color: var(--signal); border: 1px solid rgba(232,255,82,0.3); }
.pill-clay   { background: var(--clay); color: var(--chalk); }
.pill-court  { background: var(--court); color: var(--chalk); }
.pill-ink    { background: var(--ink); color: var(--chalk); }
.pill-paper  { background: var(--paper2); color: var(--muted); }
.pill-outline{ background: transparent; border: 1.5px solid var(--line); color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   LIVE DOT
═══════════════════════════════════════════════════════ */
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
  animation: live-pulse 2.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,255,82,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(232,255,82,0); }
}

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(244,239,230,0.80);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.nav.scrolled {
  background: rgba(244,239,230,0.94);
  border-color: var(--line);
  box-shadow: 0 1px 20px rgba(11,31,26,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo img {
  height: 30px;
  width: auto;
  /* removes solid white background from the PNG on light nav */
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-right: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--court);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 12px;
  border-radius: var(--r-xs);
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 16px var(--gutter);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--court); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--court);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

/* background layers */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,254,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,254,247,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(8,22,17,0.5));
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,82,0.07) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,81,43,0.05) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  padding-block: 60px 80px;
}
.hero-copy {
  flex: 1 1 0;
  min-width: 0;
}
/* left */
.hero-headline {
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--chalk);
  margin-bottom: 24px;
  max-width: 11ch;
}
.hero-headline em { color: var(--signal); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--chalk-55);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 64px; }

/* stat strip */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--chalk-12);
  padding-top: 36px;
}
.hero-stat {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid var(--chalk-12);
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--chalk);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-35);
  margin-top: 6px;
}

/* right — phone column */
.hero-phone-wrap {
  flex: 0 0 360px;
  width: 360px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   PHONE MOCKUP
═══════════════════════════════════════════════════════ */
.phone {
  width: 300px;
  background: #0d1a17;
  border-radius: 48px;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  position: relative;
  aspect-ratio: 390/844;
  display: flex;
  flex-direction: column;
  user-select: none;
}
.phone-di { /* dynamic island */
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 30px;
  background: #0d1a17;
  border-radius: 99px;
  z-index: 10;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 4px;
  flex-shrink: 0;
}
.phone-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--chalk);
}
.phone-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}
.phone-icon-bar {
  width: 14px; height: 9px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.phone-icon-bar span {
  display: block;
  width: 3px;
  background: var(--chalk);
  border-radius: 1px;
}
.phone-icon-bar span:nth-child(1) { height: 40%; }
.phone-icon-bar span:nth-child(2) { height: 65%; }
.phone-icon-bar span:nth-child(3) { height: 90%; }
.phone-battery {
  width: 18px; height: 10px;
  border: 1.5px solid rgba(255,254,247,0.5);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}
.phone-battery::before {
  content: '';
  position: absolute;
  right: -3px; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 5px;
  background: rgba(255,254,247,0.5);
  border-radius: 0 1px 1px 0;
}
.phone-battery::after {
  content: '';
  position: absolute;
  inset: 2px 4px;
  background: var(--chalk);
  border-radius: 1px;
}

/* phone screen content */
.phone-screen {
  flex: 1;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
/* topbar */
.pscreen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 8px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.pscreen-brand {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--court);
  letter-spacing: -0.02em;
}
.pscreen-icons { display: flex; gap: 10px; align-items: center; }
.pscreen-search {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  background: var(--paper2);
}
.pscreen-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--court);
  color: var(--chalk);
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* sport tabs */
.pscreen-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 14px 6px;
  overflow-x: auto;
  flex-shrink: 0;
  background: var(--paper);
}
.pscreen-tabs::-webkit-scrollbar { display: none; }
.pscreen-chip {
  padding: 5px 10px;
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.pscreen-chip.on  { background: var(--court); color: var(--chalk); }
.pscreen-chip.off { background: var(--paper2); color: var(--muted); }

/* section label */
.pscreen-label {
  padding: 8px 14px 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  flex-shrink: 0;
}

/* hero game card */
.pscreen-hero-card {
  margin: 0 12px 8px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11,31,26,0.12);
  flex-shrink: 0;
  background: var(--court);
}
.phc-top {
  background: var(--court);
  padding: 14px 16px 12px;
  position: relative;
}
.phc-badge {
  position: absolute;
  top: 12px; right: 14px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(232,255,82,0.12);
  border: 1px solid rgba(232,255,82,0.25);
  border-radius: 99px;
  padding: 3px 8px;
  font-size: 8px; font-weight: 800; color: var(--signal);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
}
.phc-badge .live-dot { width: 5px; height: 5px; }
.phc-sport {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; font-weight: 700;
  color: rgba(255,254,247,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.phc-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--chalk);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.phc-meta {
  font-size: 9px;
  color: rgba(255,254,247,0.5);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.phc-bottom {
  background: var(--chalk);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phc-avatars { display: flex; }
.phc-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--chalk);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800;
  color: var(--chalk);
  margin-left: -7px;
  flex-shrink: 0;
}
.phc-av:first-child { margin-left: 0; }
.phc-spots {
  font-size: 9px;
  font-weight: 700;
  color: var(--clay);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

/* join btn */
.pscreen-join {
  margin: 0 12px 8px;
  background: var(--signal);
  color: var(--ink);
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* mini player card */
.pscreen-player {
  margin: 0 12px 6px;
  background: var(--chalk);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 6px rgba(11,31,26,0.06);
  flex-shrink: 0;
}
.psp-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--paper2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.psp-name  { font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.psp-meta  { font-size: 9px; color: var(--muted); font-family: 'JetBrains Mono', monospace; margin-top: 1px; }
.psp-badge {
  margin-left: auto;
  background: var(--court);
  color: var(--chalk);
  border-radius: 99px;
  padding: 4px 9px;
  font-size: 8px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* bottom nav */
.pscreen-nav {
  margin-top: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 12px;
  background: rgba(244,239,230,0.95);
  border-top: 1px solid var(--line);
}
.psnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.psnav-icon { font-size: 16px; }
.psnav-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--court);
}
.psnav-item.off .psnav-icon { opacity: 0.25; }
.psnav-item.off .psnav-dot { display: none; }

/* ═══════════════════════════════════════════════════════
   FLOATING HERO CARDS
═══════════════════════════════════════════════════════ */
.float-card {
  position: absolute;
  border-radius: 16px;
  padding: 13px 15px;
  min-width: 170px;
  max-width: 196px;
  z-index: 5;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.45),
    0 6px 20px rgba(0,0,0,0.28);
}

/* Card 1 — dark match card, upper-right corner of phone */
.float-top {
  background: var(--court);
  border: 1px solid rgba(255,255,255,0.10);
  top: 56px;
  right: -52px;
  animation: float-bob 4.2s ease-in-out infinite;
}

/* Card 2 — light court status, lower-left corner of phone */
.float-bot {
  background: var(--chalk);
  border: 1px solid rgba(11,31,26,0.09);
  bottom: 128px;
  left: 12px;
  animation: float-bob 4.2s ease-in-out infinite;
  animation-delay: -2.1s;
}

/* ── shared row header ── */
.fc-row-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.fc-sport-icon { font-size: 14px; line-height: 1; flex-shrink: 0; }

.fc-mono-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  flex: 1;
}
.float-top .fc-mono-label { color: rgba(255,254,247,0.45); }
.float-bot .fc-mono-label { color: var(--muted); }

/* percentage pill */
.fc-pct-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--signal);
  background: rgba(232,255,82,0.15);
  padding: 2px 7px;
  border-radius: 99px;
}

/* compatibility bar */
.fc-compat-bar-wrap { margin-bottom: 10px; }
.fc-compat-bar {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  overflow: hidden;
}
.fc-compat-bar-fill {
  height: 100%;
  width: 96%;
  background: var(--signal);
  border-radius: 99px;
}

/* player avatar row */
.fc-player-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-av {
  width: 23px;
  height: 23px;
  border-radius: 99px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-top .fc-av {
  background: rgba(255,254,247,0.12);
  color: var(--chalk);
  border: 1px solid rgba(255,254,247,0.18);
}
.float-bot .fc-av {
  background: rgba(14,59,46,0.08);
  color: var(--court);
  border: 1px solid rgba(14,59,46,0.14);
}
.fc-player-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
}
.float-top .fc-player-meta { color: rgba(255,254,247,0.45); }

/* live badge */
.fc-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clay);
  text-transform: uppercase;
}

/* big slot number */
.fc-slots-big {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 600;
  color: var(--court);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-block: 5px 9px;
}
.fc-slots-denom {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.4;
}

/* game info footer */
.fc-game-info {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-top: 8px;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-11px); }
}

/* hide floating cards on small viewports where phone is hidden */
@media (max-width: 900px) {
  .float-card { display: none; }
}

/* ═══════════════════════════════════════════════════════
   SPORTS MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--ink);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-35);
  border-right: 1px solid rgba(255,254,247,0.06);
  flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--signal); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════ */
.problem { padding: var(--section-pad) 0; background: var(--paper); }
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left { position: sticky; top: 88px; }
.problem-headline {
  font-size: var(--text-section);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 24px;
}
.problem-body {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 40px;
}
.problem-cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--court);
}
.problem-cta-note svg { flex-shrink: 0; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pain-card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.pain-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clay), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover {
  border-color: rgba(11,31,26,0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pain-card:hover::after { opacity: 1; }
.pain-icon { font-size: 22px; margin-bottom: 14px; }
.pain-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.pain-body  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.how { padding: var(--section-pad) 0; background: var(--paper2); }
.section-head { text-align: center; margin-bottom: 80px; }
.section-headline {
  font-size: var(--text-section);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-headline em { color: var(--clay); }
.section-sub {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.68;
}

/* on dark bg */
.section-headline-chalk { color: var(--chalk); }
.section-sub-chalk { color: var(--chalk-55); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.step {
  background: var(--chalk);
  padding: 36px 28px 32px;
  transition: background 0.25s;
  position: relative;
}
.step:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.step:last-child  { border-radius: 0 var(--r-xl) var(--r-xl) 0; }
.step:hover { background: var(--paper); }
.step-num {
  font-size: 60px;
  font-weight: 300;
  color: rgba(11,31,26,0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.step-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--court);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-body  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.features { padding: var(--section-pad) 0; background: var(--paper); }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 80px;
  border-bottom: 1px solid var(--line);
}
.feature-block:first-child { padding-top: 0; }
.feature-block:last-child  { border-bottom: none; padding-bottom: 0; }
.feature-block.flip .feature-vis { order: -1; }

.feature-headline {
  font-size: var(--text-feature);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 18px;
}
.feature-body {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 460px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.55;
  align-items: flex-start;
}
.feature-list-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--court);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list-check svg { width: 10px; height: 10px; }

/* feature visual */
.feature-vis { display: flex; flex-direction: column; gap: 12px; }

/* ui card — generic */
.ui-card {
  background: var(--chalk);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.3s;
}
.ui-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ui-card-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.ui-card-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.ui-card-body  { padding: 16px 22px; }
.ui-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.ui-row:last-child { border-bottom: none; }
.ui-row-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.ui-row-val { font-size: 14px; font-weight: 600; color: var(--ink); }
.ui-row-val.positive { color: var(--court); }
.ui-row-val.clay { color: var(--clay); }

/* match score ring */
.match-ring-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.match-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--court) 0% 96%, var(--paper2) 96% 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.match-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--chalk);
  border-radius: 50%;
}
.match-ring-num {
  position: relative;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 700;
  color: var(--court);
}
.match-ring-info .ring-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.match-ring-info .ring-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* feed cards */
.feed-item {
  background: var(--chalk);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feed-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.feed-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  color: var(--chalk);
  flex-shrink: 0;
}
.feed-name   { font-size: 14px; font-weight: 700; color: var(--ink); }
.feed-action { font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.45; }
.feed-tags   { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.feed-time   {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--subtle);
  margin-top: 6px; letter-spacing: 0.04em;
}

/* trust cards */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trust-card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trust-num {
  font-size: 38px;
  font-weight: 600;
  color: var(--court);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   SPORTS
═══════════════════════════════════════════════════════ */
.sports { padding: var(--section-pad) 0; background: var(--ink); }
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
}
.sport-card {
  border-radius: var(--r-2xl);
  padding: 40px 32px;
  border: 1px solid rgba(255,254,247,0.06);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.sport-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.06;
  transition: opacity 0.4s, transform 0.4s;
}
.sport-card:hover { transform: translateY(-6px); border-color: rgba(255,254,247,0.12); }
.sport-card:hover::before { opacity: 0.1; transform: scale(1.2); }

/* sport-specific */
.sport-pickleball { background: linear-gradient(145deg, rgba(232,255,82,0.04) 0%, transparent 60%); }
.sport-pickleball::before { background: var(--signal); }
.sport-padel      { background: linear-gradient(145deg, rgba(200,81,43,0.06) 0%, transparent 60%); }
.sport-padel::before { background: var(--clay); }
.sport-tennis     { background: linear-gradient(145deg, rgba(14,59,46,0.2) 0%, transparent 60%); }
.sport-tennis::before { background: var(--court); }

.sport-icon-wrap {
  width: 68px; height: 68px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  margin-bottom: 28px;
}
.sport-icon-pk { background: rgba(232,255,82,0.12); }
.sport-icon-pd { background: rgba(200,81,43,0.12); }
.sport-icon-tn { background: rgba(14,59,46,0.35); }

.sport-name {
  font-size: 32px;
  font-weight: 300;
  color: var(--chalk);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.sport-desc {
  font-size: 14px;
  color: var(--chalk-55);
  line-height: 1.7;
  margin-bottom: 28px;
}
.sport-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sport-tag {
  padding: 5px 11px;
  border-radius: var(--r-full);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--chalk-06);
  border: 1px solid rgba(255,254,247,0.08);
  color: var(--chalk-55);
  transition: background 0.2s, color 0.2s;
}
.sport-card:hover .sport-tag { background: rgba(255,254,247,0.08); color: var(--chalk-80); }

/* sport accent tags */
.sport-pickleball .sport-tag:first-child { background: rgba(232,255,82,0.1); border-color: rgba(232,255,82,0.2); color: var(--signal); }
.sport-padel .sport-tag:first-child      { background: rgba(200,81,43,0.12); border-color: rgba(200,81,43,0.22); color: #e8805e; }
.sport-tennis .sport-tag:first-child     { background: rgba(14,59,46,0.4); border-color: rgba(14,59,46,0.6); color: #7db5a0; }

/* ═══════════════════════════════════════════════════════
   DOWNLOAD / CTA
═══════════════════════════════════════════════════════ */
.download {
  padding: var(--section-pad) 0;
  background: var(--court);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,254,247,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,254,247,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.download-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,82,0.08) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}
.download-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.download-headline {
  font-size: var(--text-section);
  font-weight: 300;
  color: var(--chalk);
  margin-bottom: 20px;
}
.download-headline em { color: var(--signal); }
.download-sub {
  font-size: var(--text-lg);
  color: var(--chalk-55);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Waitlist form */
.waitlist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.waitlist-input {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  background: rgba(255,254,247,0.07);
  border: 1.5px solid rgba(255,254,247,0.15);
  border-radius: var(--r-md);
  color: var(--chalk);
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.waitlist-input::placeholder { color: var(--chalk-35); }
.waitlist-input:focus { border-color: var(--signal); background: rgba(255,254,247,0.10); }

.waitlist-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-35);
  margin-bottom: 48px;
}

/* store buttons */
.store-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,254,247,0.06);
  border: 1.5px solid rgba(255,254,247,0.14);
  border-radius: var(--r-md);
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  min-width: 200px;
}
.store-btn:hover { background: rgba(255,254,247,0.12); border-color: rgba(255,254,247,0.28); transform: translateY(-2px); }
.store-btn-icon { font-size: 30px; line-height: 1; flex-shrink: 0; }
.store-label-top { font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--chalk-55); }
.store-label-bot { font-size: 19px; font-weight: 700; color: var(--chalk); line-height: 1.2; }

/* ═══════════════════════════════════════════════════════
   COMING SOON MODAL
═══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,31,26,0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--court);
  border-radius: var(--r-2xl);
  border: 1px solid rgba(255,254,247,0.10);
  padding: 48px 44px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  transform: scale(0.95) translateY(8px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,254,247,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  color: var(--chalk-55);
}
.modal-close:hover { background: rgba(255,254,247,0.16); color: var(--chalk); }
.modal-sports {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.modal-sport-badge {
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(255,254,247,0.07);
  border: 1px solid rgba(255,254,247,0.10);
  font-size: 18px;
}
.modal-headline {
  font-size: 34px;
  font-weight: 300;
  color: var(--chalk);
  margin-bottom: 12px;
}
.modal-sub {
  font-size: 16px;
  color: var(--chalk-55);
  line-height: 1.65;
  margin-bottom: 32px;
}
.modal-form { display: flex; flex-direction: column; gap: 10px; }
.modal-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,254,247,0.07);
  border: 1.5px solid rgba(255,254,247,0.15);
  border-radius: var(--r-sm);
  color: var(--chalk);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.modal-input::placeholder { color: var(--chalk-35); }
.modal-input:focus { border-color: var(--signal); background: rgba(255,254,247,0.10); }
.modal-confirm {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-35);
  margin-top: 6px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,254,247,0.07);
  margin-bottom: 32px;
}
.footer-logo { height: 30px; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 18px; }
.footer-tagline { font-size: 13px; color: var(--chalk-35); line-height: 1.7; max-width: 250px; }
.footer-col-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,254,247,0.25);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: var(--chalk-55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--chalk); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,254,247,0.2);
  letter-spacing: 0.06em;
}
.footer-sports { display: flex; gap: 8px; }
.footer-sport {
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(255,254,247,0.04);
  border: 1px solid rgba(255,254,247,0.07);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,254,247,0.25);
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.16,1,0.3,1),
    transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: 0.08s; }
[data-reveal][data-d="2"] { transition-delay: 0.16s; }
[data-reveal][data-d="3"] { transition-delay: 0.24s; }
[data-reveal][data-d="4"] { transition-delay: 0.32s; }
[data-reveal][data-d="5"] { transition-delay: 0.42s; }
[data-reveal][data-d="6"] { transition-delay: 0.52s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { gap: 32px; }
  .hero-phone-wrap { flex: 0 0 300px; width: 300px; }
  .phone { width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; padding-bottom: 60px; }
  .hero-phone-wrap { display: none; }
  .problem-layout { grid-template-columns: 1fr; }
  .problem-left { position: static; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .step:first-child { border-radius: var(--r-xl) 0 0 0; }
  .step:nth-child(2) { border-radius: 0 var(--r-xl) 0 0; }
  .step:nth-child(3) { border-radius: 0 0 0 var(--r-xl); }
  .step:last-child  { border-radius: 0 0 var(--r-xl) 0; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.flip .feature-vis { order: 0; }
  .sports-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .step { border-radius: 0 !important; }
  .steps-row { border-radius: var(--r-xl); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .modal { padding: 36px 24px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; }
}
