/* ===== TOKENS ===== */
:root {
  --bg: #0A1628;
  --bg-alt: #0F1F35;
  --surface: #142240;
  --fg: #E8EEF4;
  --fg-muted: #7A9BB5;
  --accent: #FF6B2C;
  --accent-dim: rgba(255, 107, 44, 0.12);
  --border: rgba(232, 238, 244, 0.08);
  --radius: 4px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 4px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ===== WORDMARK ===== */
.wordmark {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.wordmark-ping { color: var(--fg); }
.wordmark-pilot { color: var(--accent); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav { display: flex; gap: 28px; }
.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

/* ===== SECTION LABEL ===== */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--fg);
  margin-bottom: 56px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,44,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,44,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,44,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 36px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-value { max-width: 520px; }
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-cost {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cost-figure {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.cost-dollar {
  font-size: 28px;
  vertical-align: top;
  margin-right: 2px;
}
.cost-label {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 200px;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 110px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.step-card {
  background: var(--bg-alt);
  padding: 48px 40px;
}
.step-card-book {
  background: var(--surface);
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 14px;
}
.step-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 60px;
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 40px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}
.manifesto-body p {
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.manifesto-punch {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--fg);
  font-weight: 600;
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

/* ===== OBJECTIONS ===== */
.objections {
  padding: 110px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.objections-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}
.objection { border-top: 1px solid var(--border); padding-top: 32px; }
.q {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.a {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 40px;
  background: var(--bg);
  text-align: center;
}
.closing::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-headline {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--fg);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 24px;
}
.closing-sub {
  font-size: 20px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 40px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.wordmark-footer { font-size: 24px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .objections-list { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 48px; }
  .stat-divider { width: 60px; height: 1px; }
  nav { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 24px 80px; }
  .how-it-works, .stats-row, .manifesto, .objections, .closing { padding: 80px 24px; }
  .site-header { padding: 16px 24px; }
  .site-footer { padding: 48px 24px 32px; }
}
