:root {
  --bg: #0F172A;
  --surface: #162032;
  --surface-2: #1E2D44;
  --fg: #F4EFE9;
  --fg-muted: #9AA5B8;
  --accent: #FF5C3A;
  --accent-dim: rgba(255, 92, 58, 0.12);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav { padding: 24px 48px; }
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--accent);
}
.geo-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.geo-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.geo-3 { width: 200px; height: 200px; top: 40%; right: 20%; }

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-overline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-lede {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* MANIFESTO */
.manifesto { padding: 100px 48px; background: var(--surface); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 40px;
  max-width: 700px;
}
.manifesto-body { max-width: 640px; }
.manifesto-body p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* FEATURES */
.features { padding: 100px 48px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.features-headline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 600px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255,92,58,0.25); }
.feature-icon { margin-bottom: 20px; }
.feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* PROOF */
.proof { padding: 80px 48px; background: var(--accent); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}
.proof-stat {}
.proof-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.proof-label-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.proof-closing {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  max-width: 500px;
}

/* PRICING PHILOSOPHY */
.pricing-philosophy { padding: 100px 48px; }
.pp-inner { max-width: 1200px; margin: 0 auto; }
.pp-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.pp-headline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 56px;
}
.pp-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
}
.pp-col {}
.pp-col-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pp-other-label { color: var(--fg-muted); }
.pp-portee-label { color: var(--accent); }
.pp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pp-item { font-size: 14px; color: var(--fg-muted); }
.pp-val { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.pp-val-bad { color: var(--fg-muted); }
.pp-val-good { color: var(--fg); }

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: var(--surface);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}
.closing-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--fg);
}

/* FOOTER */
.footer { padding: 40px 48px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .manifesto, .features, .pricing-philosophy, .closing { padding: 60px 24px; }
  .proof { padding: 60px 24px; }
  .nav { padding: 20px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .pp-comparison { grid-template-columns: 1fr; }
  .hero-stat-row { gap: 32px; }
}
