:root {
  --bg: #0e0e16;
  --bg-alt: #14141f;
  --fg: #f0ece4;
  --fg-muted: #8a8680;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.12);
  --border: rgba(240, 236, 228, 0.08);
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 14, 22, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-cta {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--accent-dim);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-text { max-width: 680px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 2px;
  width: fit-content;
  background: var(--bg-alt);
}
.stat {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.hero-background-shape {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Process */
.process {
  padding: 120px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 72px;
  max-width: 640px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.4;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature {
  background: var(--bg);
  padding: 48px;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 120px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  border-left: 2px solid var(--accent);
  padding-left: 40px;
  margin-bottom: 56px;
}
.manifesto-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
}
.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-left: 40px;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* Closing */
.closing {
  padding: 140px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.footer-note p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 560px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat { padding: 20px 24px; width: 100%; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .stat-divider { display: none; }
  .process-steps { flex-direction: column; gap: 48px; }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .manifesto-body { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
}