/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
  --bg: #0e1410;
  --bg2: #1a1f1b;
  --bg3: #222922;
  --green: #a8e63d;
  --green2: #7bc42a;
  --txt: #ffffff;
  --txt2: #9aa89b;
  --txt3: #4a5a4b;
  --red: #ff4d4d;
  --gold: #ffc444;
  --blue: #4d9fff;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(168,230,61,0.2);
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--txt);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--green);
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--txt3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green2);
}

/* ===== Nav ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(14,20,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  font-weight: 900;
  font-size: 26px;
  text-decoration: none;
  letter-spacing: -0.8px;
  gap: 0;
}
.nav-logo span:first-child {
  color: var(--txt);
}
.nav-logo span:last-child {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: var(--bg) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--green2);
  color: var(--bg) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--txt);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--green);
}
.mobile-menu .nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  margin-top: 8px;
}

.desktop-only {
  display: inline-flex;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green2);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,230,61,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--txt);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--green);
  background: var(--border2);
  color: var(--txt);
  transform: translateY(-2px);
}

.btn-price {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-price-main {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-price-main:hover {
  background: var(--green2);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-price-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--txt);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-price-outline:hover {
  border-color: var(--green);
  background: var(--border2);
  color: var(--txt);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.court-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(168,230,61,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero h1,
h1.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--txt);
}

.hero-sub {
  font-size: 17px;
  color: var(--txt2);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; padding-right: 0; }

.green {
  color: var(--green);
}

/* ===== Page Header (inner pages) ===== */
.page-header {
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-header-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(168,230,61,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--txt);
}

.page-header p {
  font-size: 17px;
  color: var(--txt2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Section / Container ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 100px 40px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--txt);
}

.section-sub {
  font-size: 16px;
  color: var(--txt2);
  margin-bottom: 56px;
  max-width: 560px;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--txt);
}

.feature-card p {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.7;
}

/* ===== How It Works ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.how-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}

.how-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.how-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--txt);
}

.how-card p {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.7;
}

/* ===== Sports Pills ===== */
.sports-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sport-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.sport-pill:hover {
  border-color: var(--border2);
  color: var(--green);
}

/* ===== App Preview ===== */
.app-preview {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app-preview-left {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-preview-left h2 {
  margin-bottom: 16px;
}

.app-preview-left p {
  font-size: 15px;
  color: var(--txt2);
  margin-bottom: 28px;
  line-height: 1.7;
}

.app-checklist {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--txt2);
}
.app-checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  width: 20px;
  height: 20px;
  background: var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-preview-right {
  background: var(--bg3);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

/* ===== Phone Mockup ===== */
.phone-mockup {
  width: 220px;
  background: #111814;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.phone-screen {
  padding: 0 0 24px;
}

.phone-notch {
  height: 36px;
  background: #0a0f0b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-notch::after {
  content: '';
  width: 80px;
  height: 20px;
  background: #0a0f0b;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-top: none;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  font-size: 9px;
  color: var(--txt3);
}

.phone-logo {
  padding: 12px 16px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-logo span:first-child {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--txt);
}
.phone-logo span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}

.phone-player {
  padding: 4px 16px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.phone-player-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--txt);
}
.phone-player-info {
  font-size: 9px;
  color: var(--txt3);
  margin-top: 2px;
}

