:root {
  --bg: #0c0c0f;
  --bg-alt: #111214;
  --fg: #f0ede8;
  --fg-muted: #8a8884;
  --accent: #FF4E00;
  --accent-dim: rgba(255, 78, 0, 0.15);
  --border: rgba(240, 237, 232, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-brand .brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

/* ── HERO ── */
.hero {
  padding: 100px 64px 96px;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.eyebrow-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-muted);
}

.eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.hero-headline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 8vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
}

.hero-sub em {
  color: var(--fg);
  font-style: italic;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}

.stat-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

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

/* ── SECTION UTILS ── */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}

/* ── LOOP ── */
.loop {
  background: var(--bg-alt);
  padding: 96px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.loop-header {
  max-width: 500px;
  margin-bottom: 64px;
}

.loop-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  max-width: 1100px;
}

.step { padding: 0 24px; }

.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 24px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 64px;
  max-width: 1200px;
  align-items: start;
}

.features-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 18px;
}

.features-body em {
  color: var(--fg);
  font-style: italic;
}

.features-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.feature-icon {
  margin-bottom: 14px;
}

.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-alt);
  padding: 96px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 760px;
}

.manifesto-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 40px;
  font-style: normal;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 64px;
}

.closing-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}

.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

.footer-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-headline { font-size: 3.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }

  .loop { padding: 64px 24px; }
  .loop-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }

  .features { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .features-right { grid-template-columns: 1fr; }

  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { flex-direction: column; gap: 16px; padding: 28px 24px; }
}