:root {
  --bg: #111113;
  --surface: #1a1a1f;
  --surface-2: #222228;
  --accent: #f05f2a;
  --accent-dim: rgba(240, 95, 42, 0.15);
  --text: #f0ede8;
  --text-muted: #7a7882;
  --text-dim: #4a4852;
  --border: #2a2a32;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 40px 80px;
}
.hero-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
}
.hero-stat-card--outline {
  border: 1px solid var(--accent);
  background: var(--accent-dim);
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.stat-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}
.stat-context {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PROOF */
.proof {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.proof-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin-bottom: 40px;
}
.proof-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
}
.proof-card--accent {
  border-color: var(--accent);
}
.proof-icon {
  font-size: 24px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.proof-card--accent .proof-icon {
  color: var(--accent);
}
.proof-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.proof-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.proof-statement {
  max-width: 700px;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}
.proof-statement p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HOW */
.how {
  padding: 80px 40px;
}
.how-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
}
.how-steps {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--text-dim);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* WHOFOR */
.whofor {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whofor-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.whofor-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 48px;
}
.whofor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.who-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
}
.who-icon {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--accent);
}
.who-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}
.who-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PRICING */
.pricing {
  padding: 80px 40px;
}
.pricing-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 40px;
}
.pricing-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
}
.pricing-unit {
  font-size: 20px;
  color: var(--text-muted);
}
.pricing-detail {
  max-width: 500px;
  margin-bottom: 40px;
}
.pricing-detail p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-list {
  list-style: none;
  margin-bottom: 20px;
}
.pricing-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.pricing-add {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 20px;
}
.pricing-math {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-math p {
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-math strong {
  color: var(--accent);
  font-weight: 700;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* FOOTER */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 14px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 64px; letter-spacing: -2px; }
  .proof { padding: 60px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .how { padding: 60px 24px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 20px; }
  .whofor { padding: 60px 24px; }
  .whofor-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 60px 24px; }
  .pricing-number { font-size: 52px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-headline { font-size: 36px; letter-spacing: -1px; }
}

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