:root {
  --bg: #0F0F12;
  --bg-card: #18181C;
  --fg: #F0EDE8;
  --fg-muted: #8A8A96;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.15);
  --border: rgba(240, 237, 232, 0.08);
}

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

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

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 6rem 2rem 5rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 740px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Proof bar */
.proof { padding: 2rem 2rem; border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 860px; margin: 0 auto; }
.proof-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.proof-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; gap: 0.15rem; }
.proof-org {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}
.proof-role { font-size: 0.72rem; color: var(--fg-muted); }
.proof-divider { width: 1px; height: 32px; background: var(--border); }

/* What section */
.what { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }
.what-inner { max-width: 860px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  font-weight: 400;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.what-card {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--border);
}
.what-card:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--border); }
.what-card:nth-child(even) { padding-left: 2rem; }
.what-card:nth-last-child(-n+2) { border-bottom: none; }
.what-icon { color: var(--accent); margin-bottom: 1rem; }
.what-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.what-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; font-weight: 300; }

/* Process */
.process { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }
.process-inner { max-width: 860px; margin: 0 auto; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 400;
  min-width: 2rem;
  padding-top: 0.3rem;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-content p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; font-weight: 300; }

/* Pricing */
.pricing { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 860px; margin: 0 auto; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; max-width: 480px; }
.pricing-header { margin-bottom: 2rem; }
.pricing-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.75rem; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--fg);
}
.price-period { font-size: 0.9rem; color: var(--fg-muted); }
.pricing-desc { font-size: 0.875rem; color: var(--fg-muted); font-weight: 300; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* Closing */
.closing { padding: 5rem 2rem; }
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.45;
  color: var(--fg);
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.closing-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Footer */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 860px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600; }
.footer-copy { font-size: 0.75rem; color: var(--fg-muted); }

/* Mobile */
@media (max-width: 640px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-stats { gap: 2rem; }
  .proof-row { gap: 1.5rem; }
  .proof-divider { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .what-card { border-bottom: 1px solid var(--border); padding: 1.5rem 0 !important; border-right: none !important; padding-left: 0 !important; }
  .what-card:last-child { border-bottom: none; }
  .step { gap: 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}