/* Fonts */
:root {
  --bg: #F7F3EE;
  --bg-alt: #EEE8E1;
  --fg: #1A1613;
  --fg-muted: #6B6058;
  --accent: #C4571A;
  --accent-light: #E8906A;
  --card-bg: #FFFFFF;
  --border: #DDD5CC;
  --bubble-ai-bg: #F0EBE6;
  --bubble-question-bg: #1A1613;
  --bubble-question-fg: #F7F3EE;
  --success: #2E7D52;
}

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

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

/* Header */
.site-header {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
.proof-sep { color: var(--border); }
.hero-bg-shape {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,87,26,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Conversation Thread */
.conversation {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.conversation-inner {
  max-width: 540px;
  margin: 0 auto;
}
.conversation-label,
.pricing-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.dm-thread {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(26,22,19,0.06);
}
.dm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.dm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.dm-meta {
  display: flex;
  flex-direction: column;
}
.dm-name {
  font-weight: 500;
  font-size: 14px;
}
.dm-time {
  font-size: 12px;
  color: var(--fg-muted);
}
.dm-bubble {
  margin-bottom: 14px;
  max-width: 90%;
}
.dm-question { margin-left: auto; }
.dm-ai { margin-right: auto; }
.dm-bubble p {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.dm-question p {
  background: var(--bubble-question-bg);
  color: var(--bubble-question-fg);
  border-bottom-right-radius: 4px;
}
.dm-ai p {
  background: var(--bubble-ai-bg);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}
.ai-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,87,26,0.12);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 6px;
}
.cal-embed {
  background: var(--card-bg);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 8px;
}
.cal-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cal-icon { font-size: 20px; }
.cal-text { display: flex; flex-direction: column; gap: 2px; }
.cal-text strong { font-size: 13px; color: var(--success); }
.cal-text span { font-size: 12px; color: var(--fg-muted); }
.conversation-caption {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 24px;
  font-style: italic;
}

/* Features */
.features {
  padding: 80px 40px;
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px;
}
.pricing-inner { max-width: 1000px; margin: 0 auto; }
.pricing-label { color: var(--accent-light); }
.pricing .section-title { color: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: rgba(196,87,26,0.08);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-tier {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(247,243,238,0.6);
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 20px; font-weight: 400; }
.pricing-period {
  font-size: 13px;
  color: rgba(247,243,238,0.4);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(247,243,238,0.8);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-light);
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: rgba(247,243,238,0.45);
  max-width: 500px;
  margin: 0 auto;
}

/* Closing */
.closing {
  padding: 80px 40px 100px;
}
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 56px;
  font-weight: 300;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.closing-vision {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--fg-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--fg);
  color: rgba(247,243,238,0.4);
  padding: 40px 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  display: block;
}
.footer-links span {
  font-size: 13px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header { padding: 20px 24px; }
  .tagline { display: none; }
  .hero { padding: 60px 24px 80px; }
  .hero-headline { letter-spacing: -1px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-stats { gap: 32px; }
  .footer-inner { flex-direction: column; }
  .conversation { padding: 60px 24px; }
  .features { padding: 60px 24px; }
  .pricing { padding: 60px 24px; }
  .closing { padding: 60px 24px 80px; }
}