.phone-match {
  margin: 0 12px 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.phone-match-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.phone-league {
  font-size: 8px;
  color: var(--txt3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,77,77,0.15);
  border: 1px solid rgba(255,77,77,0.3);
  border-radius: 100px;
  padding: 2px 6px;
}

.live-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.live-txt {
  font-size: 7px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-team {
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-team-ic {
  font-size: 12px;
}
.phone-team-n {
  font-size: 9px;
  color: var(--txt2);
}
.phone-sc {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--txt);
}

.phone-queue {
  margin: 0 12px;
  background: linear-gradient(135deg, rgba(168,230,61,0.15), rgba(168,230,61,0.05));
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-queue-ic {
  font-size: 16px;
}
.phone-queue-t {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
}
.phone-queue-s {
  font-size: 8px;
  color: var(--txt3);
  margin-top: 1px;
}

/* ===== Pricing ===== */
.pricing-section {
  padding: 80px 40px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}

.billing-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt3);
  cursor: pointer;
  transition: color 0.2s;
}
.billing-label.active {
  color: var(--txt);
}

.toggle-btn {
  width: 52px;
  height: 28px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.toggle-btn.annual {
  background: var(--border2);
  border-color: var(--green);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--txt3);
  border-radius: 50%;
  transition: transform 0.25s, background 0.2s;
}
.toggle-btn.annual .toggle-thumb {
  transform: translateX(24px);
  background: var(--green);
}

.save-badge {
  background: rgba(168,230,61,0.15);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-card.featured {
  background: var(--bg3);
  border-color: var(--border2);
  box-shadow: 0 0 0 1px var(--border2), 0 24px 60px rgba(168,230,61,0.08);
}

.price-badge {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.price-tier {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 16px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  line-height: 1;
}
.price-amount sup {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--txt);
  margin-top: 6px;
}
.price-amount span {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -2px;
}

.price-period {
  font-size: 13px;
  color: var(--txt3);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.4;
}
.price-features li .check {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li .cross {
  color: var(--txt3);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li.unavailable {
  color: var(--txt3);
}

/* ===== Compare Table ===== */
.compare-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  padding: 12px 20px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--txt2);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table thead th:not(:first-child) {
  text-align: center;
}
.compare-table thead th.active-col {
  color: var(--green);
}
.compare-table tbody td {
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--txt2);
}
.compare-table tbody td:not(:first-child) {
  text-align: center;
}
.compare-row-header td {
  background: var(--bg2);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
}
.check {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}
.cross {
  color: var(--txt3);
  font-size: 14px;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--border2);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars span {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt);
}

.testimonial-meta {
  font-size: 11px;
  color: var(--txt3);
  margin-top: 2px;
}

/* ===== Waitlist Form ===== */
.waitlist-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 28px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-input {
  flex: 1;
  min-width: 240px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--txt);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder {
  color: var(--txt3);
}
.waitlist-input:focus {
  border-color: var(--green);
}

.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 28px auto 0;
  text-align: center;
  animation: successFadeIn 0.5s ease forwards;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(168,230,61,0.12);
  border: 2px solid rgba(168,230,61,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--green);
  animation: checkPop 0.4s ease 0.2s both;
}
@keyframes checkPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 40px;
  width: fit-content;
}

.tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tab:hover {
  color: var(--txt);
}
.tab.active {
  background: var(--bg3);
  color: var(--green);
  font-weight: 600;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--txt);
  gap: 16px;
  user-select: none;
}
.faq-q:hover {
  color: var(--green);
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--txt3);
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--border2);
  border-color: var(--green);
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a p {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.75;
}

/* FAQ category header */
.faq-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 48px 0 4px;
}
.faq-category:first-child {
  margin-top: 0;
}

/* ===== Policy Sections ===== */
.legal-content {
  max-width: 760px;
}

