/* ============================================================
   CourtyCLUB — Design System
   Brand: #003399  |  Success: #22C55E  |  BG: #F1F5FB
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

/* ── Variables ────────────────────────────────────────────── */
:root {
  /* colours */
  --brand-navy:      #003399;
  --brand-navy-hover:#0028CC;
  --brand-lime:      #C8E64B;
  --success:         #22C55E;
  --success-deep:    #166534;
  --success-bg:      #DCFCE7;
  --warning:         #F59E0B;
  --danger:          #EF4444;
  --danger-light:    #FEF2F2;
  --surface:         #FFFFFF;
  --bg:              #F1F5FB;
  --bg-muted:        #E8EEF8;
  --text-1:          #0f172a;
  --text-2:          #64748b;
  --text-3:          #94a3b8;
  --border:          #E2E8F0;
  --border-strong:   #CBD5E1;
  --accent-blue-bg:  #EEF2FF;

  /* legacy aliases (keeps existing components working) */
  --accent:          var(--brand-navy);
  --accent-hover:    var(--brand-navy-hover);
  --accent-light:    var(--accent-blue-bg);
  --green:           var(--success);
  --green-hover:     var(--success-deep);
  --green-light:     var(--success-bg);
  --text:            var(--text-1);
  --text-muted:      var(--text-2);
  --text-light:      var(--text-3);
  --bg-subtle:       var(--bg);
  --white:           var(--surface);
  --dark:            var(--text-1);
  --dark-mid:        #1e293b;

  /* shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-1:    0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-sm:   var(--shadow-1);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-pop:  0 8px 28px rgba(15,23,42,.13);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);

  /* radii */
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  18px;
  --r-xl:  26px;
  --radius-sm: var(--r-sm);
  --radius:    var(--r);
  --radius-lg: var(--r-lg);
  --radius-xl: var(--r-xl);

  /* misc */
  --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:     150ms ease;
  --header-h: 68px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-1);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }


.section { padding: 96px 0; }
.section.alt { background: var(--bg); }
.section.dark { background: var(--brand-navy); color: #fff; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  color: var(--brand-navy); text-transform: uppercase;
}

/* ── HEADER / NAV ────────────────────────────────────────── */
.header {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-h);
}
@media (max-width: 720px) { .nav-container { padding: 0 20px; } }

/* Logo / brand */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-1);
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.logo-image { width: 34px; height: 34px; border-radius: 8px; object-fit: contain; }
.logo-text  { color: var(--text-1); }
.logo-em    { color: var(--brand-navy); }

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-link:hover  { color: var(--brand-navy); background: var(--accent-blue-bg); }
.nav-link.active { color: var(--brand-navy); font-weight: 700; background: var(--accent-blue-bg); }

/* CTA buttons in nav */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--ease);
}
.hamburger:hover { background: var(--bg); }
.bar {
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s ease, opacity .25s ease;
    pointer-events: none;
    z-index: 40;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { font-size: 15px; padding: 10px 14px; width: 100%; }
  .nav-cta  { display: none; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--ease), opacity var(--ease), transform 100ms, box-shadow var(--ease);
  white-space: nowrap;
}
.btn:active { opacity: .9; }
.btn-primary {
  background: var(--brand-navy);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-navy-hover); box-shadow: 0 4px 14px rgba(0,51,153,.3); }
.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover { background: var(--success-deep); }
.btn-ghost {
  background: transparent;
  color: var(--text-1);
}
.btn-ghost:hover { background: var(--bg); }
.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
}
.btn-outline:hover { background: var(--accent-blue-bg); }
.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover { background: #DC2626; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-sm  { padding: 7px 14px;  font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────────────── */
.hero,
.hero-new {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 12% 0%, #EEF2FF 0%, transparent 60%),
    radial-gradient(50% 60% at 88% 8%, #DCFCE7 0%, transparent 60%),
    var(--surface);
}

.hero-grid,
.hero-container-new {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 960px) {
  .hero-grid,
  .hero-container-new {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }
  .hero, .hero-new { padding: 56px 0 40px; }
}

.hero-copy,
.hero-center { max-width: 560px; }

.eyebrow { margin-bottom: 8px; display: block; }

.hero h1,
.brand-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.04;
  margin: 14px 0 20px;
  color: var(--text-1);
  text-wrap: balance;
}
.hero h1 .hl,
.brand-title .hl { color: var(--brand-navy); }

.hero-tagline {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 16px;
  letter-spacing: -.01em;
}

.hero-sub,
.hero-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.hero-ctas,
.hero-buttons,
.app-links { display: flex; flex-direction: column; gap: 16px; }

.hero-ctas .btns-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.store-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--text-1);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--ease), transform 100ms;
}
.store-btn:hover  { background: #1e293b; transform: translateY(-1px); }
.store-btn small  { display: block; font-size: 10px; font-weight: 400; opacity: .7; }
.store-btn span   { display: flex; flex-direction: column; }

.download-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.features-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ease);
}
.features-link:hover { gap: 8px; }

