/* ─── Variables ─── */
:root {
  --bg: #0a0a0c;
  --bg-alt: #111116;
  --surface: #18181f;
  --surface-2: #22222d;
  --text: #f0ece4;
  --text-muted: #8888a0;
  --accent: #e8943a;
  --accent-dim: rgba(232, 148, 58, 0.15);
  --accent-glow: rgba(232, 148, 58, 0.25);
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-sm: 8px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: #0a0a0c;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.site-header nav { display: flex; gap: 32px; }
.site-header nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--text); }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 160px 32px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(232,148,58,0.12) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 400px; height: 400px;
  bottom: 0; left: -50px;
  background: radial-gradient(circle, rgba(232,148,58,0.06) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-highlight {
  color: var(--accent);
  display: block;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 0;
}

/* ─── Dashboard Mock ─── */
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px var(--border), 0 0 60px var(--accent-glow);
}
.mock-topbar {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mock-dots span:first-child { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dots span:last-child { background: #28ca42; }
.mock-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.mock-body { padding: 20px; }
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.stat-ai { border-color: rgba(232,148,58,0.3); }
.stat-ai .stat-num { color: var(--accent); }
.stat-book { border-color: rgba(40,202,66,0.3); }
.stat-book .stat-num { color: #28ca42; }
.lead-list { display: flex; flex-direction: column; gap: 8px; }
.lead-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.lead-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.lead-info { flex: 1; min-width: 0; }
.lead-name { display: block; font-size: 13px; font-weight: 500; }
.lead-source { display: block; font-size: 11px; color: var(--text-muted); }
.lead-status {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
  flex-shrink: 0;
}
.status-qualified { background: rgba(232,148,58,0.15); color: var(--accent); }
.status-booked { background: rgba(40,202,66,0.15); color: #28ca42; }

/* ─── Proof Strip ─── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 36px 32px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.proof-item { text-align: center; }
.proof-stat {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.proof-desc {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 160px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── Shared Section ─── */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ─── Features ─── */
.features {
  padding: 100px 32px;
  background: var(--bg);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-alt); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── How ─── */
.how {
  padding: 100px 32px;
  background: var(--bg-alt);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.step-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  padding: 0 28px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 48px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  margin-top: 28px;
  align-self: flex-start;
}

/* ─── Niches ─── */
.niches {
  padding: 100px 32px;
  background: var(--bg);
}
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.niche-card:hover {
  border-color: rgba(232,148,58,0.3);
  transform: translateY(-2px);
}
.niche-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.niche-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.niche-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Outcomes ─── */
.outcomes {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 20px 0 32px;
}
.outcome-list { display: flex; flex-direction: column; gap: 14px; }
.outcome {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}
.outcome-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.outcome-check::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.math-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.math-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.math-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.math-row:last-child { border-bottom: none; }
.math-val { font-weight: 600; color: var(--text); }
.math-highlight { color: var(--accent); }
.math-total {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  border-top: 2px solid var(--accent-dim);
  padding-top: 16px !important;
}
.math-total .math-val { color: var(--accent); }

/* ─── Closing ─── */
.closing {
  padding: 120px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,148,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 680px; margin: 0 auto; position: relative; }
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  background: var(--bg-alt);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
  .step-track { flex-wrap: wrap; gap: 32px; }
  .step-connector { display: none; }
  .step { flex: none; width: calc(50% - 16px); }
  .proof-inner { flex-wrap: wrap; justify-content: center; }
  .proof-divider { display: none; }
  .proof-item { width: 40%; }
}
@media (max-width: 600px) {
  .site-header nav { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .step { width: 100%; }
  .proof-item { width: 100%; }
  .hero { padding: 120px 24px 80px; }
  .proof-strip, .features, .how, .niches, .outcomes, .closing { padding: 64px 24px; }
}