/* ========================================
   SmashRank Landing Page - Styles
   ======================================== */

/* ─── CSS Custom Properties ─── */
:root {
  /* Primary - Deep Forest Green */
  --primary: #1B4332;
  --primary-light: #2D6A4F;
  --primary-dark: #0B2B1E;
  --primary-surface: #E8F0EC;

  /* Secondary - Champagne Gold */
  --secondary: #C9A84C;
  --secondary-light: #DFC77A;
  --secondary-dark: #A38A30;
  --secondary-surface: #FBF7EC;

  /* Backgrounds & Surfaces */
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --surface-variant: #F5F2ED;
  --surface-dim: #EDE9E3;

  /* Text */
  --on-primary: #FFFFFF;
  --on-bg: #2C2C2C;
  --on-bg-medium: #5C5C5C;
  --on-bg-light: #8A8A8A;

  /* Status */
  --success: #2E7D4E;
  --warning: #D4A017;
  --error: #C0392B;
  --info: #2874A6;

  /* Medal */
  --gold: #D4AF37;
  --silver: #A8A8A8;
  --bronze: #B87333;

  /* Decorative */
  --divider: #E0DCD5;
  --border: #D5D0C8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2D6A4F 0%, #1B4332 50%, #0B2B1E 100%);
  --gradient-hero: linear-gradient(160deg, #1B4332 0%, #2D6A4F 100%);
  --gradient-gold: linear-gradient(135deg, #DFC77A 0%, #C9A84C 50%, #A38A30 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 4px 12px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 8px 30px rgba(27, 67, 50, 0.14);

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-main);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-bg);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-3xl) 0;
  scroll-margin-top: 80px;
}

.section--alt {
  background-color: var(--surface-variant);
}

.section--dark {
  background: var(--gradient-primary);
  color: var(--on-primary);
}

.section--stats {
  background: var(--gradient-primary);
  color: var(--on-primary);
  padding: var(--space-2xl) 0;
}

.section--cta {
  background: var(--gradient-hero);
  color: var(--on-primary);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__title {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.section__title--light {
  color: var(--on-primary);
}

.section__subtitle {
  color: var(--on-bg-medium);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.section__subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--primary);
  color: var(--on-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: var(--space-md);
}

/* ─── Pill Badge ─── */
.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}

.pill--gold {
  background: var(--secondary-surface);
  color: var(--secondary-dark);
}

.pill--green {
  background: var(--primary-surface);
  color: var(--primary);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--primary-dark);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--on-primary);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--on-primary);
  z-index: 10;
}

.navbar.scrolled .navbar__logo {
  color: var(--primary);
}

.navbar.menu-open .navbar__logo {
  color: var(--on-primary);
}

.navbar.menu-open .navbar__hamburger span {
  background: var(--on-primary);
}

