:root {
  --bg: #FAFAF7;
  --bg-alt: #F0EDE8;
  --fg: #1A1A18;
  --fg-muted: #6B6862;
  --fg-faint: #A8A49E;
  --accent: #D97706;
  --accent-light: #FEF3C7;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #D8F3DC;
  --red: #DC2626;
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 24, 0.08);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover { background: var(--green-mid); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid rgba(26,26,24,0.2);
}
.btn-ghost:hover { border-color: var(--fg); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-faint);
}
.trust-sep { color: rgba(26,26,24,0.2); }

/* PHONE MOCKUP */
.hero-right { display: flex; justify-content: center; }
.phone-mockup { position: relative; }
.phone-frame {
  background: #111;
  border-radius: 28px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aaa;
}
.phone-dot.live {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}
.phone-call {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.call-ring {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--green-light);
  border-radius: 50%;
  opacity: 0.4;
}
.call-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.call-info { flex: 1; min-width: 0; }
.caller-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.caller-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.call-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.call-status.answered {
  background: var(--green-light);
  color: var(--green);
}
.phone-convo {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.convo-line {
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 8px;
}
.convo-line.system {
  background: rgba(45, 106, 79, 0.3);
  color: rgba(216, 243, 220, 0.9);
}
.convo-line.user {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  margin-left: 12px;
}
.phone-badge {
  position: absolute;
  bottom: -16px;
  right: -10px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
}

/* PROOF */
.proof {
  background: var(--fg);
  color: white;
  padding: 80px 40px;
}
.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.proof-stat {
  background: var(--fg);
  padding: 40px 36px;
}
.proof-stat.highlight {
  background: var(--accent);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.proof-stat.highlight .stat-number { color: white; }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.proof-stat.highlight .stat-label { color: rgba(255,255,255,0.8); }
.missed-calls {
  max-width: 1200px;
  margin: 60px auto 0;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.missed-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.missed-row { display: flex; flex-direction: column; gap: 10px; }
.missed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.missed-name { font-size: 14px; color: rgba(255,255,255,0.8); }
.missed-status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
}
.missed-status.missed {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
}
.missed-status.booked {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--fg);
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(26,26,24,0.06);
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-detail {
  font-size: 13px;
  color: var(--fg-faint);
}
.detail-val {
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}

/* SYSTEM */
.system {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.system .section-headline { margin-bottom: 12px; }
.system-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 60px;
}
.vs-table {
  max-width: 1000px;
  margin: 0 auto 60px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(26,26,24,0.08);
}
.vs-header, .vs-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  align-items: center;
}
.vs-header {
  background: var(--fg);
  color: white;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vs-col-agent { color: var(--green-light); }
.vs-col-human { color: rgba(255,255,255,0.4); }
.vs-row {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(26,26,24,0.06);
  font-size: 14px;
}
.vs-row:last-child { border-bottom: none; }
.vs-label {
  font-weight: 600;
  color: var(--fg);
}
.vs-av { color: var(--green-mid); font-weight: 500; }
.vs-other { color: var(--fg-faint); }
.vs-row:nth-child(even) { background: rgba(26,26,24,0.02); }

/* BOOKED CHART */
.booked-week {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(26,26,24,0.08);
}
.week-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-faint);
  margin-bottom: 24px;
}
.week-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 80px;
  margin-bottom: 20px;
}
.day-slot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}
.day-bar {
  width: 100%;
  background: var(--green);
  border-radius: 4px 4px 0 0;
  height: var(--h);
  opacity: 0.8;
}
.day-bar:nth-child(even) { background: var(--green-mid); }
.day-label {
  font-size: 11px;
  color: var(--fg-faint);
  font-weight: 600;
}
.week-summary {
  font-size: 14px;
  color: var(--fg-muted);
  border-top: 1px solid rgba(26,26,24,0.08);
  padding-top: 16px;
}
.booked-count {
  font-weight: 700;
  color: var(--green);
  font-size: 20px;
}
.zero-double {
  color: var(--green-light);
  font-weight: 700;
  background: var(--green);
  color: white;
  padding: 1px 8px;
  border-radius: 20px;
  font-size: 14px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials .section-headline { margin-bottom: 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(26,26,24,0.06);
}
.testimonial-quote {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-initial {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.author-role {
  font-size: 12px;
  color: var(--fg-faint);
  margin-top: 2px;
}
.fired-callout {
  background: var(--accent-light);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.fired-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 16px;
}
.fired-author {
  font-size: 13px;
  color: var(--fg-muted);
}

/* MANIFESTO */
.manifesto {
  background: var(--green);
  color: white;
  padding: 120px 40px;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.manifesto-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: white;
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .phone-frame { width: 260px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .vs-header, .vs-row { grid-template-columns: 1fr; gap: 8px; }
  .vs-col-agent, .vs-col-human { font-size: 13px; }
  .vs-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
  .footer-inner { flex-direction: column; }
  .nav-links { display: none; }
}