:root {
  --bg: #FAF8F5;
  --bg-alt: #F3F0EB;
  --fg: #111827;
  --fg-muted: #6B7280;
  --accent: #F97316;
  --accent-light: #FFF1E6;
  --border: #E5E0D8;
  --nav-h: 64px;
}

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

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.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; line-height: 1.1; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-pills { display: flex; gap: 8px; }
.pill {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
}
.pill:hover { color: var(--fg); background: var(--bg-alt); }

/* ── Sections ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.body-text { color: var(--fg-muted); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 16px; }

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: 0.8125rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--fg-muted);
}

/* ── Hero Visual ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.workflow-art {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}
.wa-ring-1 { width: 320px; height: 320px; animation: spin 18s linear infinite; }
.wa-ring-2 { width: 220px; height: 220px; animation: spin 12s linear infinite reverse; border-color: #E8E0D4; }
.wa-ring-3 { width: 130px; height: 130px; animation: spin 8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.wa-core {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.12);
}
.wa-node {
  position: absolute;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  border-radius: 24px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.wa-node-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.wa-node-2 { right: 8px; top: 50%; transform: translateY(-50%); }
.wa-node-3 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.wa-node-4 { left: 8px; top: 50%; transform: translateY(-50%); }

/* ── PAIN ── */
.pain { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pain-card {
  background: var(--bg);
  padding: 48px 40px;
  border-right: 2px solid var(--bg-alt);
}
.pain-stat {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pain-desc { font-size: 1rem; color: var(--fg-muted); line-height: 1.65; }

/* ── SOLUTION ── */
.solution { padding: 100px 0; }
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.solution-list { display: flex; flex-direction: column; gap: 28px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: var(--fg); }
.feature-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.6; }

/* ── PROCESS ── */
.process { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
}
.process-step {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-right: none;
}
.process-step:last-child { border-right: 1px solid var(--border); border-radius: 0 12px 12px 0; }
.process-step:first-child { border-radius: 12px 0 0 12px; }
.step-num { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 20px; letter-spacing: -0.03em; }
.step-title { font-weight: 700; font-size: 1.0625rem; margin-bottom: 10px; color: var(--fg); }
.step-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.65; }

/* ── PRICING ── */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  background: var(--bg);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #FFF9F4 0%, var(--bg) 100%);
  box-shadow: 0 8px 40px rgba(249, 115, 22, 0.1);
}
.plan-name { font-weight: 700; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.plan-price { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 800; color: var(--fg); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.per-mo { font-size: 1.25rem; font-weight: 400; color: var(--fg-muted); }
.plan-tagline { font-size: 0.9375rem; color: var(--fg-muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
  font-size: 0.9375rem;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── PROOF ── */
.proof { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.proof-card {
  background: var(--bg);
  padding: 40px 28px;
  border-right: 2px solid var(--bg-alt);
  text-align: center;
}
.proof-card:last-child { border-right: none; }
.proof-stat {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.proof-label { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.5; }
.proof-rule {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
}
.proof-rule p { font-family: 'Fraunces', serif; font-size: 1.25rem; font-style: italic; color: var(--fg-muted); line-height: 1.6; }

/* ── CLOSING ── */
.closing { padding: 120px 0; background: var(--fg); }
.closing-inner { max-width: 700px; }
.closing-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.closing-headline { font-size: clamp(2rem, 4.5vw, 3.25rem); color: var(--bg); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; }
.closing-sub { font-size: 1.0625rem; color: #9CA3AF; line-height: 1.75; }

/* ── FOOTER ── */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.footer-tagline { font-size: 0.9rem; color: var(--fg-muted); max-width: 260px; margin-top: 10px; }
.footer-links { display: flex; gap: 60px; }
.footer-col-head { font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; color: var(--fg); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9375rem; color: var(--fg-muted); text-decoration: none; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { font-size: 0.875rem; color: var(--fg-muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { border-right: none; border-bottom: 2px solid var(--bg-alt); }
  .solution-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-track { flex-direction: column; gap: 2px; }
  .process-step { border-right: 1px solid var(--border); border-bottom: none; }
  .process-step:last-child { border-radius: 0 0 12px 12px; border-bottom: 1px solid var(--border); }
  .process-step:first-child { border-radius: 12px 12px 0 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card { border-bottom: 2px solid var(--bg-alt); }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
}
@media (max-width: 480px) {
  .nav-pills { display: none; }
  .hero { padding: 64px 0 56px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { border-right: none; }
}