.navbar.menu-open {
  background: transparent !important;
  box-shadow: none !important;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar.scrolled .navbar__links a {
  color: var(--on-bg-medium);
}

.navbar.scrolled .navbar__links a:hover,
.navbar.scrolled .navbar__links a.active {
  color: var(--primary);
}

.navbar__links a:hover {
  color: var(--on-primary);
}

.navbar__cta {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 9999;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .navbar__hamburger:hover {
  background: rgba(27, 67, 50, 0.06);
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--on-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--primary);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu - Full screen overlay (hidden on desktop via JS - hamburger only shows on mobile) */
.navbar__mobile {
  display: none;
}

@media (max-width: 768px) {
  .navbar__mobile {
    display: block;
    position: fixed;
    inset: 0;
    background: #0B2B1E;
    z-index: 9995;
    padding: 100px var(--space-xl) var(--space-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }

  .navbar__mobile.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.navbar__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.navbar__mobile li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__mobile.open li {
  transform: translateY(0);
  opacity: 1;
}

.navbar__mobile.open li:nth-child(1) { transition-delay: 0.05s; }
.navbar__mobile.open li:nth-child(2) { transition-delay: 0.1s; }
.navbar__mobile.open li:nth-child(3) { transition-delay: 0.15s; }
.navbar__mobile.open li:nth-child(4) { transition-delay: 0.2s; }
.navbar__mobile.open li:nth-child(5) { transition-delay: 0.25s; }
.navbar__mobile.open li:nth-child(6) { transition-delay: 0.3s; }
.navbar__mobile.open li:nth-child(7) { transition-delay: 0.35s; }

.navbar__mobile a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-md) 0;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}

.navbar__mobile a:hover {
  color: var(--secondary);
  padding-left: var(--space-sm);
}

.navbar__mobile li:last-child {
  border-bottom: none;
  padding-top: var(--space-lg);
}

.navbar__mobile .btn {
  text-align: center;
  justify-content: center;
  width: 100%;
  font-size: 1rem;
  padding: 14px 24px;
}

.navbar__mobile .btn--gold:hover {
  color: var(--primary-dark);
  padding-left: 0;
}

/* ==============================
   HERO
   ============================== */
.hero {
  background: var(--gradient-hero);
  color: var(--on-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  flex: 1;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.hero__title {
  color: var(--on-primary);
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  max-width: 520px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badge svg {
  opacity: 0.7;
  flex-shrink: 0;
}

/* Hero Wave */
.hero__wave {
  margin-top: auto;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
}

/* ─── Phone Mockup ─── */
.phone-frame {
  width: 280px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  background: var(--bg);
  border-radius: 22px;
  overflow: hidden;
  padding-bottom: var(--space-md);
}

.phone-header {
  background: var(--primary);
  padding: var(--space-md) var(--space-md) var(--space-sm);
  text-align: center;
}

.phone-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--on-primary);
}

/* Podium */
.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  background: var(--primary);
}

.podium__player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 72px;
}

.podium__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.podium__avatar--gold {
  background: rgba(212, 175, 55, 0.2);
}

.podium__medal {
  font-size: 1.125rem;
  line-height: 1;
}

.podium__name {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.podium__bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  margin-top: 4px;
}

.podium__bar--gold {
  height: 52px;
  background: linear-gradient(to top, #A38A30, #D4AF37);
}

.podium__bar--silver {
  height: 38px;
  background: linear-gradient(to top, #808080, #C0C0C0);
}

.podium__bar--bronze {
  height: 28px;
  background: linear-gradient(to top, #8B5E3C, #CD7F32);
}

.podium__player--gold {
  order: 2;
}

.podium__player--silver {
  order: 1;
}

.podium__player--bronze {
  order: 3;
}

/* Phone list */
.phone-list {
  padding: var(--space-sm) var(--space-sm) 0;
}

.phone-list__item {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  font-size: 0.6875rem;
  border-bottom: 1px solid var(--divider);
  color: var(--on-bg);
}

.phone-list__pos {
  width: 20px;
  font-weight: 600;
  color: var(--on-bg-medium);
}

.phone-list__name {
  flex: 1;
  font-weight: 500;
}

.phone-list__pts {
  color: var(--on-bg-light);
  font-size: 0.625rem;
}

/* ==============================
   FEATURES GRID
   ============================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.feature-card__title {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--on-bg-medium);
  line-height: 1.6;
}

/* ==============================
   SPLIT BLOCKS (For Players)
   ============================== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.split-block:last-child {
  margin-bottom: 0;
}

.split-block--reverse {
  direction: rtl;
}

.split-block--reverse > * {
  direction: ltr;
}

.split-block__text h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.split-block__text p {
  color: var(--on-bg-medium);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--on-bg);
  font-weight: 500;
}

.check-list svg {
  flex-shrink: 0;
}

/* Visual Cards */
.visual-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  margin: 0 auto;
}

.visual-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--divider);
}

.visual-card__row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid var(--surface-variant);
}

.visual-card__row:last-child {
  border-bottom: none;
}

.pos {
  font-size: 0.75rem;
  font-weight: 600;
  width: 48px;
}

.pos--up { color: var(--success); }
.pos--down { color: var(--error); }
.pos--same { color: var(--on-bg-light); }

.pts {
  margin-left: auto;
  font-size: 0.8125rem;
  color: var(--on-bg-light);
}

/* Challenge Card */
.challenge-card {
  text-align: center;
}

.challenge-card__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.challenge-card__player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}