.policy-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.policy-section:hover {
  border-color: var(--green);
  border-left-color: var(--green);
}
.policy-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-section h3::before {
  content: attr(data-num);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(168,230,61,0.12);
  border: 1px solid rgba(168,230,61,0.3);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.policy-section p {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.85;
  margin-bottom: 12px;
}
.policy-section p:last-child {
  margin-bottom: 0;
}
.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.policy-section ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.75;
}
.policy-section ul li::before {
  content: '–';
  color: var(--green);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
/* Label-style list items: strong label sits above the description */
.policy-section ul li strong:first-child {
  display: block;
  color: var(--txt);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}
.policy-date {
  font-size: 12px;
  color: var(--txt3);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

/* ===== Contact Card ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 36px auto 0;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.contact-card .contact-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  color: var(--txt3);
  line-height: 1.6;
  margin-bottom: 14px;
}

.contact-card a {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}
.contact-card a:hover {
  color: var(--green2);
}

/* ===== Footer ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 13px;
  color: var(--txt3);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 4px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--txt3);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--txt3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--txt3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--green);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.cookie-banner p {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.5;
  flex: 1;
}
.cookie-banner p a {
  color: var(--green);
}

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--green);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-accept:hover {
  background: var(--green2);
}

.cookie-decline {
  background: transparent;
  color: var(--txt2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-decline:hover {
  border-color: var(--txt2);
  color: var(--txt);
}

/* ===== Scroll To Top ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  width: 44px;
  height: 44px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--txt2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--bg3);
  border-color: var(--green);
  color: var(--green);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.65s ease forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.35s; opacity: 0; }
.delay-4 { animation-delay: 0.5s; opacity: 0; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  section {
    padding: 64px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 100px 20px 60px;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px 0;
  }
  .hero-stat {
    border-right: none;
    padding: 0 20px;
    width: 50%;
  }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-stat:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 24px; }
  .stat-n { font-size: 28px; }

  .page-header {
    padding: 100px 20px 56px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .app-preview {
    grid-template-columns: 1fr;
  }
  .app-preview-left {
    padding: 40px 28px;
  }
  .app-preview-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 36px 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-btns {
    flex-direction: column;
    width: 100%;
  }
  .cookie-accept,
  .cookie-decline {
    width: 100%;
    text-align: center;
  }

  /* Stats band mobile */
  .stats-band-inner {
    padding: 0 20px;
    gap: 10px;
  }
  .stats-num { font-size: 28px; }
  .stats-label { font-size: 10px; }
  .stats-divider { height: 32px; }

  /* Phone mockups mobile — show only center phone */
  .app-phone-wrap:first-child,
  .app-phone-wrap:last-child {
    display: none;
  }
  .app-phone-wrap:nth-child(2) {
    transform: scale(0.95) translateY(0) !important;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .tabs {
    width: 100%;
  }
  .tab {
    flex: 1;
    padding: 10px 10px;
    font-size: 13px;
    text-align: center;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
  }
  .waitlist-form .btn-primary {
    justify-content: center;
  }

  .billing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Nav Actions (dual-button nav) ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-signin {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--txt2);
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-signin:hover {
  border-color: var(--border2);
  color: var(--green);
}
.btn-cta {
  background: var(--green);
  color: #0e1410;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-cta:hover {
  background: var(--green2);
  color: #0e1410;
}

/* ===== Hero badge ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,230,61,0.08);
  border: 1px solid var(--border2);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: heroPulse 1.5s infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.court-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}
.stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -1.5px;
  font-variant-numeric: slashed-zero;
}
.stat-l {
  font-size: 12px;
  color: var(--txt3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* ===== App Showcase ===== */
.app-phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.app-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s ease;
}
.app-phone-wrap:hover { transform: scale(0.95) translateY(10px); }
.app-phone-center {
  transform: scale(1) translateY(0) !important;
  z-index: 2;
}
.app-phone-center:hover { transform: scale(1.03) translateY(-6px) !important; }
.app-phone-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.app-phone {
  width: 224px;
  height: 470px;
  background: #0b0f0c;
  border-radius: 46px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
}
/* Dynamic Island */
.app-phone::before {
  content: '';
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 21px;
  background: #000;
  border-radius: 11px;
  z-index: 10;
}
/* Power button (right side) */
.app-phone::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 128px;
  width: 4px;
  height: 44px;
  background: rgba(255,255,255,0.13);
  border-radius: 0 3px 3px 0;
}
.app-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ap-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 14px 4px;
}
.ap-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px 6px;
}
.ap-icon-btn {
  width: 24px; height: 24px;
  background: #1a1f1b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.ap-prof {
  margin: 0 10px 8px;
  background: #1a1f1b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ap-av {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: #a8e63d;
  color: #0e1410;
  font-size: 12px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ap-stat { display: flex; flex-direction: column; align-items: center; }
.ap-stat-n { font-size: 11px; font-weight: 900; color: #fff; letter-spacing: -0.3px; }
.ap-stat-l { font-size: 7px; color: #4a5a4b; text-transform: uppercase; }
.ap-pills {
  display: flex;
  gap: 5px;
  padding: 0 10px 8px;
  overflow: hidden;
}
.ap-pill {
  height: 28px; width: 28px;
  background: #1a1f1b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ap-pill-on {
  width: auto;
  padding: 0 10px;
  background: #a8e63d;
  border-color: #a8e63d;
  font-size: 11px;
  gap: 4px;
  font-weight: 700;
  color: #0e1410;
}
.ap-card {
  margin: 0 10px 8px;
  background: #1a1f1b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px;
}
.ap-live-pill {
  display: flex; align-items: center; gap: 3px;
  background: rgba(255,77,77,0.12);
  border: 1px solid rgba(255,77,77,0.25);
  border-radius: 20px;
  padding: 2px 6px;
}
.ap-live-pill span { font-size: 7px; font-weight: 800; color: #ff4d4d; }
.ap-live-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: livePulse 1s infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.ap-queue-card {
  margin: 0 10px;
  background: rgba(168,230,61,0.06);
  border: 1px solid rgba(168,230,61,0.22);
  border-radius: 12px;
  padding: 8px 10px;
}
.ap-q-row {
  display: flex; align-items: center; gap: 5px;
  background: #1a1f1b;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  padding: 5px 7px;
}
.ap-q-you {
  background: rgba(168,230,61,0.06);
  border-color: rgba(168,230,61,0.2);
}
.ap-q-num {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: #222922;
  color: #9aa89b;
  font-size: 9px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* App store badges */
.app-store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--txt);
  transition: border-color 0.2s, transform 0.2s;
}
.app-store-badge:hover {
  border-color: rgba(168,230,61,0.4);
  transform: translateY(-2px);
}

/* ===== Sports row ===== */
.sports-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.sport-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 12px 20px;
  transition: all 0.2s;
}
.sport-pill:hover {
  border-color: var(--border2);
}
.sport-pill span:last-child {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt2);
}

/* ===== Social Icons ===== */
.social-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.soc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.soc-icon:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.soc-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--txt2);
  transition: fill 0.2s;
}
.soc-icon:hover svg {
  fill: var(--green);
}
.soc-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.soc-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--txt2);
  font-weight: 600;
}

