/* LEADFORGE THEME — Desert-forward, authoritative, not generic */

:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe0;
  --fg: #1a1714;
  --fg-muted: #6b6157;
  --accent: #c94a12;
  --accent-warm: #e8622a;
  --accent-dark: #a03b0a;
  --surface: #ffffff;
  --border: #e2d9cc;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Typography */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

/* Navigation */
.site-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

/* Problem */
.problem {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 0;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.problem-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 24px;
}

.problem-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-family: 'Fraunces', Georgia, serif;
  color: var(--bg);
  margin-bottom: 64px;
  max-width: 640px;
}

.problem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.problem-icon {
  color: var(--accent-warm);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.problem-item p {
  font-size: 1rem;
  color: #c8bfb3;
  line-height: 1.5;
}

.problem-cta {
  font-size: 1rem;
  color: var(--bg);
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

/* System */
.system {
  padding: 96px 0;
  background: var(--bg);
}

.system-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.system-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.system-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-family: 'Fraunces', Georgia, serif;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 560px;
}

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

.system-card {
  background: var(--surface);
  padding: 40px 36px;
}

.card-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.system-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.system-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Speed */
.speed {
  padding: 96px 0;
  background: var(--bg-alt);
}

.speed-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.speed-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.speed-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-family: 'Fraunces', Georgia, serif;
  color: var(--fg);
  margin-bottom: 20px;
}

.speed-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.speed-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speed-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.speed-step--highlight {
  background: var(--accent);
  padding: 16px 20px;
  border-radius: 6px;
  border-bottom: none;
}

.speed-step--highlight .step-week,
.speed-step--highlight .step-desc {
  color: white;
}

.step-week {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  min-width: 72px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.speed-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.speed-stat-block {
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.speed-stat-block:first-child {
  border-bottom: none;
}

.big-stat {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.big-stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* Pricing */
.pricing {
  padding: 96px 0;
  background: var(--fg);
  color: var(--bg);
}

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

.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.pricing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Fraunces', Georgia, serif;
  color: var(--bg);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 1rem;
  color: #a09890;
  margin-bottom: 56px;
}

.pricing-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 56px 48px;
  margin-bottom: 40px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.price-dollar {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #a09890;
  align-self: flex-start;
  margin-top: 8px;
}

.price-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--bg);
  line-height: 1;
}

.price-period {
  font-size: 1.1rem;
  color: #a09890;
  font-weight: 400;
}

.price-desc {
  font-size: 1rem;
  color: #a09890;
  line-height: 1.6;
}

.pricing-includes {
  text-align: left;
  margin-bottom: 32px;
}

.includes-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a09890;
  margin-bottom: 20px;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.include-item {
  font-size: 0.9rem;
  color: #c8bfb3;
  padding: 10px 0;
}

.pricing-note {
  font-size: 0.85rem;
  color: #706860;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}

/* Manifesto */
.manifesto {
  padding: 96px 0;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.manifesto-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 40px;
  font-style: italic;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* Closing */
.closing {
  padding: 96px 0;
  background: var(--bg-alt);
}

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

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.closing-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding-right: 24px; }
  .problem-columns { grid-template-columns: 1fr; }
  .system-grid { grid-template-columns: 1fr 1fr; }
  .speed-inner { grid-template-columns: 1fr; gap: 48px; }
  .includes-grid { grid-template-columns: 1fr; }
  .pricing-block { padding: 40px 24px; }
  .price-num { font-size: 4rem; }
}

@media (max-width: 480px) {
  .system-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-headline { font-size: 2.5rem; }
}