.challenge-card__pos {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.challenge-card__badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
  background: var(--secondary-surface);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-card__status {
  font-size: 0.8125rem;
  color: var(--warning);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  background: rgba(212, 160, 23, 0.08);
  border-radius: var(--radius-sm);
}

/* Calendar Slots */
.calendar-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.slot {
  text-align: center;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
}

.slot--available {
  background: var(--primary-surface);
  color: var(--primary);
  cursor: pointer;
}

.slot--booked {
  background: rgba(192, 57, 43, 0.1);
  color: var(--error);
}

.slot--past {
  background: var(--surface-variant);
  color: var(--on-bg-light);
}

/* ==============================
   FOR CLUBS GRID
   ============================== */
.club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.club-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.club-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.club-card__icon {
  margin-bottom: var(--space-md);
}

.club-card__title {
  font-size: 1.125rem;
  color: var(--on-primary);
  margin-bottom: var(--space-sm);
}

.club-card__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ==============================
   STEPS (How it works)
   ============================== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
  padding: 0 var(--space-md);
}

.step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.step__title {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.step__desc {
  font-size: 0.875rem;
  color: var(--on-bg-medium);
  line-height: 1.6;
}

.step__connector {
  width: 60px;
  height: 2px;
  background: var(--divider);
  margin-top: 20px;
  flex-shrink: 0;
  background-image: repeating-linear-gradient(
    90deg,
    var(--secondary-light) 0,
    var(--secondary-light) 8px,
    transparent 8px,
    transparent 16px
  );
  background-color: transparent;
}

/* ==============================
   SPORTS GRID
   ============================== */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.sport-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sport-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--on-primary);
}

.sport-card__icon--tennis { background: linear-gradient(135deg, #2D6A4F, #1B4332); }
.sport-card__icon--futsal { background: linear-gradient(135deg, #D4A017, #A38A30); }
.sport-card__icon--football { background: linear-gradient(135deg, #2E7D4E, #1B4332); }
.sport-card__icon--volleyball { background: linear-gradient(135deg, #2874A6, #1B4332); }
.sport-card__icon--beach { background: linear-gradient(135deg, #DFC77A, #C9A84C); color: var(--primary-dark); }
.sport-card__icon--footvolley { background: linear-gradient(135deg, #B87333, #A38A30); }

.sport-card__name {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.sport-card__info {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.sport-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--primary-surface);
  color: var(--primary);
}

.sport-card__surfaces {
  font-size: 0.8125rem;
  color: var(--on-bg-light);
}

/* Sport card badges */
.sport-card__badge-available {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--success);
  color: var(--on-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.sport-card__badge-soon {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--surface-dim);
  color: var(--on-bg-medium);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

/* Active sport card highlight */
.sport-card--active {
  border: 2px solid var(--success);
  box-shadow: 0 4px 20px rgba(46, 125, 78, 0.15);
}

/* Coming soon sport card - subtle opacity */
.sport-card--soon {
  opacity: 0.7;
}

.sport-card--soon:hover {
  opacity: 0.9;
}

/* ==============================
   STATS
   ============================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.stat__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary);
  display: block;
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: var(--space-xs);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.testimonial__text {
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.testimonial__author {
  font-size: 0.8125rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ==============================
   FAQ
   ============================== */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-item:first-child {
  border-top: 1px solid var(--divider);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-bg);
  text-align: left;
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--on-bg-light);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
  color: var(--on-bg-medium);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.faq-item.active {
  border-left: 3px solid var(--secondary);
  padding-left: var(--space-md);
}

/* ==============================
   CTA / DOWNLOAD
   ============================== */
.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--on-primary);
  margin-bottom: var(--space-md);
}

.cta__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
}

.cta__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  color: var(--on-primary);
  transition: background 0.2s, transform 0.2s;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.store-badge small {
  font-size: 0.6875rem;
  opacity: 0.7;
  display: block;
}

.store-badge strong {
  font-size: 1rem;
  display: block;
}

.cta__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--on-primary);
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__social a:hover {
  color: var(--secondary);
}

.footer__col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--on-primary);
  margin-bottom: var(--space-md);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ==============================
   RESPONSIVE
   ============================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    gap: var(--space-xl);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-xl);
  }

  .hero__subtitle {
    margin: 0 auto var(--space-xl);
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__mockup {
    display: flex;
    justify-content: center;
  }

  .phone-frame {
    width: 240px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .split-block {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }

  .split-block--reverse {
    direction: ltr;
  }

  .split-block__visual {
    order: -1;
  }

  .club-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }

  .step__connector {
    width: 2px;
    height: 40px;
    margin: 0;
    background-image: repeating-linear-gradient(
      180deg,
      var(--secondary-light) 0,
      var(--secondary-light) 8px,
      transparent 8px,
      transparent 16px
    );
  }

  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-lg);
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .sports-grid {
    grid-template-columns: 1fr;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }
}