.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-meta .pair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}
.hero-meta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
}

/* Hero logo */
.hero-logo-container { margin: 16px 0; }
.hero-logo-image { width: 72px; height: 72px; border-radius: 18px; object-fit: contain; box-shadow: var(--shadow-pop); }

/* ── PHONE MOCKUP ────────────────────────────────────────── */
.hero-phone-wrap,
.phone-left, .phone-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.phone,
.phone-mockup-new {
  width: 280px;
  height: 560px;
  border-radius: 44px;
  background: #0F172A;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,51,153,.22), 0 8px 24px rgba(15,23,42,.16);
  position: relative;
  z-index: 1;
}

.phone .screen,
.phone-screen-new {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.phone .notch,
.phone-notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0F172A;
  border-radius: 999px;
  z-index: 3;
}

/* Screenshot backgrounds */
.phone-screen-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.home-screen { background-image: url('screenshots/player/player-01-home.jpeg'); }

/* Second phone (tilted) */
.phone-2,
.phone-mockup-new.featured {
  position: absolute;
  right: -32px;
  bottom: -16px;
  width: 200px;
  height: 400px;
  border-radius: 36px;
  padding: 10px;
  background: #0F172A;
  box-shadow: 0 20px 60px rgba(15,23,42,.22);
  transform: rotate(7deg);
}
.phone-mockup-new.featured .phone-screen-new { border-radius: 26px; }

/* Main phone tilt */
.phone,
.phone-mockup-new:not(.featured) { transform: rotate(-3deg); }

/* Floating chips */
.float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-pop);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  z-index: 2;
}
.float .ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.float .l  { font-size: 10px; font-weight: 700; color: var(--text-2); letter-spacing: .5px; text-transform: uppercase; }
.float .v  { font-size: 13px; font-weight: 700; color: var(--text-1); margin-top: 2px; }

@media (max-width: 720px) {
  .phone, .phone-mockup-new:not(.featured) { width: 220px; height: 440px; }
  .phone-2, .phone-mockup-new.featured { display: none; }
  .float { display: none; }
  .hero-phone-wrap, .phone-left, .phone-right { min-height: 440px; }
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.08;
  margin: 14px 0 18px;
  color: inherit;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  text-wrap: pretty;
}
.section.dark .section-head p { color: rgba(255,255,255,.74); }

.content-header,
.page-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.content-header h1, .page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--text-1);
}
.content-header p, .page-header p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── FEATURE GRID ────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.feat:hover { box-shadow: var(--shadow-pop); transform: translateY(-2px); }

.feat .ic-box {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.feat h3  { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--text-1); }
.feat p   { font-size: 14px; line-height: 1.55; color: var(--text-2); }

