:root {
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #1A1A1A;
  --accent: #FF5C00;
  --accent-dim: rgba(255, 92, 0, 0.12);
  --fg: #F0EDE8;
  --fg-muted: #8A8680;
  --fg-dim: #4A4845;
  --border: #1E1E1E;
  --font-display: 'Bebas Neue', 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(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--accent);
  text-decoration: none;
}
.nav-cta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(255,92,0,0.4);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.15s, border-color 0.15s;
}
.nav-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,92,0,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0D0D0D 100%);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stat-row {
  display: flex;
  gap: 48px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
}
.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-inner {
  width: 100%;
}
.process-line {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.process-step.done {
  background: rgba(255,92,0,0.08);
  color: var(--fg-muted);
  border: 1px solid rgba(255,92,0,0.2);
}
.process-step.active {
  background: rgba(255,92,0,0.15);
  color: var(--accent);
  border: 1px solid rgba(255,92,0,0.4);
}
.process-step.pending {
  background: var(--bg-card-hover);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.step-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}
.process-arrow {
  text-align: center;
  color: var(--fg-dim);
  font-size: 14px;
  padding: 4px 0;
}

/* WHAT IT DOES */
.what-it-does {
  padding: 100px 40px;
  background: #0D0D0D;
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 60px;
  font-weight: 500;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
}
.feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-strike {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--fg-muted);
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 300;
}
.manifesto-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 48px 0;
}
.manifesto-answer {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: 1px;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 40px;
  background: #0D0D0D;
  border-top: 1px solid var(--border);
}
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.outcome {
  text-align: left;
}
.outcome-metric {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.outcomes-note {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--fg-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.closing-inner p {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: opacity 0.15s, transform 0.1s;
}
.closing-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* FOOTER */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  background: #0D0D0D;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero { padding: 120px 24px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stat-row { gap: 24px; }
  .nav { padding: 16px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .what-it-does, .manifesto, .outcomes, .closing { padding: 60px 24px; }
}