:root {
  --bg: #faf8f5;
  --surface: #f2efe9;
  --fg: #1a1a2e;
  --fg-muted: #6b6b7a;
  --accent: #e07a5f;
  --accent-dark: #c4624a;
  --sage: #81a39a;
  --sage-light: #e8f0ed;
  --warm-dark: #2d2a4a;
  --white: #ffffff;
}

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

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

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-surface {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8f0ed 0%, #faf8f5 40%, #f5ede6 100%);
  z-index: 0;
}

.hero-surface::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,95,0.12) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224,122,95,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--warm-dark);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* voice wave */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.voice-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 48px;
}

.voice-wave span {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.5;
  animation: wave 1.4s ease-in-out infinite;
}

.voice-wave span:nth-child(1)  { height: 12px; animation-delay: 0.0s; }
.voice-wave span:nth-child(2)  { height: 22px; animation-delay: 0.1s; }
.voice-wave span:nth-child(3)  { height: 36px; animation-delay: 0.2s; }
.voice-wave span:nth-child(4)  { height: 48px; animation-delay: 0.3s; }
.voice-wave span:nth-child(5)  { height: 38px; animation-delay: 0.4s; }
.voice-wave span:nth-child(6)  { height: 48px; animation-delay: 0.5s; }
.voice-wave span:nth-child(7)  { height: 32px; animation-delay: 0.6s; }
.voice-wave span:nth-child(8)  { height: 44px; animation-delay: 0.7s; }
.voice-wave span:nth-child(9)  { height: 28px; animation-delay: 0.8s; }
.voice-wave span:nth-child(10) { height: 40px; animation-delay: 0.9s; }
.voice-wave span:nth-child(11) { height: 20px; animation-delay: 1.0s; }
.voice-wave span:nth-child(12) { height: 34px; animation-delay: 1.1s; }
.voice-wave span:nth-child(13) { height: 48px; animation-delay: 1.2s; }
.voice-wave span:nth-child(14) { height: 36px; animation-delay: 1.3s; }
.voice-wave span:nth-child(15) { height: 24px; animation-delay: 1.4s; }
.voice-wave span:nth-child(16) { height: 40px; animation-delay: 1.5s; }
.voice-wave span:nth-child(17) { height: 30px; animation-delay: 1.6s; }
.voice-wave span:nth-child(18) { height: 18px; animation-delay: 1.7s; }
.voice-wave span:nth-child(19) { height: 42px; animation-delay: 1.8s; }
.voice-wave span:nth-child(20) { height: 16px; animation-delay: 1.9s; }
.voice-wave span:nth-child(21) { height: 32px; animation-delay: 2.0s; }
.voice-wave span:nth-child(22) { height: 46px; animation-delay: 2.1s; }
.voice-wave span:nth-child(23) { height: 28px; animation-delay: 2.2s; }
.voice-wave span:nth-child(24) { height: 38px; animation-delay: 2.3s; }
.voice-wave span:nth-child(25) { height: 14px; animation-delay: 2.4s; }

@keyframes wave {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

/* ── SCENARIOS ── */
.scenarios {
  padding: 100px 24px;
  background: var(--white);
}

.scenarios-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.scenario-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e8e4dc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,26,46,0.08);
}

.scenario-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 20px;
}

.scenario-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 12px;
}

.scenario-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 860px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid #e8e4dc;
}

.step:last-of-type {
  border-bottom: none;
}

.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 10px;
}

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

.practice-callout {
  background: var(--warm-dark);
  border-radius: 16px;
  padding: 32px 36px;
  text-align: center;
}

.practice-callout p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ── EMPATHY ── */
.empathy-section {
  padding: 100px 24px;
  background: var(--white);
}

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

.empathy-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--warm-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.empathy-text > p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.empathy-stats {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
}

/* empathy ring visual */
.empathy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.empathy-ring {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-layer {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
}

.layer-outer {
  width: 280px;
  height: 280px;
  border-color: rgba(224,122,95,0.15);
  animation: pulse 3s ease-in-out infinite;
}

.layer-mid {
  width: 200px;
  height: 200px;
  border-color: rgba(224,122,95,0.3);
  animation: pulse 3s ease-in-out infinite 0.5s;
}

.layer-inner {
  width: 120px;
  height: 120px;
  border-color: rgba(224,122,95,0.6);
  animation: pulse 3s ease-in-out infinite 1s;
}

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

.ring-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ring-center span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
}

/* ── CLOSING ── */
.closing-section {
  padding: 120px 24px;
  background: var(--warm-dark);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.closing-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid #e8e4dc;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-dark);
  display: block;
}

.brand-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 72px 20px 60px; min-height: 80vh; }
  .hero-headline { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .empathy-inner { grid-template-columns: 1fr; gap: 48px; }
  .empathy-visual { order: -1; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-number { font-size: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 16px 48px; }
  .hero-headline { font-size: 30px; }
  .scenarios, .how-it-works, .empathy-section, .closing-section { padding: 64px 16px; }
  .scenario-grid { grid-template-columns: 1fr; }
  .practice-callout { padding: 24px 20px; }
  .practice-callout p { font-size: 17px; }
}