/* ── SPLIT SECTIONS ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
}

.split-copy h3 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.1;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.split-copy p  {
  font-size: 16px; line-height: 1.6; color: var(--text-2);
  margin: 0 0 22px; max-width: 520px;
}

.checklist { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--text-1);
}
.checklist .check {
  width: 24px; height: 24px; border-radius: 12px; flex-shrink: 0;
  background: var(--success-bg); color: var(--success-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.checklist li b     { font-weight: 700; color: var(--text-1); }
.checklist li span  { color: var(--text-2); }

/* Product shot mock */
.product-shot {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(15,23,42,.1);
  overflow: hidden;
}
.product-shot .titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #F8FAFC;
}
.product-shot .titlebar .dot { width: 11px; height: 11px; border-radius: 6px; }
.product-shot .titlebar .red { background: #FF5F57; }
.product-shot .titlebar .yel { background: #FEBC2E; }
.product-shot .titlebar .grn { background: #28C840; }
.product-shot .titlebar .url {
  margin-left: 12px; padding: 4px 12px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; font-size: 11px; color: var(--text-2);
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.product-shot .body { padding: 24px; min-height: 320px; }

/* ── STATS DARK ──────────────────────────────────────────── */
.stats-dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .stats-dark { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.stats-dark .stat .n {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800; line-height: 1;
  color: #fff; letter-spacing: -.025em;
}
.stats-dark .stat .n .em { color: var(--brand-lime); }
.stats-dark .stat .l { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500; margin-top: 8px; }

/* ── CTA CARD ────────────────────────────────────────────── */
.cta-card {
  background: var(--brand-navy);
  color: #fff;
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before, .cta-card::after {
  content: ""; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  opacity: .12; pointer-events: none;
}
.cta-card::before { background: var(--brand-lime); top: -120px; left: -80px; }
.cta-card::after  { background: #fff; bottom: -140px; right: -80px; }
.cta-card h3 {
  position: relative;
  font-size: clamp(26px, 4vw, 44px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.1;
  margin: 0 0 14px; text-wrap: balance;
}
.cta-card p {
  position: relative;
  font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.75);
  margin: 0 auto 28px; max-width: 520px;
}
.cta-card .btn-row {
  position: relative;
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.cta-card .btn-light  { background: #fff; color: var(--brand-navy); }
.cta-card .btn-light:hover { background: var(--bg); }
.cta-card .btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); border-radius: 999px; }
.cta-card .btn-outline-w:hover { background: rgba(255,255,255,.1); }
@media (max-width: 640px) { .cta-card { padding: 48px 24px; } }

/* ── LOGO STRIP ──────────────────────────────────────────── */
.logo-strip {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--border);
}
.logo-strip-label {
  text-align: center; font-size: 12px; font-weight: 600;
  color: var(--text-2); letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 24px;
}
.logo-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px;
  align-items: center; opacity: .75;
}
@media (max-width: 720px) { .logo-row { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; } }
.logo-row .lg {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--text-2);
}

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testi {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
}
.testi-q {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500; line-height: 1.45;
  color: var(--text-1); margin: 0 0 24px;
  letter-spacing: -.01em;
}
.testi-q::before { content: "\201C"; color: var(--brand-navy); font-weight: 800; }
.testi-q::after  { content: "\201D"; color: var(--brand-navy); font-weight: 800; }
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-who .av {
  width: 48px; height: 48px; border-radius: 24px;
  background: var(--brand-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testi-who .n { font-size: 15px; font-weight: 700; color: var(--text-1); }
.testi-who .r { font-size: 13px; color: var(--text-2); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
}
.foot-grid,
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .foot-grid,
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .foot-grid,
  .footer-content { grid-template-columns: 1fr; }
}

.footer-logo,
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo img { width: 40px; height: 40px; border-radius: 10px; }
.footer-logo p,
.foot-brand p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 260px;
  margin: 0;
}

.footer-logo-img { width: 40px !important; height: 40px !important; }

.footer-section h4,
.foot-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 14px;
}
.footer-section ul,
.foot-col ul { display: grid; gap: 8px; }
.footer-section a,
.foot-col a {
  font-size: 14px;
  color: var(--text-1);
  transition: color var(--ease);
}
.footer-section a:hover,
.foot-col a:hover { color: var(--brand-navy); }

.footer-links { display: contents; }

.footer-bottom,
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
  gap: 16px;
  flex-wrap: wrap;
}

.foot-social { display: flex; gap: 8px; }
.foot-social .ic {
  width: 36px; height: 36px; border-radius: 18px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-1); transition: background var(--ease), color var(--ease);
  font-size: 16px;
}
.foot-social .ic:hover { background: var(--accent-blue-bg); color: var(--brand-navy); }

/* ── FEATURES PAGE ───────────────────────────────────────── */
.features-hero {
  padding: 100px 0 64px;
  background:
    radial-gradient(60% 70% at 12% 0%, #EEF2FF 0%, transparent 60%),
    radial-gradient(50% 60% at 88% 8%, #DCFCE7 0%, transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}
.features-hero-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.features-hero-badge {
  display: inline-block;
  background: var(--accent-blue-bg);
  color: var(--brand-navy);
  font-size: .75rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 999px; margin-bottom: 18px;
}
.features-hero-title {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
  color: var(--text-1); margin-bottom: 16px; line-height: 1.1;
}
.features-hero-desc {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.7; margin-bottom: 36px;
}
.features-hero-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.ftab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: all .2s;
}
.ftab-club { background: var(--brand-navy); color: #fff; }
.ftab-club:hover  { background: var(--brand-navy-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,51,153,.25); }
.ftab-player { background: var(--success); color: #fff; }
.ftab-player:hover { background: var(--success-deep); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,.3); }

/* Audience sections */
.audience-section { padding: 80px 0; }
.club-section   { background: #fff; }
.player-section { background: var(--bg); }

.audience-header { text-align: center; margin-bottom: 60px; }
.audience-badge {
  display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; margin-bottom: 16px;
}
.club-badge   { background: var(--accent-blue-bg); color: var(--brand-navy); }
.player-badge { background: var(--success-bg);     color: var(--success-deep); }

.audience-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--text-1); margin-bottom: 12px; letter-spacing: -.02em;
}
.audience-subtitle { font-size: 1rem; color: var(--text-2); line-height: 1.6; max-width: 600px; margin: 0 auto; }

/* Showcase layout */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.showcase-reverse { grid-template-columns: 1fr 1fr; }
.showcase-reverse .feature-details { order: 1; }
.showcase-reverse .phone-showcase   { order: 0; }
@media (max-width: 860px) {
  .showcase, .showcase-reverse { grid-template-columns: 1fr; }
  .phone-showcase { display: flex; justify-content: center; }
}

/* Phone showcase */
.phone-showcase { display: flex; justify-content: center; }
.showcase-phone {
  position: relative;
  width: 240px;
}
.sp-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px; background: #0F172A; border-radius: 999px; z-index: 3;
}
.sp-screen {
  width: 240px; height: 480px; border-radius: 36px;
  background: #0F172A; padding: 10px;
  box-shadow: 0 24px 64px rgba(0,51,153,.2), 0 6px 20px rgba(15,23,42,.14);
  overflow: hidden; position: relative;
}
.sp-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top; border-radius: 26px;
  opacity: 0; transition: opacity .4s ease;
}
.sp-img.active { opacity: 1; }
.sp-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 16px;
}
.sp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-strong); cursor: pointer; transition: all .2s;
}
.sp-dot.active { background: var(--brand-navy); width: 18px; border-radius: 4px; }