/* ===== Facility Mode & Solo Training ===== */
.facility-split {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.facility-tv-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* --- TV Mockup --- */
.facility-tv {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.facility-screen {
  width: 500px;
  height: 370px;
  background: #0a0d0b;
  border: 3px solid #1e2820;
  border-radius: 14px;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 6px #141a15, inset 0 0 40px rgba(0,0,0,0.6);
}
.facility-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,230,61,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.facility-tv-stand {
  width: 60px;
  height: 28px;
  background: linear-gradient(to bottom, #1a2010, #0f1410);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  margin-top: -1px;
}
.facility-tv-base {
  width: 120px;
  height: 8px;
  background: #1a2010;
  border-radius: 4px;
  margin-top: 2px;
}

/* QR mock inside facility screen */
.qr-mock {
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 6px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
  flex-shrink: 0;
}
.qr-corner {
  background: #000;
  border-radius: 2px;
  grid-column: span 2;
  grid-row: span 2;
}
.qr-dots {
  display: contents;
}
.qr-dot {
  background: #000;
  border-radius: 1px;
}

/* --- Facility text side --- */
.facility-text {
  flex: 1;
  min-width: 0;
}
.facility-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.facility-feat-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.facility-feat div strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  display: block;
  margin-bottom: 3px;
}
.facility-feat div p {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.55;
  margin: 0;
}

/* --- Solo Phone Mockup --- */
.solo-phone {
  width: 240px;
  height: 480px;
  background: #0a0d0b;
  border: 2.5px solid #1e2820;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 5px #141a15, 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(168,230,61,0.08);
}
.solo-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 22px;
  background: #0a0d0b;
  border-radius: 0 0 14px 14px;
  z-index: 10;
  border: 2px solid rgba(255,255,255,0.07);
  border-top: none;
}
.solo-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.solo-cam {
  flex: 1;
  background: #0d1a10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solo-cam::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(168,230,61,0.03) 30px, rgba(168,230,61,0.03) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(168,230,61,0.03) 30px, rgba(168,230,61,0.03) 31px);
}
.solo-hoop-ring {
  width: 60px;
  height: 12px;
  border: 3px solid rgba(255,140,0,0.8);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 14px rgba(255,140,0,0.5);
}
.solo-hoop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,140,0,0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 8px rgba(255,140,0,0.7);
}
/* Corner brackets (camera-style) */
.solo-bracket {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 4;
}
.solo-bracket-tl {
  top: 10px; left: 10px;
  border-top: 2px solid rgba(168,230,61,0.7);
  border-left: 2px solid rgba(168,230,61,0.7);
  border-radius: 2px 0 0 0;
}
.solo-bracket-tr {
  top: 10px; right: 10px;
  border-top: 2px solid rgba(168,230,61,0.7);
  border-right: 2px solid rgba(168,230,61,0.7);
  border-radius: 0 2px 0 0;
}
.solo-bracket-bl {
  bottom: 10px; left: 10px;
  border-bottom: 2px solid rgba(168,230,61,0.7);
  border-left: 2px solid rgba(168,230,61,0.7);
  border-radius: 0 0 0 2px;
}
.solo-bracket-br {
  bottom: 10px; right: 10px;
  border-bottom: 2px solid rgba(168,230,61,0.7);
  border-right: 2px solid rgba(168,230,61,0.7);
  border-radius: 0 0 2px 0;
}
/* AI chip overlays */
.solo-chip {
  position: absolute;
  z-index: 5;
  font-size: 9px;
  font-weight: 800;
  border-radius: 20px;
  padding: 3px 8px;
  letter-spacing: 0.3px;
}
.solo-chip-make {
  top: 14px;
  right: 26px;
  background: rgba(168,230,61,0.15);
  border: 1px solid rgba(168,230,61,0.5);
  color: #a8e63d;
}
.solo-chip-ai {
  bottom: 14px;
  left: 26px;
  background: rgba(77,159,255,0.15);
  border: 1px solid rgba(77,159,255,0.4);
  color: #4d9fff;
  animation: livePulse 2s infinite;
}
/* Stats bar */
.solo-stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 10px 8px;
  background: #0f1712;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.solo-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.solo-stat-pill span:first-child {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.solo-stat-pill span:last-child {
  font-size: 8px;
  color: var(--txt3);
  text-transform: uppercase;
}
/* AI tip strip */
.solo-ai-tip {
  background: rgba(77,159,255,0.07);
  border-top: 1px solid rgba(77,159,255,0.15);
  padding: 7px 12px;
  font-size: 9px;
  color: #7ab8ff;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* ===== Responsive: Facility & Solo ===== */
@media (max-width: 900px) {
  .facility-split {
    flex-direction: column !important;
    gap: 40px;
    padding: 60px 0;
  }
  .facility-screen {
    width: 340px;
    height: 220px;
    padding: 14px 16px;
  }
  .facility-tv-stand { width: 44px; height: 20px; }
  .facility-tv-base { width: 90px; }
}

/* ===== Auth Pages ===== */
.auth-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 100px 20px 60px;
  text-align: center;
}
.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  text-decoration: none;
}
.auth-logo span:first-child {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--txt);
}
.auth-logo span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
}
.auth-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.auth-sub {
  font-size: 15px;
  color: var(--txt2);
  margin-bottom: 28px;
}
.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--txt);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  margin-bottom: 10px;
}
.social-btn:hover {
  border-color: var(--border2);
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
.div-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.div-txt {
  font-size: 12px;
  color: var(--txt3);
  font-weight: 600;
}
.form-field {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--txt);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  margin-bottom: 10px;
}
.form-field:focus {
  border-color: var(--border2);
}
.form-field::placeholder {
  color: var(--txt3);
}
.form-row2 {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.form-row2 .form-field {
  margin-bottom: 0;
}
.form-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--txt);
  outline: none;
  font-family: inherit;
  cursor: pointer;
  margin-bottom: 10px;
  appearance: none;
}
.form-select option {
  background: var(--bg2);
}
.form-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #0e1410;
  padding: 15px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(168,230,61,0.25);
  transition: all 0.2s;
  margin-top: 4px;
}
.form-btn:hover {
  transform: translateY(-2px);
}
.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.auth-footer {
  font-size: 13px;
  color: var(--txt3);
  margin-top: 18px;
}
.auth-footer a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.form-note {
  font-size: 11px;
  color: var(--txt3);
  text-align: center;
  margin-top: 8px;
}
.forgot {
  text-align: right;
  margin-bottom: 12px;
  margin-top: -4px;
}
.forgot span {
  font-size: 12px;
  color: var(--green);
  cursor: pointer;
  font-weight: 600;
}
.success-box {
  background: rgba(168,230,61,0.07);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: none;
  margin-top: 16px;
}
.success-box h3 {
  color: var(--green);
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.success-box p {
  color: var(--txt2);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Legal (new style) ===== */
.legal-hero {
  padding: 100px 40px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.legal-hero .section-label {
  justify-content: center;
  display: flex;
  margin-bottom: 12px;
}
.legal-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.legal-hero p {
  font-size: 14px;
  color: var(--txt3);
}
.legal-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.legal-tab {
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--txt2);
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
}
.legal-tab:hover {
  border-color: var(--border2);
  color: var(--green);
}
.legal-tab.active {
  background: var(--green);
  color: #0e1410;
  border-color: var(--green);
}
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px;
}
.legal-sect {
  margin-bottom: 32px;
}
.legal-sect h2 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-sect p {
  font-size: 15px;
  color: var(--txt2);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-sect ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.legal-sect ul li {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.legal-sect ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
}

/* ===== Support Page ===== */
.sup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.sup-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.sup-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.sup-card-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.sup-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.sup-card p {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.6;
}
.sup-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(168,230,61,0.08);
  border: 1px solid var(--border2);
  padding: 3px 10px;
  border-radius: 6px;
}
.faq-search {
  width: 100%;
  max-width: 700px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--txt);
  outline: none;
  font-family: inherit;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.faq-search:focus {
  border-color: var(--border2);
}
.faq-search::placeholder {
  color: var(--txt3);
}
.contact-form-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
}
.contact-form-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-box p {
  font-size: 14px;
  color: var(--txt2);
  margin-bottom: 24px;
}
.contact-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--txt);
  outline: none;
  font-family: inherit;
  resize: none;
  height: 110px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.contact-textarea:focus {
  border-color: var(--border2);
}
.contact-textarea::placeholder {
  color: var(--txt3);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168,230,61,0.08);
  border: 1px solid var(--border2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 14px;
}

