:root {
  --bg: #FAF7F2;
  --bg-2: #F0EBE1;
  --fg: #1A1A18;
  --fg-muted: #6B6B68;
  --accent: #D97706;
  --accent-dark: #B45309;
  --ink: #2D2D2A;
  --border: #DDD8CF;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* HERO */
.hero { padding: 6rem 2rem 5rem; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; padding-top: 1rem; }

/* Waveform */
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  padding: 0 1rem;
}
.wave-bar {
  width: 5px;
  background: var(--border);
  border-radius: 3px;
  height: var(--h, 50%);
  transition: height 0.3s ease;
}
.wave-bar--active { background: var(--accent); }

/* Doc mockup */
.hero-doc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  width: 220px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.doc-icon { color: var(--fg-muted); }
.doc-lines { display: flex; flex-direction: column; gap: 6px; }
.doc-line {
  height: 7px;
  background: var(--bg-2);
  border-radius: 4px;
}

/* CTA BUTTON */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 16px rgba(217,119,6,0.25);
}
.hero-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.35);
}

/* HOW SECTION */
.how { padding: 5rem 2rem; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.steps { display: flex; align-items: center; gap: 2rem; }
.step { flex: 1; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }
.step-connector {
  flex: 0 0 40px;
  height: 1px;
  background: var(--border);
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--border);
  border-top: 1.5px solid var(--border);
  transform: rotate(45deg);
}

/* FEATURES */
.features { padding: 5rem 2rem; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 4rem; margin-top: 0; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.feature p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }

/* MANIFESTO */
.manifesto { padding: 5rem 2rem; background: var(--ink); color: white; }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: #E8E4DC;
  margin-bottom: 1.5rem;
}
.manifesto-sub { font-size: 1rem; color: #999994; line-height: 1.75; margin-bottom: 1rem; }
.manifesto-sub:last-child { margin-bottom: 0; }

/* CLOSING */
.closing { padding: 6rem 2rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.closing-sub { font-size: 1.1rem; color: var(--fg-muted); }

/* FOOTER */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--fg); }
.footer-note { font-size: 0.85rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { flex-direction: column; align-items: center; padding-top: 0; }
  .steps { flex-direction: column; gap: 2.5rem; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how, .features, .manifesto, .closing { padding: 4rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; }
}