/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ─── Custom Properties ─── */
:root {
  --green: #1a4d2e;
  --green-light: #245c3b;
  --green-dark: #0f2e1b;
  --cream: #f5f0e8;
  --cream-dark: #ece5d8;
  --amber: #d4a84b;
  --amber-light: #e8c06a;
  --white: #ffffff;
  --ink: #1a1a18;
  --ink-muted: #6b6b63;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─── */
.font-display { font-family: var(--font-display); }

/* ─── NAV ─── */
/* top: 40px pushes nav below the fixed founding banner (~40px tall) */
.site-nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 77, 46, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  /* 160px top accounts for fixed founding banner (~40px) + fixed nav (~55px) + breathing room */
  padding: 160px 40px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 420px;
  font-weight: 400;
}

/* ─── Phone Frame ─── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.phone-frame {
  background: var(--green-dark);
  border-radius: 42px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(15, 46, 27, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
  max-width: 320px;
  margin: 0 auto;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: var(--green-dark);
  border-radius: 0 0 18px 18px;
  margin: -8px auto 8px;
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: #0a1f10;
  border-radius: 32px;
  padding: 24px 20px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26, 77, 46, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.call-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
}
.call-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.call-avatar {
  width: 52px; height: 52px;
  margin: 8px 0 4px;
}
.call-avatar svg { width: 100%; height: 100%; }
.call-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}
.call-sublabel {
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.call-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4ade80;
  margin-bottom: 8px;
}
.status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
}
.status-dot.active { animation: pulse-dot 1.5s ease-in-out infinite; }
.transcript {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.transcript-line {
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 85%;
}
.transcript-line.ai {
  background: rgba(26, 77, 46, 0.5);
  color: #c8e6d0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.transcript-line.human {
  background: rgba(212, 168, 75, 0.15);
  color: #e8c8a0;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.booking-confirmed {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 11px;
  color: #4ade80;
  font-weight: 500;
  margin-top: 4px;
}
.phone-button {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 12px auto 4px;
}

/* ─── Hero Stats ─── */
.hero-stat-row {
  display: flex;
  gap: 24px;
}
.hero-stat {
  flex: 1;
  padding: 20px;
  background: var(--green);
  border-radius: 16px;
  color: var(--cream);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.75;
}

