:root {
  --bg: #0D0D14;
  --bg-card: #141420;
  --bg-card-hover: #1A1A2E;
  --fg: #E8E8F0;
  --fg-muted: #7A7A94;
  --accent: #B8FF00;
  --accent-dim: rgba(184, 255, 0, 0.12);
  --border: rgba(255,255,255,0.06);
  --font-head: 'Instrument Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { color: var(--accent); font-size: 18px; }
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
}

/* Widget */
.hero-widget { display: flex; justify-content: flex-end; }

.widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.widget-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fg-muted);
}
.widget-dot.live {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.widget-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }

.widget-call {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.call-icon { font-size: 24px; color: var(--accent); }
.call-info { flex: 1; }
.call-number { font-weight: 600; font-size: 15px; }
.call-label { font-size: 12px; color: var(--fg-muted); }
.call-status {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 8px; border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
}

.widget-actions { margin-bottom: 16px; }
.action-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.action-item:last-child { border-bottom: none; }
.action-icon { color: var(--accent); font-size: 13px; }
.action-item.booked .action-icon { color: #00D4AA; }
.action-item.answered .action-icon { color: var(--accent); }

.widget-stats { display: flex; gap: 16px; }
.stat { flex: 1; }
.stat-value { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--fg); }
.stat-label { font-size: 11px; color: var(--fg-muted); }

/* ── SECTION SHARED ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ── PROOF ── */
.proof {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.metric-block {
  background: var(--bg-card);
  padding: 40px 32px;
  text-align: center;
}

.metric-value {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1;
}

.metric-label { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

.proof-quote {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

blockquote {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 16px;
}

cite { font-size: 13px; color: var(--fg-muted); font-style: normal; }

/* ── NICHES ── */
.niches {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}

.niche-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(184,255,0,0.2);
}

.niche-icon {
  font-size: 28px;
  color: var(--accent);
  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: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.manifesto-text.accent {
  color: var(--accent);
  font-weight: 600;
}

/* ── CLOSING ── */
.closing {
  padding: 80px 48px 64px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 48px;
}

.closing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.closing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-muted);
}

.cf-mark { color: var(--accent); font-size: 14px; }

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-widget { justify-content: flex-start; }
  .widget-card { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 48px 24px; }
  .how-it-works, .proof, .niches, .manifesto, .closing { padding: 48px 24px; }
  .footer { flex-direction: column; gap: 12px; padding: 32px 24px; }
}

@media (max-width: 600px) {
  .niches-grid { grid-template-columns: 1fr; }
}