/* ===== Download Page ===== */
.dl-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.dl-card {
  background: var(--bg2);
  border-radius: 20px;
  padding: 32px;
  width: 260px;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--border);
}
.dl-card:hover {
  transform: translateY(-4px);
}
.dl-icon {
  font-size: 52px;
  margin-bottom: 14px;
}
.dl-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.dl-sub {
  font-size: 13px;
  color: var(--txt3);
  margin-bottom: 18px;
}
.dl-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.dl-badge-green {
  background: rgba(168,230,61,0.1);
  border: 1px solid var(--border2);
  color: var(--green);
}
.dl-badge-gold {
  background: rgba(255,196,68,0.1);
  border: 1px solid rgba(255,196,68,0.3);
  color: var(--gold);
}
.feat-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto 48px;
  max-width: 800px;
}
.feat-mini {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
}
.feat-mini-icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.feat-mini h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feat-mini p {
  font-size: 12px;
  color: var(--txt3);
  line-height: 1.6;
}
.req-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.req-pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--txt2);
}

/* ===== Section base ===== */
.section {
  padding: 100px 0;
}

/* ===== Sports grid ===== */
.sports-grid {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.sport-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--txt);
  transition: border-color 0.2s;
}
.sport-card:hover {
  border-color: rgba(168, 230, 61, 0.4);
}
.sport-emoji {
  font-size: 22px;
}

