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

:root {
  --color-bg: #f5f8fc;
  --color-surface: #ffffff;
  --color-text: #0a0f14;
  --color-text-muted: #5a6570;
  --color-primary: #0099ff;
  --color-primary-dark: #007acc;
  --color-primary-light: #e6f4ff;
  --color-accent: #0099ff;
  --color-border: #dce6f0;
  --color-dark: #000000;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 22, 16, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 22, 16, 0.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1400px;
  padding: 0 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border-color: transparent;
}
.btn-ghost:hover { color: #fff; }

.btn-light {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}
.btn-light:hover { background: var(--color-primary-light); }

.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo:hover { opacity: 0.92; }

.logo img {
  display: block;
  width: auto;
  object-fit: contain;
}

.logo--square img {
  height: 44px;
}

.logo--rect img {
  height: 72px;
  max-width: min(280px, 100%);
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo img {
  height: 64px;
}

.footer-brand .logo--rect img {
  height: 68px;
}

.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav a:hover { color: #fff; }

.header-actions {
  display: flex;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 153, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 153, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.hero-note strong { color: var(--color-primary); }

/* Dashboard mockup */
.dashboard-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1rem 1.25rem;
  background: #f4f7f5;
  border-bottom: 1px solid var(--color-border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.dashboard-title {
  margin-left: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat {
  background: var(--color-surface);
  padding: 1.25rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-list { padding: 0.5rem 0; }

.booking-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.booking-row:last-child { border-bottom: none; }

.sport-icon { font-size: 1.5rem; }

.booking-row div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.booking-row strong { font-size: 0.9375rem; }
.booking-row span { font-size: 0.8125rem; color: var(--color-text-muted); }

.status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}
.status.paid { background: var(--color-primary-light); color: var(--color-primary-dark); }
.status.pending { background: #fef3c7; color: #92400e; }

/* ── Early bird banner ── */
.early-bird-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 1.25rem 0;
}

.banner-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.banner-icon { font-size: 1.75rem; }

.banner-inner strong { display: block; font-size: 1rem; }
.banner-inner p { font-size: 0.9375rem; opacity: 0.9; margin-top: 0.125rem; }
.banner-inner .btn { margin-left: auto; }

/* ── Video section ── */
.video-section {
  padding: 4rem 0 5rem;
  background: var(--color-surface);
}

.video-section .section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Sections ── */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* ── Features ── */
.features {
  padding: 5rem 0;
  background: var(--color-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ── Pricing ── */
.pricing {
  padding: 5rem 0;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.toggle-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.toggle-label.active { color: var(--color-text); font-weight: 600; }

.save-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--color-border);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.toggle-switch[aria-checked="true"] { background: var(--color-primary); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform var(--transition);
}
.toggle-switch[aria-checked="true"] .toggle-knob { transform: translateX(24px); }

.billing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow); }

.plan-featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}
.plan-featured:hover { box-shadow: var(--shadow-lg); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-tier {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.amount {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.period {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.plan-billing-detail {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  min-height: 1.25rem;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0.625rem;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-footnotes {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  text-align: center;
}
.pricing-footnotes p {
  font-size: 0.9375rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.375rem;
}
.pricing-footnotes p:last-child { margin-bottom: 0; }

/* ── CTA ── */
.cta-section {
  padding: 5rem 0;
  background: var(--color-dark);
  color: #fff;
}

.cta-inner {
  text-align: center;
  max-width: 560px;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

/* ── FAQ ── */
.faq {
  padding: 5rem 0;
  background: var(--color-surface);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding-right: 2rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9375rem; max-width: 280px; }

.footer-links h4 {
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* ── Mobile nav ── */
.site-header.nav-open .nav,
.site-header.nav-open .header-actions {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.site-header.nav-open .header-actions { top: auto; position: relative; border: none; box-shadow: none; padding: 0; }
.site-header.nav-open .btn-ghost { color: rgba(255, 255, 255, 0.88); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 3rem 0 2.5rem; }
  .hero-logo img { height: 52px; }
  .logo--square img { height: 38px; }

  .video-section { padding: 3rem 0; }
  .video-wrapper { min-height: 220px; border-radius: var(--radius); }
  .container--wide { padding: 0 0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .banner-inner { flex-direction: column; text-align: center; }
  .banner-inner .btn { margin-left: 0; width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
