/* Base */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f4f0;
  --bg-dark: #111111;
  --fg: #111111;
  --fg-muted: #666666;
  --fg-subtle: #999999;
  --accent: #e8a020;
  --accent-hover: #d08b10;
  --accent-dark: #c67d0e;
  --ink: #1a1a1a;
  --border: #e2e0d8;
  --border-dark: #2a2a2a;
  --red: #e84040;
  --green: #22c55e;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 800;
}

/* Hero */
.hero {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 80px 24px 100px;
}

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

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
}

.lede {
  font-size: 20px;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #111111;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
  width: fit-content;
}

.btn-primary:hover { background: var(--accent-hover); }

.sub-label {
  font-size: 13px;
  color: #666;
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}

.stat-card:first-child {
  background: var(--accent);
  border-color: var(--accent);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card:first-child .stat-number { color: #111111; }

.stat-label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-card:first-child .stat-label { color: rgba(0,0,0,0.6); }

/* Proof Strip */
.proof-strip {
  background: #faf9f6;
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.proof-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.proof-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.proof-amount {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.proof-vs {
  font-size: 13px;
  color: var(--fg-muted);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Problem */
.problem {
  background: #ffffff;
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.problem-left h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
}

.problem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.problem-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.problem-items { display: flex; flex-direction: column; gap: 16px; }

.problem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--fg);
}

.problem-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.old-icon { background: #fde8e8; color: var(--red); }
.new-icon { background: #e6f7ed; color: var(--green); }

/* How It Works */
.how-it-works {
  background: var(--bg-alt);
  padding: 100px 24px;
}

.how-it-works-inner { max-width: 1000px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--fg-muted);
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}

.step-connector {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--border);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

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

.how-cta { text-align: center; }

/* Outcomes */
.outcomes {
  background: #ffffff;
  padding: 100px 24px;
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.outcome {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  background: #fafaf9;
}

.outcome-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.outcome-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.outcome h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.outcome p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; }

/* Testimonials */
.testimonials {
  background: var(--bg-alt);
  padding: 100px 24px;
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-meta {}

.testimonial-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.testimonial-vs {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

/* Closing */
.closing {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 100px 24px;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-badge {
  display: inline-block;
  background: #222222;
  border: 1px solid #333;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  padding: 6px 16px;
  margin-bottom: 32px;
}

.closing h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.closing p {
  font-size: 20px;
  color: #888;
  margin-bottom: 48px;
}

.closing-price {}

.price-tag {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.price-sub {
  font-size: 16px;
  color: #666;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: #444;
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand { margin-bottom: 32px; }

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-tagline { font-size: 14px; color: #555; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover { color: #ffffff; }

.footer-legal { font-size: 12px; color: #333; line-height: 1.6; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { grid-template-columns: repeat(4, 1fr); }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .proof-strip-inner { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .proof-item { min-width: 120px; }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .problem-columns { grid-template-columns: 1fr; gap: 32px; }
  .section-header { margin-bottom: 40px; }
  .how-it-works, .problem, .outcomes, .testimonials, .closing { padding: 64px 20px; }
}