/* ─── Shared Section Styles ─── */
section { padding: 100px 40px; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.1;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

/* ─── PROBLEM ─── */
.problem { background: var(--green-dark); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem .section-headline { color: var(--cream); }
.problem .section-label { color: var(--amber); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.problem-card {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 20px;
  padding: 32px;
}
.problem-icon {
  width: 52px; height: 52px;
  background: rgba(212, 168, 75, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}
.problem-footnote {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.4);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.footnote-highlight {
  color: var(--amber);
  font-weight: 600;
}

/* ─── HOW ─── */
.how { background: var(--cream); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(26, 77, 46, 0.08);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}
.step-connector {
  padding: 0 16px;
  flex-shrink: 0;
}

/* ─── FEATURES ─── */
.features { background: var(--green); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-label { color: var(--amber); }
.features .section-headline { color: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 20px;
  padding: 28px;
  transition: background 0.2s;
}
.feature-card:hover {
  background: rgba(245, 240, 232, 0.09);
}
.feature-card.feature-large {
  grid-column: span 2;
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(212, 168, 75, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

/* ─── OUTCOMES ─── */
.outcomes { background: var(--cream-dark); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-header { margin-bottom: 56px; }
.outcomes-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  background: var(--green);
  border-radius: 24px;
  overflow: hidden;
}
.outcome-stat {
  flex: 1;
  padding: 48px 40px;
  text-align: center;
}
.outcome-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}
.outcome-label {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.5;
}
.outcome-divider {
  width: 1px;
  height: 80px;
  background: rgba(245, 240, 232, 0.1);
  flex-shrink: 0;
}
.outcomes-quote {
  max-width: 640px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--amber);
  opacity: 0.3;
  line-height: 0.8;
  display: block;
  margin-bottom: 16px;
}
.outcomes-quote blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green);
  line-height: 1.4;
  margin-bottom: 16px;
  font-style: italic;
}
.outcomes-quote cite {
  font-size: 14px;
  color: var(--ink-muted);
  font-style: normal;
}

/* ─── PRICING ─── */
.pricing { background: var(--cream); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 500px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(26, 77, 46, 0.1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}
.pricing-card.pricing-featured {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 24px 64px rgba(15, 46, 27, 0.2);
}
.founding-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber);
  background: rgba(212, 168, 75, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.founding-badge-light {
  background: rgba(212, 168, 75, 0.2);
}
.pricing-tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--amber);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green);
  margin-bottom: 16px;
}
.pricing-featured .pricing-tier { color: var(--cream); }
.pricing-featured .btn-setup { background: var(--cream); color: var(--green); }
.pricing-featured .btn-setup:hover { background: var(--cream-dark); }
.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
}
.price-setup {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--green);
}
.price-setup-label {
  font-size: 14px;
  color: var(--ink-muted);
  margin-right: 4px;
  align-self: center;
}
.price-divider {
  width: 100%;
  height: 1px;
  background: rgba(26, 77, 46, 0.1);
  margin: 4px 0;
}
.pricing-featured .price-divider { background: rgba(245, 240, 232, 0.15); }
.price-month {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--amber);
}
.price-month-label {
  font-size: 16px;
  color: var(--ink-muted);
  margin-left: 4px;
  align-self: center;
}
.pricing-featured .price-month-label { color: rgba(245, 240, 232, 0.6); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--ink-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--amber);
  border-radius: 50%;
}
.pricing-featured .pricing-features li { color: rgba(245, 240, 232, 0.7); }
.pricing-footer {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pricing-note {
  font-size: 14px;
  color: var(--ink-muted);
}

/* ─── CLOSING ─── */
.closing {
  background: var(--green-dark);
  padding: 120px 40px;
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-content {
  max-width: 700px;
}
.closing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}
.cta-label {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--amber);
  font-style: italic;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  padding: 64px 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.4);
}
.footer-meta p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.3);
  line-height: 1.6;
  max-width: 400px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .phone-frame { max-width: 280px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.feature-large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .outcomes-stats { flex-direction: column; }
  .outcome-divider { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.feature-large { grid-column: span 1; }
  .hero-stat-row { flex-direction: column; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 140px 20px 60px; }
  section { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
}

/* ─── CTA BUTTONS (landing → /demo) ─── */
.btn-demo-hero {
  display: inline-block;
  padding: 14px 28px;
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn-demo-hero:hover { background: var(--green-light); transform: translateY(-1px); }

.btn-demo-pricing {
  display: inline-block;
  padding: 16px 36px;
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(15,46,27,0.18);
}
.btn-demo-pricing:hover { background: var(--green-light); transform: translateY(-1px); }

.btn-setup {
  display: block;
  margin-top: 20px;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, transform 0.1s;
}
.btn-setup:hover { background: var(--ink-light); transform: translateY(-1px); }

.btn-sample-report {
  display: inline-block;
  padding: 12px 24px;
  border: 1.5px solid rgba(245,240,232,0.2);
  border-radius: 12px;
  color: rgba(245,240,232,0.65);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-sample-report:hover { border-color: rgba(245,240,232,0.5); color: var(--cream); text-decoration: none; }

/* ── Closing CTA layout ── */
.closing-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOUNDING 5 TOP BANNER ─── */
/* Banner sits fixed at the very top; nav is pushed down via top offset */
.founding-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #16a34a;
  text-align: center;
  padding: 10px 20px;
}
.founding-banner-text {
  font-size: 14px;
  font-weight: 500;
  color: #f5f0e8;
  line-height: 1.4;
  margin: 0;
}
.founding-banner-spots {
  font-weight: 700;
  color: #fde68a;
}
.founding-banner-cta {
  display: inline-block;
  margin-left: 12px;
  font-weight: 700;
  color: #fde68a;
  text-decoration: none;
  border-bottom: 1px solid rgba(253,230,138,0.4);
  transition: border-color 0.15s;
}
.founding-banner-cta:hover {
  border-color: #fde68a;
  text-decoration: none;
}
@media (max-width: 600px) {
  .founding-banner-text { font-size: 13px; }
  .founding-banner-cta { display: block; margin: 6px auto 0; }
}

/* ─── FOUNDING 5 PRICING RIBBON ─── */
.founding5-ribbon {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #ffffff;
  background: #16a34a;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.founding5-ribbon-light {
  background: rgba(253,230,138,0.25);
  color: #fde68a;
}
.founding5-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.price-standard-strike {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: line-through;
  align-self: center;
  opacity: 0.7;
}
.price-standard-strike-light {
  color: rgba(245, 240, 232, 0.45);
}

/* ─── HERO TRUST LINE ─── */
.hero-trust-line {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 2px;
}