:root {
  --bg: #FDF8F4;
  --bg-alt: #F5EDE6;
  --fg: #1A1209;
  --fg-muted: #6B5E52;
  --accent: #C4503A;
  --accent-warm: #E8836B;
  --accent-light: #F5DDD8;
  --ink: #2D1F15;
  --border: #E0D4C8;
}

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

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;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--ink);
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #F5DDD8 0%, transparent 70%);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Phone mockup */
.phone-mockup {
  width: 280px;
  height: 520px;
  background: #1A1209;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(60,30,10,0.18), 0 0 0 1px rgba(255,255,255,0.1) inset;
  margin: 0 auto;
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #1A1209;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #FDF8F4;
  border-radius: 24px;
  height: 470px;
  overflow: hidden;
  padding: 16px 14px;
}
.msg-cluster { display: flex; flex-direction: column; gap: 10px; }
.msg { }
.msg-time {
  font-size: 10px;
  color: #9B8E85;
  margin-bottom: 3px;
  padding-left: 4px;
}
.msg-bubble {
  background: #fff;
  border: 1px solid #E8DDD6;
  border-radius: 14px 14px 14px 4px;
  padding: 9px 12px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--fg);
}
.msg-reply .msg-bubble {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 14px 14px 4px 14px;
}
.msg-3 .msg-bubble { border-left: 3px solid var(--accent-warm); }
.msg-5 .msg-bubble { font-size: 10.5px; }

/* PAIN */
.pain {
  background: var(--ink);
  padding: 72px 48px;
}
.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.pain-stat { padding: 0 40px; }
.pain-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 12px;
}
.pain-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.pain-divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.12);
}

/* FEATURES */
.features {
  padding: 100px 48px;
  background: var(--bg);
}
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.features h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
}
.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(196, 80, 58, 0.1);
}
.feature-card--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.feature-card--accent h3, .feature-card--accent p { color: white; }
.feature-card--accent .feature-icon { color: rgba(255,255,255,0.8); }
.feature-card--wide { grid-column: span 2; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card--accent .feature-icon { background: rgba(255,255,255,0.15); color: white; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-text h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
.how-desc {
  font-size: 16px;
  color: var(--fg-muted);
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 44px;
}
.step-body h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}
.step-body p { font-size: 14px; color: var(--fg-muted); }
.step-connector { width: 1px; height: 24px; background: var(--border); margin-left: 22px; }

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--bg);
}
.pricing-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
}
.plan--recommended {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.04);
}
.plan--recommended .plan-name,
.plan--recommended .plan-price,
.plan--recommended .plan-desc,
.plan--recommended .plan-features li { color: white; }
.plan--recommended .plan-desc { color: rgba(255,255,255,0.6); }
.plan--recommended .plan-features li { color: rgba(255,255,255,0.85); }
.plan--recommended .plan-features { border-top-color: rgba(255,255,255,0.15); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.plan-price { margin-bottom: 8px; }
.plan-amount {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
}
.plan-period { font-size: 16px; color: var(--fg-muted); margin-left: 2px; }
.plan-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 13.5px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.plan--recommended .plan-features li::before { background: var(--accent-warm); }

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, #F5DDD8 0%, transparent 70%);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.closing h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 60px;
}
.closing-visual {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent-light);
}
.closing-ring--1 { width: 160px; height: 160px; }
.closing-ring--2 { width: 110px; height: 110px; border-color: var(--accent-warm); }
.closing-ring--3 { width: 60px; height: 60px; border-color: var(--accent); }
.closing-center {
  position: absolute;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-links span {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: 36px; }
  .pain-inner { grid-template-columns: 1fr; gap: 32px; }
  .pain-divider { width: 60px; height: 1px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: span 1; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan--recommended { transform: none; }
  nav { padding: 16px 24px; }
  .hero, .features, .how, .pricing, .closing { padding-left: 24px; padding-right: 24px; }
  .pain { padding: 60px 24px; }
  footer { padding: 32px 24px; }
}