:root {
  --bg: #F9F6F1;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #B84A1E;
  --accent-warm: #E8734A;
  --border: #DDD8D0;
  --card: #FFFFFF;
  --hero-pattern: #EDE7DC;
}

*, *::before, *::after { 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;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.btn-nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-nav-cta:hover { background: var(--accent-warm); }

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--hero-pattern) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 3rem;
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
}
.hero-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 240px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-warm); }

/* Value props */
.value-props {
  padding: 4rem 2rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.value-props-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value-prop {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.value-prop-icon {
  font-size: 1.5rem;
  display: block;
}
.value-prop h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.value-prop p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How */
.how {
  padding: 5rem 2rem;
  background: var(--card);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 640px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.how-step { border-top: 2px solid var(--accent); padding-top: 1.5rem; }
.how-step-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.how-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.how-step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* Workflows */
.workflows {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.workflows-inner { max-width: 1100px; margin: 0 auto; }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.workflow-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s;
}
.workflow-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.workflow-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.workflow-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.workflow-card p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.55; }

/* Proof */
.proof {
  padding: 5rem 2rem;
  background: var(--fg);
  color: var(--bg);
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof .section-eyebrow { color: var(--accent-warm); }
.proof .section-headline { color: var(--bg); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.proof-stat { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; }
.proof-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-warm);
  margin-bottom: 0.5rem;
}
.proof-desc { font-size: 0.85rem; color: rgba(249,246,241,0.6); line-height: 1.5; }
.proof-quote { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.proof-quote blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(249,246,241,0.8);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 0.75rem;
}
.proof-quote cite { font-size: 0.8rem; color: rgba(249,246,241,0.4); font-style: normal; }

/* Pricing */
.pricing {
  padding: 5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 760px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
}
.pricing-card--pro { border-color: var(--accent); }
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}
.pricing-card h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }
.pricing-desc { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 600; }
.pricing-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 500px;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
  background: var(--accent);
  color: #fff;
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.closing-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 1.5rem 2rem;
  background: var(--fg);
  color: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}
.footer-copy { font-size: 0.8rem; color: rgba(249,246,241,0.4); }
.footer-url { font-size: 0.75rem; color: rgba(249,246,241,0.3); margin-left: auto; }

/* Responsive */
@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stat { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .value-props-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .workflow-grid { grid-template-columns: 1fr; }
}