:root {
  --bg: #0F0F12;
  --bg-2: #16161A;
  --fg: #F5F0E8;
  --fg-muted: #9B9590;
  --accent: #E8B86D;
  --accent-dim: rgba(232, 184, 109, 0.15);
  --border: rgba(245, 240, 232, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.3) 0%, transparent 70%);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  display: block;
  margin-top: 0.5rem;
}

/* Section Labels */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* Manifesto */
.manifesto {
  padding: 8rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 700px;
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 1.75;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

.pillar-icon {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.25rem;
}

/* Architecture */
.architecture {
  padding: 8rem 2rem;
}

.architecture-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.architecture-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.architecture-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 700px;
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 1.75;
}

.pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pipe-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.pipe-step:last-child {
  border-bottom: none;
}

.pipe-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 80px;
}

.pipe-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pipe-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

/* Outcomes */
.outcomes {
  padding: 8rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 4rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.outcome h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.outcome p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

.outcome-icon {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1rem;
}

/* Closing */
.closing {
  padding: 10rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--fg);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .manifesto-pillars,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .pipe-step {
    flex-direction: column;
    gap: 1rem;
  }

  .pipe-num {
    font-size: 2rem;
    min-width: auto;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .manifesto,
  .architecture,
  .outcomes {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}