:root {
  --bg: #0D0D1A;
  --surface: #14142A;
  --accent: #E8344A;
  --accent-dim: rgba(232, 52, 74, 0.15);
  --text: #F5F2EE;
  --text-muted: #8A8A9B;
  --border: rgba(245, 242, 238, 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;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(232, 52, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-image-side {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,26,0.4) 0%, transparent 60%);
  border-radius: 12px;
}
.hero-text-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 100px;
  line-height: 1.4;
}

/* HOW */
.how { padding: 7rem 3rem; }
.how-inner { max-width: 1300px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step { display: flex; flex-direction: column; gap: 1rem; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}
.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* AUTONOMY */
.autonomy { padding: 0 3rem 7rem; }
.autonomy-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.autonomy-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.autonomy-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.autonomy-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.autonomy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.autonomy-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}
.autonomy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* OUTCOMES */
.outcomes { padding: 7rem 3rem; background: var(--surface); }
.outcomes-inner { max-width: 1300px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}
.outcome-card {
  padding: 2.5rem 2rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: 1px solid var(--border);
}
.outcome-card:last-child { border-right: none; }
.outcome-metric {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
}
.outcome-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing { padding: 10rem 3rem; }
.closing-inner { max-width: 1300px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text);
}

/* FOOTER */
.footer { padding: 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.footer-note { font-size: 0.8rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .autonomy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 2rem; min-height: auto; }
  .hero-img { height: 260px; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .how-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { border-right: none; border-bottom: 1px solid var(--border); }
  .outcome-card:last-child { border-bottom: none; }
  .how, .autonomy, .outcomes { padding: 5rem 2rem; }
  .closing { padding: 6rem 2rem; }
  .nav { padding: 1.25rem 2rem; }
}

@media (max-width: 480px) {
  .stat { min-width: 80px; }
  .stat-num { font-size: 1.4rem; }
  .footer { padding: 2rem; }
}