:root {
  --bg: #FDFAF5;
  --bg-alt: #F5EFE6;
  --fg: #1A1A2E;
  --fg-muted: #6B7280;
  --accent: #F97316;
  --accent-dark: #C2410C;
  --dark: #1A1A2E;
  --border: #E8E2D9;
  --card: #FFFFFF;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  background: var(--bg);
  padding: 80px 24px 60px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  letter-spacing: 0.02em;
}

/* PHONE FRAME */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 280px;
  background: var(--dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(26, 26, 46, 0.18), 0 0 0 1px rgba(26,26,46,0.05);
}
.phone-notch {
  width: 90px;
  height: 24px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #F8F4EE;
  border-radius: 24px;
  padding: 16px;
  height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.msg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg-meta { display: flex; flex-direction: column; }
.msg-name { font-size: 12px; font-weight: 600; color: var(--fg); }
.msg-status { font-size: 10px; color: var(--accent); font-weight: 500; }
.msg-chain {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.msg {
  max-width: 88%;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.5;
}
.msg p { margin: 0; }
.msg.incoming { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.msg.outgoing { background: var(--dark); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg .ts { display: block; font-size: 9px; margin-top: 4px; opacity: 0.6; }
.msg-input-bar {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
}
.typing-indicator {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
}

/* PROOF STRIP */
.proof {
  background: var(--dark);
  color: #fff;
  padding: 40px 24px;
}
.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.proof-number {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.proof-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* PROBLEM */
.problem {
  background: var(--bg-alt);
  padding: 80px 24px;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.problem-card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
}
.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400E;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.problem-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.problem-tally {
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 20px 28px;
  font-size: 15px;
}
.problem-tally strong { color: var(--accent); }

/* SOLUTION */
.solution { padding: 80px 24px; background: var(--bg); }
.solution-inner { max-width: 1100px; margin: 0 auto; }
.solution-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.solution-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-step {
  position: relative;
  padding: 24px;
}
.flow-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.flow-content h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.flow-content p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.flow-arrow {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10h12M12 6l4 4-4 4' stroke='%23F97316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* FEATURES */
.features { padding: 80px 24px; background: var(--bg-alt); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.08);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon.amber { background: #FEF3C7; color: #92400E; }
.feature-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* OUTCOMES */
.outcomes { padding: 80px 24px; background: var(--dark); color: #fff; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.outcome-card {
  background: rgba(255,255,255,0.04);
  padding: 28px 24px;
}
.outcome-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.outcome-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.outcomes-case {
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 16px;
  padding: 28px 32px;
}
.case-quote p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 12px;
}
.case-attr { font-size: 13px; color: var(--accent); font-weight: 600; }

/* PRICING */
.pricing { padding: 80px 24px; background: var(--bg); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.pricing-card.retainer {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.retainer::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.pricing-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.per-mo { font-size: 20px; font-weight: 600; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23F97316' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23F97316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}
.pricing-math h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.math-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.math-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 12px 20px;
  font-size: 14px;
}
.math-row.header {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.math-row:not(.header):nth-child(even) { background: var(--bg); }
.math-row strong { color: var(--accent); }
.math-note { font-size: 13px; color: var(--fg-muted); }

/* CLOSING */
.closing {
  padding: 100px 24px 80px;
  background: var(--dark);
  color: #fff;
}
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-cta {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-legal { font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { width: 50px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-flow { grid-template-columns: 1fr; }
  .flow-arrow { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .math-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .math-row.header { display: none; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-amount { font-size: 36px; }
}
