:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --fg: #2C2416;
  --fg-muted: #7A6E5A;
  --accent: #B4825A;
  --accent-warm: #D4A574;
  --accent-deep: #8B5E3C;
  --border: rgba(44, 36, 22, 0.12);
  --font-display: 'Cormorant Garamond', 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-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #F5EFE4 0%, #FAF7F2 60%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180,130,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-orb {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(180,130,90,0.2);
}

.orb-ring-1 { width: 220px; height: 220px; animation: orbit-pulse 4s ease-in-out infinite; }
.orb-ring-2 { width: 160px; height: 160px; animation: orbit-pulse 4s ease-in-out infinite 0.6s; border-color: rgba(180,130,90,0.3); }
.orb-ring-3 { width: 100px; height: 100px; animation: orbit-pulse 4s ease-in-out infinite 1.2s; border-color: rgba(180,130,90,0.5); }

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.orb-core {
  width: 60px;
  height: 60px;
  z-index: 1;
}

.orb-core svg {
  width: 100%;
  height: 100%;
}

.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.stat {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── PROBLEM ── */
.problem {
  background: var(--fg);
  color: #F5EFE4;
  padding: 120px 0;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 80px;
  align-items: start;
}

.problem-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 24px;
  grid-column: 1;
  grid-row: 1;
  padding-top: 6px;
}

.problem-content {
  grid-column: 2;
  grid-row: 1;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: #F5EFE4;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.problem-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-body p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,239,228,0.7);
}

.problem-quote {
  grid-column: 1 / 3;
  grid-row: 2;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(245,239,228,0.1);
}

.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: #F5EFE4;
  line-height: 1.4;
  max-width: 700px;
}

.problem-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245,239,228,0.45);
  font-style: normal;
}

/* ── HOW IT WORKS ── */
.howitworks {
  background: var(--bg);
  padding: 120px 0;
}

.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 72px;
  letter-spacing: -0.01em;
}

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

.step {
  padding: 48px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  background: var(--bg);
  transition: background 0.3s;
}

.step:hover {
  background: var(--bg-alt);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(180,130,90,0.25);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* ── OUTCOMES ── */
.outcomes {
  background: var(--bg-alt);
  padding: 120px 0;
}

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

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.outcome-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.outcome-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.outcome-icon svg {
  width: 18px;
  height: 18px;
}

.outcome-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}

.outcome-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── AGENT CARD ── */
.agent-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,36,22,0.06);
}

.agent-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
}

.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(76,175,80,0.05); }
}

.agent-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}

.agent-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agent-msg {
  background: var(--bg-alt);
  border-radius: 12px 12px 12px 4px;
  padding: 14px 16px;
}

.agent-msg-response {
  background: rgba(180,130,90,0.08);
  border-radius: 12px 12px 4px 12px;
}

.agent-msg-text {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.6;
}

.agent-msg-time {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 6px;
  opacity: 0.7;
}

.agent-card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.agent-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--accent);
}

/* ── CLOSING ── */
.closing {
  background: var(--fg);
  padding: 120px 0;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: #F5EFE4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: rgba(245,239,228,0.6);
  line-height: 1.7;
  max-width: 560px;
}

.pulse-ring-container {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(180,130,90,0.3);
}

.pulse-ring-1 { width: 140px; height: 140px; animation: pulse-out 3s ease-out infinite; }
.pulse-ring-2 { width: 140px; height: 140px; animation: pulse-out 3s ease-out infinite 1s; }
.pulse-ring-3 { width: 140px; height: 140px; animation: pulse-out 3s ease-out infinite 2s; }

@keyframes pulse-out {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.pulse-center {
  z-index: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.02em;
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner,
  .outcomes-inner,
  .closing-inner,
  .problem-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-right {
    order: -1;
  }

  .hero-orb {
    width: 160px;
    height: 160px;
  }

  .orb-ring-1 { width: 160px; height: 160px; }
  .orb-ring-2 { width: 110px; height: 110px; }
  .orb-ring-3 { width: 70px; height: 70px; }

  .hero-stats {
    flex-wrap: wrap;
    width: 100%;
  }

  .stat { padding: 14px 20px; flex: 1; min-width: 100px; }

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

  .problem-label {
    grid-column: 1;
    grid-row: 1;
  }

  .problem-content {
    grid-column: 1;
    grid-row: 2;
  }

  .problem-quote {
    grid-column: 1;
    grid-row: 3;
  }

  .howitworks-inner,
  .outcomes-inner,
  .closing-inner,
  .problem-inner,
  .howitworks,
  .outcomes,
  .closing,
  .problem {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .closing-inner {
    gap: 40px;
  }

  .pulse-ring-container {
    width: 100px;
    height: 100px;
  }

  .pulse-ring-1 { width: 100px; height: 100px; }
  .pulse-ring-2 { width: 100px; height: 100px; }
  .pulse-ring-3 { width: 100px; height: 100px; }
}