:root {
  --bg: #faf7f2;
  --bg-alt: #f2ede4;
  --fg: #1a1a1a;
  --fg-muted: #6b6460;
  --teal: #1a5c52;
  --teal-light: #2d8a7e;
  --gold: #c9a84c;
  --white: #ffffff;
  --border: #e2dbd2;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-brand { display: flex; align-items: baseline; gap: 10px; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.brand-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, #e8f0ed 0%, #f5f0e8 100%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* AI Card */
.ai-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.ai-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 500;
}
.dot {
  width: 8px; height: 8px;
  background: #6effc4;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ai-card-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.ai-message { border-radius: 12px; padding: 12px 16px; font-size: 14px; line-height: 1.5; max-width: 85%; }
.incoming { background: var(--bg-alt); color: var(--fg); align-self: flex-start; }
.outgoing { background: var(--teal); color: white; align-self: flex-end; }
.booked { background: var(--gold); color: #1a1a1a; }
.ai-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
}
.badge {
  background: #e8f4f0;
  color: var(--teal);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

/* Sections */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

/* Features */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-card > p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
}

/* How It Works */
.how-it-works { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 56px;
}
.step { padding: 0 32px 0 0; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
}
.integration-row { border-top: 1px solid var(--border); padding-top: 32px; }
.integration-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.integration-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-small {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--fg-muted);
}

/* Outcomes */
.outcomes { background: var(--teal); }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcome-text .section-label { color: var(--gold); }
.outcome-text .section-title { color: white; }
.outcome-body { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.outcome-quote {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
}
.outcome-quote p { font-style: italic; color: white; font-size: 15px; line-height: 1.65; margin-bottom: 12px; }
.quote-attr { font-size: 12px; color: rgba(255,255,255,0.5); }
.outcomes-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.stat {
  background: rgba(255,255,255,0.07);
  padding: 36px 28px;
  text-align: center;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* Closing */
.closing { background: var(--fg); }
.closing-content { max-width: 680px; }
.closing-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: white;
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.closing-body { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.closing-tag { display: flex; gap: 16px; flex-wrap: wrap; }
.closing-tag span {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Footer */
footer { background: var(--fg); border-top: 1px solid rgba(255,255,255,0.08); padding: 32px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand .brand-name { color: rgba(255,255,255,0.6); }
.brand-desc { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.footer-meta p { font-size: 12px; color: rgba(255,255,255,0.25); text-align: right; max-width: 400px; line-height: 1.6; }

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 48px 24px; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-inner { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta p { text-align: center; }
}