:root {
  --bg: #0c0c0c;
  --bg-surface: #141414;
  --bg-card: #1a1a1a;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --text: #f0ede8;
  --text-muted: rgba(240,237,232,0.45);
  --border: rgba(240,237,232,0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 140px 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline-wrap {
  position: relative;
  margin-bottom: 28px;
}
.accent-bar {
  position: absolute;
  left: -20px;
  top: -8px;
  width: 6px;
  height: 110%;
  background: var(--accent);
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 28px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
}

/* CALENDAR WIDGET */
.calendar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  font-family: var(--font-body);
}
.cw-header {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cw-month {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}
.cw-weeks { display: flex; flex-direction: column; gap: 6px; }
.cw-week { display: flex; gap: 6px; align-items: center; }
.cw-day {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  background: var(--bg-surface);
  color: var(--text-muted);
}
.cw-label { font-size: 10px; color: var(--text-muted); width: 28px; font-weight: 500; }
.cw-booked { background: var(--accent); color: #0c0c0c; font-weight: 600; }
.cw-total {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cw-count {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
}
.cw-count-label { font-size: 13px; color: var(--text-muted); }

/* MESSAGE THREAD */
.message-thread {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
  font-family: var(--font-body);
}
.mt-header {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.mt-msg {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.mt-reply { background: rgba(245,158,11,0.12); color: var(--text); border: 1px solid rgba(245,158,11,0.15); }
.mt-response { background: #1e3a2f; color: #6ee7a0; border: 1px solid rgba(110,231,160,0.15); }
.mt-booked { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(245,158,11,0.2); font-weight: 600; }

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: 600px;
}
.pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.pipeline-step {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.ps-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.ps-icon { color: var(--accent); margin-bottom: 16px; }
.pipeline-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.pipeline-step p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.pipeline-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  padding-top: 48px;
  color: var(--text-muted);
}

/* AUDIENCE */
.audience {
  padding: 100px 32px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audience-inner { max-width: 1200px; margin: 0 auto; }
.audience-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.65;
  font-weight: 300;
}
.niche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.niche-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.niche-primary { border-color: rgba(245,158,11,0.3); background: var(--accent-dim); }
.nc-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.nc-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.nc-reason { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.nc-offer {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* RESULTS / PRICING PLAYBOOK */
.results { padding: 100px 32px; }
.results-inner { max-width: 1200px; margin: 0 auto; }
.results-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.results-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
}
.pricing-stages { max-width: 580px; }
.ps-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 48px;
}
.ps-row:last-child { padding-bottom: 0; }
.ps-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}
.ps-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.ps-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  min-height: 40px;
}
.ps-row:last-child .ps-line { display: none; }
.ps-phase {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.ps-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.ps-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.scale-note {
  margin-top: 56px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  max-width: 580px;
}
.sn-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  font-weight: 400;
  line-height: 1.4;
}

/* CLOSING */
.closing { padding: 100px 32px; background: var(--bg-surface); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}
.closing-sub { font-size: 17px; color: var(--text-muted); max-width: 520px; line-height: 1.65; font-weight: 300; margin-bottom: 16px; }
.closing-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 48px 0;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}

/* FOOTER */
.site-footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.footer-desc { font-size: 13px; color: var(--text-muted); max-width: 320px; line-height: 1.5; }
.footer-meta { font-size: 12px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 120px 24px 80px;
  }
  .hero-visual { display: none; }
  .pipeline { grid-template-columns: 1fr; gap: 12px; }
  .pipeline-arrow { display: none; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .niche-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .header-inner { padding: 14px 20px; }
}
