:root {
  --bg: #faf6f1;
  --fg: #1e1a18;
  --accent: #c4a8a0;
  --accent-dark: #9a7a74;
  --warm: #e8c9a0;
  --muted: #7a6e68;
  --border: #e5dcd5;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232, 201, 160, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(196, 168, 160, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text {}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

/* ORB VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-container {
  position: relative;
  width: 320px;
  height: 320px;
}
.orb {
  position: absolute;
  border-radius: 50%;
}
.orb-1 {
  width: 220px; height: 220px;
  background: radial-gradient(circle at 35% 35%, #f0d9c0, #c4a8a0, #9a7a74);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(196, 168, 160, 0.6), 0 0 120px rgba(232, 201, 160, 0.3);
}
.orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232, 201, 160, 0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196, 168, 160, 0.08), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.phone-ripple {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 160, 0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  animation: ripple 3s ease-out infinite;
}
.ring-1 { width: 180px; height: 180px; animation-delay: 0s; }
.ring-2 { width: 260px; height: 260px; animation-delay: 0.8s; }
.ring-3 { width: 340px; height: 340px; animation-delay: 1.6s; }
@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* STAT ROW */
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 60px auto 0;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
}
.features-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 60px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: #fdf9f4; }
.feature-icon {
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* HOW */
.how {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 40px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 60px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(250, 246, 241, 0.55);
  line-height: 1.65;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: rgba(250, 246, 241, 0.15);
  margin-top: 28px;
  flex-shrink: 0;
}
.quote-block {
  border-left: 1px solid var(--accent-dark);
  padding-left: 28px;
}
.quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(250, 246, 241, 0.8);
  line-height: 1.6;
  margin-bottom: 10px;
}
.quote-source {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* VOICE SECTION */
.voice {
  padding: 100px 40px;
  background: linear-gradient(160deg, #faf6f1 0%, #f5ede3 100%);
}
.voice-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 0 20px;
}
.wave-bar {
  width: 6px;
  height: var(--h);
  background: linear-gradient(to top, var(--accent-dark), var(--warm));
  border-radius: 3px;
  animation: wave 1.8s ease-in-out infinite alternate;
}
.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bar:nth-child(11) { animation-delay: 1.0s; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; }
@keyframes wave {
  0% { transform: scaleY(0.5); }
  100% { transform: scaleY(1); }
}
.waveform-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}
.voice-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}
.voice-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--fg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--bg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 24px;
}
.closing-body {
  font-size: 1rem;
  color: rgba(250, 246, 241, 0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
.closing-visual {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.08;
}
.closing-orb {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #c4a8a0, transparent 70%);
}
.closing-particles { display: none; }

/* FOOTER */
.footer {
  background: #0f0d0b;
  color: rgba(250, 246, 241, 0.4);
  padding: 60px 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--bg);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: 32px;
}
.footer-bottom {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 48px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stat-row { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .features { padding: 60px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .how { padding: 60px 24px; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .voice-inner { grid-template-columns: 1fr; gap: 40px; }
  .voice-visual { order: 2; }
  .closing { padding: 60px 24px; }
}
