:root {
  --bg: #0d0d1a;
  --bg-alt: #13132a;
  --fg: #f5f0e8;
  --fg-muted: #9b97b0;
  --accent: #f5c842;
  --accent-dim: #c9a830;
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ── NAV ── */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── HERO VISUAL ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.waveform-bar {
  flex: 1;
  height: calc(var(--h) * 1%);
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
  animation: wave-pulse 2.4s ease-in-out infinite alternate;
}
.waveform-bar:nth-child(1) { animation-delay: 0s; }
.waveform-bar:nth-child(2) { animation-delay: 0.15s; }
.waveform-bar:nth-child(3) { animation-delay: 0.3s; }
.waveform-bar:nth-child(4) { animation-delay: 0.45s; }
.waveform-bar:nth-child(5) { animation-delay: 0.6s; }
.waveform-bar:nth-child(6) { animation-delay: 0.75s; }
.waveform-bar:nth-child(7) { animation-delay: 0.9s; }
.waveform-bar:nth-child(8) { animation-delay: 1.05s; }
.waveform-bar:nth-child(9) { animation-delay: 1.2s; }
.waveform-bar:nth-child(10) { animation-delay: 1.35s; }
.waveform-bar:nth-child(11) { animation-delay: 1.5s; }
.waveform-bar:nth-child(12) { animation-delay: 1.65s; }
.waveform-bar:nth-child(13) { animation-delay: 1.8s; }
.waveform-bar:nth-child(14) { animation-delay: 1.95s; }
.waveform-bar:nth-child(15) { animation-delay: 2.1s; }
.waveform-bar:nth-child(16) { animation-delay: 2.25s; }

@keyframes wave-pulse {
  0% { opacity: 0.45; transform: scaleY(0.92); }
  100% { opacity: 1; transform: scaleY(1); }
}
.waveform-caption {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ── SECTION SHARED ── */
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.process-header {
  margin-bottom: 72px;
}
.process-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── STORIES ── */
.stories {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.stories-header {
  margin-bottom: 60px;
}
.stories-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card {
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.story-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.story-copy {
  font-size: 0.92rem;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
}
.story-detail {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 48px 100px;
  background: var(--bg-alt);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 40px;
  max-width: 800px;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 60px;
}
.manifesto-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.manifesto-dot {
  color: var(--accent);
  opacity: 0.6;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 24px 24px; }
  .hero { grid-template-columns: 1fr; padding: 72px 24px 80px; gap: 48px; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .stories-grid { grid-template-columns: 1fr; }
  .process { padding: 72px 24px; }
  .stories { padding: 72px 24px; }
  .manifesto { padding: 80px 24px 72px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.8rem; }
  .manifesto-footer { flex-wrap: wrap; gap: 8px; }
}