:root {
  --bg: #0E0E10;
  --bg-alt: #161618;
  --fg: #F0EDE6;
  --fg-muted: #8A8680;
  --accent: #FF5C1A;
  --accent-dim: rgba(255, 92, 26, 0.15);
  --border: rgba(240, 237, 230, 0.08);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.brand-word { color: var(--fg); }
.brand-word-accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 48px 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 760px; }
.hero-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-size: 36px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}
.hero-badge {
  position: absolute;
  top: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.manifesto-inner { max-width: 760px; }
.manifesto-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.manifesto-text:last-child {
  color: var(--fg);
  font-weight: 400;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.features-header { margin-bottom: 64px; }
.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--fg);
  font-weight: 400;
  letter-spacing: -0.5px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-alt); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* PROCESS */
.process {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.process-header { margin-bottom: 72px; }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.step {
  flex: 1;
  padding: 0 48px 0 0;
}
.step:first-child { padding-left: 0; }
.step-number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 20px;
  font-style: italic;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 40px;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 760px; }
.closing-quote {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-size: 16px;
  font-weight: 600;
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; min-height: auto; }
  .hero-headline { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .hero-badge { top: 20px; right: 24px; font-size: 11px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-text { font-size: 17px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .closing { padding: 80px 24px; }
  .closing-quote { font-size: 32px; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .footer { padding: 32px 24px; }
}