/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:         #F8F5F0;
  --bg-alt:     #F0EDE7;
  --fg:         #1C1917;
  --fg-muted:   #78716C;
  --fg-faint:   #A8A29E;
  --accent:     #C74B35;
  --accent-warm:#E8634A;
  --teal:       #2A7F7F;
  --teal-light: #E6F4F4;
  --border:     #E7E3DC;
  --card:       #FFFFFF;
  --radius:     8px;
  --radius-lg:  16px;
}

/* ─── Base ──────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 96px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--fg);
  margin-bottom: 28px;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  max-width: 700px;
  margin: 0 auto;
}
.stat {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-warm);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ─── Anatomy / How it works ───────────────────────────── */
.anatomy {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 700px;
  margin-bottom: 64px;
}
.workflow {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-warm);
  background: #FDF3F0;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.step-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Pricing ───────────────────────────────────────────── */
.pricing {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing .section-headline { margin-bottom: 20px; }
.pricing-lead {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--fg);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 540px;
}
.pricing-card-header { margin-bottom: 32px; }
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-amount { display: flex; align-items: baseline; gap: 4px; }
.big { font-family: 'Fraunces', serif; font-size: 4rem; font-weight: 700; }
.per { font-size: 1.1rem; color: var(--fg-muted); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.feature {
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 10px;
  align-items: center;
}
.feature::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232,99,74,0.2);
  display: inline-block;
  flex-shrink: 0;
}
.feature.included::before { background: rgba(42,127,127,0.4); }
.pricing-note {
  font-size: 0.8rem;
  color: var(--fg-faint);
  margin-top: 4px;
}
.pricingcomparison {
  margin-top: 32px;
  max-width: 540px;
}
.comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.comp-row.highlight { background: #F0EDE7; margin: 0 -16px; padding: 14px 16px; border-radius: var(--radius); }
.comp-item { font-size: 0.9rem; color: var(--fg-muted); }
.comp-cost { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--fg); }
.comp-cost.strike { text-decoration: line-through; color: var(--fg-faint); }

/* ─── Who's it for ──────────────────────────────────────── */
.whos-it-for {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whos-it-for .section-headline { margin-bottom: 56px; }
.profile-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 64px;
}
.profile-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.profile-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-warm);
  flex-shrink: 0;
  margin-top: 8px;
}
.profile-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Closing ───────────────────────────────────────────── */
.closing {
  padding: 96px 48px;
  background: var(--fg);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: #E8E4DC;
  line-height: 1.4;
  margin-bottom: 24px;
}
.closing-statement:last-child { color: #fff; font-style: normal; font-weight: 600; margin-bottom: 0; }

/* ─── Footer ───────────────────────────────────────────── */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-copy { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 32px; }
.footer-meta { font-size: 0.75rem; color: var(--fg-faint); }

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; border-radius: var(--radius); }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .stat-divider { width: 100%; height: 1px; }
  .anatomy, .whos-it-for { padding: 64px 24px; }
  .workflow, .profile-grid { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-card { padding: 32px 24px; }
  .big { font-size: 3rem; }
  .closing { padding: 64px 24px; }
  .closing-statement { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hero-stats { display: none; }
}