:root {
  --bg: #FDFAF6;
  --fg: #1A1614;
  --accent: #C8622E;
  --accent-light: #F0E6DC;
  --accent-dark: #9B4A1F;
  --green: #2E6B44;
  --muted: #7A6F68;
  --border: #E8DDD3;
}

* { 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;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,246,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,98,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(200,98,46,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Signal Diagram */
.signal-diagram {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 32px rgba(200,98,46,0.08);
  width: 100%;
}
.signal-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.signal-pill {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.action-pill {
  background: #EBF4EE;
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.signal-arrow {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.brain-box {
  background: linear-gradient(135deg, #C8622E 0%, #9B4A1F 100%);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: white;
}
.brain-box span {
  font-size: 13px;
  font-weight: 600;
}
.brain-box small {
  font-size: 11px;
  opacity: 0.75;
}

/* STATS ROW */
.stats-row {
  background: var(--fg);
  color: white;
  padding: 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 48px 24px;
}
.stat {
  flex: 1;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 24px;
  background: white;
}
.howitworks-inner {
  max-width: 900px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  color: var(--fg);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 24px;
}
.step:first-child { padding-left: 0; }
.step-connector {
  padding-top: 24px;
  display: flex;
  align-items: center;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 100px 24px;
  background: var(--bg);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}
.feature-card {
  background: white;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 0;
  transition: all 0.2s ease;
}
.feature-card:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: white;
  padding: 100px 24px;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark {
  margin-bottom: 40px;
}
.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.manifesto-attr {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: white;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.badge {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 24px;
}
.closing-vision {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.closing-vision p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-links {
  font-size: 12px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 120px 24px 80px;
  }
  .stats-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .stat {
    padding: 0;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .hero-visual {
    order: -1;
  }
}

@media (max-width: 480px) {
  .stats-number {
    font-size: 44px;
  }
  .signal-pill, .action-pill {
    font-size: 11px;
  }
}