:root {
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --text: #F5EFE6;
  --text-muted: #9A9189;
  --text-dim: #5A554F;
  --accent: #C8A45E;
  --accent-dim: rgba(200, 164, 94, 0.15);
  --border: rgba(245, 239, 230, 0.08);
}

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

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* VU METER */
.hero-visual {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0.4;
}

.vu-meter {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.vu-bar {
  width: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: vu-pulse 1.4s ease-in-out infinite;
}

.vu-bar:nth-child(1) { height: 20px; animation-delay: 0.0s; }
.vu-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.vu-bar:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.vu-bar:nth-child(4) { height: 65px; animation-delay: 0.3s; }
.vu-bar:nth-child(5) { height: 75px; animation-delay: 0.4s; }
.vu-bar:nth-child(6) { height: 55px; animation-delay: 0.5s; }
.vu-bar:nth-child(7) { height: 40px; animation-delay: 0.6s; }
.vu-bar:nth-child(8) { height: 60px; animation-delay: 0.7s; }
.vu-bar:nth-child(9) { height: 45px; animation-delay: 0.8s; }
.vu-bar:nth-child(10) { height: 30px; animation-delay: 0.9s; }
.vu-bar:nth-child(11) { height: 55px; animation-delay: 1.0s; }
.vu-bar:nth-child(12) { height: 40px; animation-delay: 1.1s; }

@keyframes vu-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 60px;
}

.wave-bar {
  width: 4px;
  background: var(--text-dim);
  border-radius: 2px;
  height: 12px;
}

.wave-tall { height: 40px; background: var(--text-muted); }
.wave-medium { height: 24px; background: var(--text-muted); }

/* SECTIONS */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 60px;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 64px;
}

/* THE PROBLEM */
.the-problem {
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.problem-card {
  background: var(--bg);
  padding: 48px 40px;
}

.problem-icon {
  margin-bottom: 24px;
}

.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* HOW IT WORKS */
.how-it-works {
  border-bottom: 1px solid var(--border);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.capability-card {
  position: relative;
}

.capability-number {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.capability-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.capability-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.workflow-note {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.workflow-note p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

/* MANIFESTO */
.manifesto {
  border-bottom: 1px solid var(--border);
  background: #0D0D0D;
}

.manifesto-quote {
  margin-bottom: 48px;
}

.manifesto-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  max-width: 800px;
}

.manifesto-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  border-bottom: 1px solid var(--border);
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 640px;
}

.closing-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.closing-line {
  flex: 0 0 80px;
  height: 1px;
  background: var(--accent);
}

.closing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.closing-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

/* FOOTER */
footer {
  padding: 48px 60px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-note {
  font-size: 11px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 60px 28px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 48px; }
  .problem-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-inner { padding: 72px 28px; }
  footer { padding: 40px 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
