:root {
  --bg: #faf8f5;
  --bg-dark: #1a3d2b;
  --fg: #1a1a18;
  --fg-light: #4a4a46;
  --accent: #d97706;
  --accent-light: #fef3c7;
  --border: #e5e2dc;
  --green: #1a3d2b;
}

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d9770618 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--fg-light);
  max-width: 480px;
  line-height: 1.7;
}

/* Quote Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.quote-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.quote-card-header {
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.quote-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ffffff22;
  padding: 4px 10px;
  border-radius: 20px;
}

.quote-card-body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.line-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-light);
}

.quote-line--price span:last-child {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  color: var(--green);
  font-weight: 400;
}

.quote-line span:last-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

.quote-card-footer {
  padding: 16px 20px;
  background: var(--bg);
}

.quote-steps {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.step.done { background: var(--green); color: #fff; }
.step.active { background: var(--accent); color: #fff; }
.step.pending { background: var(--border); color: var(--fg-light); }

/* ── PROBLEM ── */
.problem {
  background: var(--fg);
  color: #fff;
  padding: 100px 48px;
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem .section-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}

.problem .section-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--fg);
  padding: 36px 32px;
}

.stat-num {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.problem-callout {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  line-height: 1.7;
}

/* ── WORKFLOW ── */
.workflow {
  padding: 100px 48px;
  background: var(--bg);
}

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

.workflow .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.workflow .section-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 72px;
}

.workflow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.workflow-step {
  flex: 1;
  padding: 0 40px 0 0;
}

.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.workflow-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.workflow-step p {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.7;
}

.workflow-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 40px;
  flex-shrink: 0;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 80px 48px;
  background: #fff;
  border-top: 1px solid var(--border);
}

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

.outcomes .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 40px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
}

.outcome-icon {
  margin-bottom: 16px;
}

.outcome h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.outcome p {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.7;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 48px;
  background: var(--green);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
}

blockquote::before { content: '\201C'; }
blockquote::after { content: '\201D'; }

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-detail {
  font-size: 15px;
  color: rgba(26,26,24,0.45);
}

/* ── FOOTER ── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  font-weight: 400;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 38px; }
  .quote-card { max-width: 320px; }

  .problem { padding: 72px 24px; }
  .problem-stats { grid-template-columns: 1fr; }
  .problem .section-headline { font-size: 36px; }

  .workflow { padding: 72px 24px; }
  .workflow-steps { flex-direction: column; }
  .workflow-divider { width: 40px; height: 1px; margin: 32px 0; }
  .workflow-step { padding: 0; }

  .outcomes { padding: 72px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 36px; }

  .manifesto { padding: 72px 24px; }
  .closing { padding: 72px 24px; }

  .footer-inner { flex-direction: column; gap: 8px; }
  footer { padding: 24px; }
}