/* ── Base reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EEE9;
  --fg: #1B2A4A;
  --fg-muted: #6B7280;
  --accent: #FF4D1C;
  --accent-dark: #C93D14;
  --nav-bg: #1B2A4A;
  --nav-fg: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: #E5E1DB;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

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

.section-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Navigation ── */
.nav {
  background: var(--nav-bg);
  padding: 1rem 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nav-fg);
  letter-spacing: -0.01em;
}

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

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

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.7;
}

/* ── Stats row ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  max-width: 100px;
  line-height: 1.4;
}

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

/* ── Content card (hero visual) ── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 8px 40px rgba(27, 42, 74, 0.10);
  overflow: hidden;
}

.card-header {
  background: var(--bg-alt);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.card-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.card-dot.red    { background: #FF5F57; }
.card-dot.yellow { background: #FFBD2E; }
.card-dot.green  { background: #28CA41; }

.card-title {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-left: 0.5rem;
}

.card-body { padding: 1.25rem; }

.card-line {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 4px;
  margin-bottom: 8px;
}

.card-line.thin   { width: 60%; }
.card-line.medium { width: 80%; }
.card-line.full   { width: 100%; }

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFBD2E;
  flex-shrink: 0;
}

.status-dot.done { background: #28CA41; }

/* ── How section ── */
.how { background: var(--nav-bg); padding: 5rem 2rem; }

.how-inner {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.how .section-headline,
.how .section-lede { color: #FFFFFF; }

.how .section-label { color: #FF9F7A; }

.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Features ── */
.features { padding: 5rem 2rem; }

.features-inner { max-width: 1100px; margin: 0 auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Outcomes ── */
.outcomes { background: var(--bg-alt); padding: 5rem 2rem; }

.outcomes-inner { max-width: 1100px; margin: 0 auto; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.outcome {
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.outcome-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  display: block;
  margin-bottom: 1rem;
}

.outcome-attr {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ── Closing ── */
.closing {
  padding: 6rem 2rem;
  background: var(--nav-bg);
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
}

/* ── Footer ── */
.footer {
  background: var(--bg-alt);
  padding: 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  flex: 1;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}