/* Feature detail list */
.feature-details { display: flex; flex-direction: column; gap: 6px; }
.fd-item {
  display: flex; gap: 14px; padding: 14px 16px; border-radius: var(--r-lg);
  cursor: pointer; border: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease);
}
.fd-item:hover  { background: var(--bg); }
.fd-item.active { background: var(--accent-blue-bg); border-color: rgba(0,51,153,.12); }
.player-features .fd-item.active { background: var(--success-bg); border-color: rgba(34,197,94,.15); }
.fd-icon { font-size: 24px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.fd-body h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.fd-body ul  { list-style: disc; padding-left: 16px; display: none; }
.fd-item.active .fd-body ul { display: grid; gap: 3px; }
.fd-body ul li { font-size: 13px; color: var(--text-2); line-height: 1.55; }

.club-icon   { color: var(--brand-navy); }
.player-icon { color: var(--success-deep); }

/* Why / Benefits */
.why-section { padding: 80px 0; background: var(--bg); }
.why-header  { text-align: center; margin-bottom: 48px; }

.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 760px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.benefit-card:hover { box-shadow: var(--shadow-pop); transform: translateY(-2px); }
.benefit-icon { font-size: 28px; line-height: 1; }
.benefit-card h4 { font-size: 16px; font-weight: 700; color: var(--text-1); }
.benefit-card p  { font-size: 14px; color: var(--text-2); }

/* Stats strip */
.courty-stats {
  background: var(--brand-navy); padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; }
.stat-icon { font-size: 24px; display: block; margin-bottom: 10px; }
.stat-item h4 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.stat-item p  { font-size: 13px; color: rgba(255,255,255,.7); }

/* Features CTA */
.features-cta {
  background:
    radial-gradient(60% 70% at 12% 0%, #EEF2FF 0%, transparent 60%),
    radial-gradient(50% 60% at 88% 8%, #DCFCE7 0%, transparent 60%),
    var(--surface);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.features-cta h3 {
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 800;
  color: var(--text-1); margin-bottom: 28px; letter-spacing: -.02em;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-content {
  display: grid; grid-template-columns: 1fr 2fr; gap: 28px; margin-bottom: 40px;
}
@media (max-width: 760px) { .contact-content { grid-template-columns: 1fr; } }

.contact-info-card,
.contact-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
}
.contact-info-card h2,
.contact-form-card h2 {
  font-size: 20px; font-weight: 800; color: var(--text-1); margin-bottom: 20px;
}
.contact-details { display: grid; gap: 16px; }
.contact-item h3 { font-size: 13px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-item p  { font-size: 15px; color: var(--text-1); }

.contact-form { display: grid; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-1); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font); font-size: 14px; color: var(--text-1);
  background: var(--surface);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(0,51,153,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.account-actions { display: flex; justify-content: center; margin-top: 12px; }
.action-card {
  background: var(--danger-light);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--r-lg); padding: 28px 40px;
  text-align: center; max-width: 480px; width: 100%;
}
.action-card h3  { font-size: 17px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.action-card p   { font-size: 14px; color: var(--text-2); margin-bottom: 16px; }

/* ── PARTNERS PAGE ───────────────────────────────────────── */
.coming-soon-container { margin: 40px 0; display: flex; justify-content: center; }
.coming-soon-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 48px 40px;
  text-align: center; max-width: 540px; width: 100%;
  box-shadow: var(--shadow-md);
}
.coming-soon-icon  { font-size: 48px; line-height: 1; margin-bottom: 16px; }
.coming-soon-card h3 { font-size: 22px; font-weight: 800; color: var(--text-1); margin-bottom: 12px; }
.coming-soon-card p  { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; }
.coming-soon-features { display: grid; gap: 10px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border-radius: var(--r); padding: 10px 14px;
  font-size: 14px; color: var(--text-1); font-weight: 500;
}
.feature-icon { font-size: 18px; }
.back-to-home { margin-top: 28px; display: flex; justify-content: center; }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.lang-switcher { background: var(--bg); border-bottom: 1px solid var(--border); }
.lang-switcher-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; flex-wrap: wrap;
}
.lang-switcher-label { font-size: 13px; color: var(--text-2); font-weight: 600; }
.lang-btn {
  padding: 6px 14px; border-radius: 999px; border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; background: #fff; color: var(--text-2);
  cursor: pointer; transition: all var(--ease);
}
.lang-btn.active  { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.lang-btn:hover:not(.active) { border-color: var(--brand-navy); color: var(--brand-navy); }
.lang-section { display: block; }

.policy-hero {
  padding: 80px 0 48px;
  background:
    radial-gradient(50% 60% at 10% 0%, #EEF2FF 0%, transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}
.policy-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; margin-bottom: 16px;
}
.policy-section h2 { font-size: 18px; font-weight: 700; color: var(--brand-navy); margin-bottom: 14px; }
.policy-section h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin: 16px 0 8px; }
.policy-section p  { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 10px; }
.policy-section ul { list-style: disc; padding-left: 20px; display: grid; gap: 6px; }
.policy-section ul li { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.policy-section table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px; }
.policy-section th, .policy-section td { padding: 10px; border: 1px solid var(--border); text-align: left; }
.policy-section th { background: var(--bg); font-weight: 700; color: var(--text-1); }
.policy-section td { color: var(--text-2); }

.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--text-1); margin-bottom: 4px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-in-left  { opacity: 0; transform: translateX(-24px); transition: opacity .55s ease, transform .55s ease; }
.slide-in-right { opacity: 0; transform: translateX(24px);  transition: opacity .55s ease, transform .55s ease; }
.slide-in-left.visible,
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in { opacity: 0; transform: scale(.94); transition: opacity .55s ease, transform .55s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ── ACCORDION ───────────────────────────────────────────── */
.accordion-container { display: grid; gap: 8px; }
.accordion-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.accordion-header {
  padding: 18px 22px; font-size: 15px; font-weight: 600;
  color: var(--text-1); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  background: none; border: 0; width: 100%; text-align: left;
  transition: background var(--ease);
}
.accordion-header:hover { background: var(--bg); }
.accordion-item.active .accordion-header { color: var(--brand-navy); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item.active .accordion-body { max-height: 1000px; }
.accordion-body p { padding: 0 22px 18px; font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ── RIPPLE ──────────────────────────────────────────────── */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transform: scale(0); pointer-events: none;
  animation: ripple-anim .6s ease-out;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ── MISC UTILITIES ──────────────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none; }
