:root {
  --bg: #0F1117;
  --surface: #161922;
  --surface2: #1E222D;
  --fg: #FFFFFF;
  --fg-muted: #9CA3AF;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --border: rgba(255,255,255,0.08);
}

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

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

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }
.accent { color: var(--accent); }

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0.6rem; }
.nav-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: -0.03em; color: var(--fg); }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* HERO */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: center; }
.hero-badge { display: inline-block; background: var(--accent-dim); color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.75rem; border-radius: 2rem; margin-bottom: 1.5rem; }
.hero-headline { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; color: var(--fg-muted); max-width: 520px; margin-bottom: 1.75rem; line-height: 1.7; }
.hero-trust { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8rem; font-weight: 600; color: var(--fg-muted); }
.trust-sep { color: var(--border); }
.hero-stat-block { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; text-align: center; }
.stat-number { font-family: 'Sora', sans-serif; font-size: 4.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.05em; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--fg-muted); margin-top: 0.75rem; line-height: 1.5; }
.stat-cta { font-size: 0.8rem; font-weight: 700; color: var(--fg); margin-top: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* STATS */
.stats { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 2rem; align-items: center; }
.stat-item { text-align: center; }
.stat-val { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.stat-desc { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.4rem; line-height: 1.5; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* FEATURES */
.features { padding: 5rem 2rem; }
.features-header { max-width: 1100px; margin: 0 auto 4rem; }
.features-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 1rem; }
.features-sub { font-size: 1rem; color: var(--fg-muted); max-width: 560px; }
.features-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; }
.feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.feature-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* PROCESS */
.process { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 2rem; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 3rem; }
.process-steps { display: flex; align-items: stretch; gap: 0; }
.step { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; }
.step-num { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 0.75rem; }
.step-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.step-arrow { display: flex; align-items: center; padding: 0 1.5rem; font-size: 1.5rem; color: var(--fg-muted); }

/* MANIFESTO */
.manifesto { padding: 5rem 2rem; }
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-quote { font-size: 5rem; color: var(--accent); font-family: Georgia, serif; line-height: 0.5; margin-bottom: 1.5rem; }
.manifesto-text { font-size: 1.3rem; font-weight: 500; line-height: 1.7; letter-spacing: -0.01em; margin-bottom: 1.5rem; color: var(--fg); }
.manifesto-attr { font-size: 0.9rem; color: var(--fg-muted); font-weight: 500; }

/* CLOSING */
.closing { background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%); border-top: 1px solid var(--border); padding: 5rem 2rem; text-align: center; }
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.closing-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; }

/* FOOTER */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; }
.footer-name { font-size: 0.85rem; color: var(--fg-muted); font-weight: 500; }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat-block { order: -1; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 1rem; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .stat-number { font-size: 3.5rem; }
}