:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE4;
  --fg: #1A1814;
  --fg-muted: #6B6560;
  --accent: #D94F23;
  --accent-warm: #F5E6D3;
  --green: #2D6A4F;
  --white: #FFFFFF;
  --border: #E5DDD3;
  --shadow: rgba(26, 24, 20, 0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.5px;
  border-radius: 6px;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: -0.2px;
}

/* Hero */
.hero {
  padding: 64px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.hero-stat-block {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: var(--fg);
  letter-spacing: -4px;
}

.stat-pct {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
}

.stat-label {
  margin-top: 12px;
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 500;
  line-height: 1.4;
  max-width: 240px;
}

.hero-content {
  padding-top: 8px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-positioning {
  font-size: 14px;
  color: var(--fg-muted);
  border-left: 2px solid var(--accent-warm);
  padding-left: 12px;
  font-style: italic;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phone-mockup {
  background: var(--fg);
  border-radius: 32px;
  padding: 16px;
  width: 260px;
  box-shadow: 0 24px 64px var(--shadow), 0 8px 24px rgba(0,0,0,0.12);
}

.phone-screen {
  background: #111111;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

.phone-header {
  background: #1a1a1a;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.phone-time {
  font-size: 11px;
  color: #999;
  font-family: 'Figtree', monospace;
}

.phone-label {
  font-size: 10px;
  color: var(--accent);
  background: rgba(217, 79, 35, 0.15);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-body {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sms-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 200px;
}

.incoming {
  background: #2a2a2a;
  color: #E0E0E0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.outgoing {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.automated {
  background: #1a3a2a;
  color: #6fcf97;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  font-size: 11px;
}

.lead-capture-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  box-shadow: 0 4px 12px var(--shadow);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Problem */
.problem {
  background: var(--fg);
  color: var(--white);
  padding: 80px 48px;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-headline {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.problem-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.problem-stat {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.ps-number {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.ps-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.solution-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
}

.solution-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.solution-headline {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.solution-body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Features */
.features {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 56px;
}

.features-title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.features-sub {
  font-size: 17px;
  color: var(--fg-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-warm);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Process */
.process {
  background: var(--bg-alt);
  padding: 96px 48px;
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.process-title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -1.5px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.step {
  padding: 32px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: var(--border);
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--border);
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--white);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2.5px;
}

.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 56px;
}

.closing-manifesto {
  border-left: 4px solid var(--accent);
  padding-left: 28px;
}

.manifesto {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  flex: 1;
}

.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    padding: 16px 24px;
  }

  .nav-tagline {
    display: none;
  }

  .hero {
    padding: 48px 24px 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .stat-number {
    font-size: 60px;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-headline {
    font-size: 36px;
  }

  .features {
    padding: 64px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process {
    padding: 64px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  .step-connector::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--border);
    border-bottom: none;
  }

  .closing-headline {
    font-size: 36px;
  }

  .closing {
    padding: 64px 24px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-tagline {
    display: none;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .problem-stats {
    grid-template-columns: 1fr;
  }
}