/* ===== Video Demo ===== */
.video-play-wrap { display: block; }
.video-mock {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  background: #0a0d0b;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 32px 40px 40px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.video-mock:hover {
  border-color: rgba(168,230,61,0.4);
  box-shadow: 0 20px 60px rgba(168,230,61,0.08);
}
.video-mock-screen {
  background: #111814;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 0;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: #a8e63d;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(168,230,61,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-mock:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(168,230,61,0.5);
}
.video-coming-label {
  margin-top: 16px;
  font-size: 12px;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== Stats Band ===== */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 32px 0;
}
.stats-band-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
}
.stats-item { text-align: center; }
.stats-num {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 5px;
}
.stats-label {
  font-size: 11px;
  color: var(--txt3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}
.stats-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== Pricing disabled feature ===== */
li.off {
  color: var(--txt2);
  opacity: 0.45;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}

/* ===== Responsive additions ===== */
@media (max-width: 768px) {
  .nav-actions { display: none; }
  .sup-grid { grid-template-columns: 1fr; }
  .feat-mini-grid { grid-template-columns: 1fr 1fr; }
  .form-row2 { flex-direction: column; }
  .auth-wrap { padding: 80px 20px 40px; }
  .legal-hero { padding: 80px 20px 32px; }
  .legal-body { padding: 28px 20px; }
  .dl-card { width: 100%; max-width: 320px; }
  .contact-cards-grid { grid-template-columns: 1fr !important; }
  .about-split { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-values-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-cards-grid { grid-template-columns: 1fr 1fr !important; }
}
