@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --cream: #fefefe;
  --warm:  #fdfcfb;
  --stone: #f0eee9;
  --charcoal: #1c1c1a;
  --mid: #6b6b67;
  --light: #c8c5be;
  --accent: #4a6741;
  --accent-light: #e8ede7;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 20px 52px;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(10px);
}
nav::after {
  content: '';
  position: absolute; bottom: 0; left: 52px; right: 52px;
  height: 0.5px;
  background: rgba(200,197,190,0.4);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.34rem; font-weight: 300;
  letter-spacing: .38em; text-transform: none;
  text-decoration: none; color: var(--charcoal);
  flex: 1;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 56px; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: var(--mid); transition: color .2s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-cta-wrap {
  flex: 1; display: flex; justify-content: flex-end;
}
.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: .76rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 22px; border: 1px solid rgba(100, 110, 130, 0.35);
  background: transparent; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  text-decoration: none; color: var(--charcoal); border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(0, 0, 0, 0.05); border-color: rgba(100, 110, 130, 0.55);
  color: var(--charcoal); transform: translateY(-1px);
}
.nav-cta.nav-cta--primary {
  background: rgb(55, 98, 227); border-color: rgb(55, 98, 227); color: #fff;
  box-shadow: 0 2px 10px rgba(55, 98, 227, 0.22);
}
.nav-cta.nav-cta--primary:hover {
  background: rgb(40, 80, 200); border-color: rgb(40, 80, 200); color: #fff;
  box-shadow: 0 4px 14px rgba(55, 98, 227, 0.32); transform: translateY(-1px);
}

/* ── SHARED ── */
section {
  padding: 100px 52px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.section-inner { max-width: 1020px; margin: 0 auto; width: 100%; }
.label {
  font-size: .67rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--light); margin-bottom: 20px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 24px;
}
.rule {
  border: none;
  height: 0.5px;
  background: rgba(200,197,190,0.4);
  margin: 0 52px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding-top: 80px;
  background: var(--cream);
  position: relative; overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.hero-orb {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 42%, #e8ede7aa 0%, transparent 68%);
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { opacity:.55; transform:scale(1); }
  50%      { opacity:.9;  transform:scale(1.05); }
}
.hero-content { position: relative; z-index: 1; }
.hero-content::before {
  content: '';
  position: absolute;
  top: -280px; bottom: -320px; left: -600px; right: -600px;
  background-image:
    linear-gradient(to right, rgba(200,197,190,0.23) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(200,197,190,0.23) 0.5px, transparent 0.5px);
  background-size: 3.75px 3.75px;
  mask-image: radial-gradient(ellipse 50% 45% at 50% 48%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 45% at 50% 48%, black 30%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.65rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 42px; max-width: 860px;
}
h1 em { font-weight: 300; font-style: italic; font-size: 1.18em; }
.tw-cursor {
  display: inline-block;
  width: 2.5px;
  height: .75em;
  background: var(--mid);
  margin-left: 4px;
  opacity: .5;
  vertical-align: baseline;
  translate: 0 .05em;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: .5; }
  50%       { opacity: 0; }
}
.hero-sub {
  font-size: 1.024rem; letter-spacing: .217em; text-transform: uppercase;
  color: var(--mid); margin: 22px auto 52px;
  display: flex; align-items: center; justify-content: center; gap: 11px;
}
.hero-wave {
  display: inline-flex; align-items: center; gap: 4px; height: 27px;
}
.hero-wave span {
  display: block; width: 2.8px; border-radius: 2px;
  background: rgb(55, 98, 227); animation: heroWave 1.5s ease-in-out infinite;
}
.hero-wave span:nth-child(1){height:6px;animation-delay:0s}
.hero-wave span:nth-child(2){height:13px;animation-delay:.1s}
.hero-wave span:nth-child(3){height:18px;animation-delay:.2s}
.hero-wave span:nth-child(4){height:10px;animation-delay:.3s}
.hero-wave span:nth-child(5){height:15px;animation-delay:.4s}
.hero-wave span:nth-child(6){height:8px;animation-delay:.5s}
.hero-wave span:nth-child(7){height:14px;animation-delay:.3s}
@keyframes heroWave {
  0%,100%{transform:scaleY(.4);opacity:.4}
  50%    {transform:scaleY(1);opacity:1}
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  padding: 18px 48px; background: rgb(55, 98, 227); color: #fff;
  font-size: .96rem; letter-spacing: .18em; text-transform: uppercase;
  border: 2px solid rgb(55, 98, 227); cursor: pointer; text-decoration: none;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
  border-radius: 999px; font-family: 'Inter', sans-serif; font-weight: 400;
  box-shadow: 0 2px 14px rgba(55, 98, 227, 0.28);
}
.btn-outline:hover {
  background: rgb(40, 80, 200); border-color: rgb(40, 80, 200);
  box-shadow: 0 4px 18px rgba(55, 98, 227, 0.38); transform: translateY(-1px);
}
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  animation: bob 2.8s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(12px); }
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--light);
  border-bottom: 1.5px solid var(--light);
  transform: rotate(45deg);
}

/* ── STATS ── */
#stats { background: var(--warm); min-height: auto; }
.stats-vertical {
  text-align: center;
}
.stats-vertical h2 { margin-bottom: 16px; font-size: clamp(0.7rem, 1.4vw, 1rem); opacity: 0.45; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: .3em; font-weight: 300; }
.stats-stack {
  display: flex; flex-direction: column; align-items: center;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  max-width: 520px;
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 40px; bottom: 0; left: -280px; right: -280px;
  background-image:
    linear-gradient(to right, rgba(200,197,190,0.28) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(200,197,190,0.28) 0.5px, transparent 0.5px);
  background-size: 3.75px 3.75px;
  mask-image: radial-gradient(ellipse 50% 45% at 50% 48%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 45% at 50% 48%, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.stat-item > * { position: relative; z-index: 1; }
.stat-line {
  width: 1px; height: 40px;
  background: var(--light);
}
.stat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid var(--light);
  background: var(--warm);
  margin-bottom: 28px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11.8rem; font-weight: 300; line-height: 1;
  color: var(--charcoal); margin-bottom: 28px;
}
.stat-num sup { font-size: 3.7rem; }
.stat-copy { font-size: 1.36rem; color: var(--mid); line-height: 1.8; max-width: 640px; margin-bottom: 20px; text-transform: none; }

/* ── OUTCOMES ── */
#outcomes { background: var(--cream); align-items: flex-start; justify-content: center; height: 100vh; box-sizing: border-box; padding-top: 50px; padding-bottom: 40px; }
.outcomes-inner { max-width: 1060px; width: 100%; text-align: center; }
.outcomes-heading {
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  opacity: 0.45;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-weight: 300;
  margin-bottom: 32px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 100%;
}

/* cross lines */
.outcomes-grid::before,
.outcomes-grid::after {
  content: '';
  position: absolute;
  background: var(--light);
  pointer-events: none;
}
/* vertical line */
.outcomes-grid::before {
  width: 0.5px;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* horizontal line */
.outcomes-grid::after {
  height: 0.5px;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* center badge */
.outcomes-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: var(--cream);
  border: 0.5px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(28, 28, 26, 0.4);
  line-height: 1.9;
  z-index: 2;
  pointer-events: none;
}

.outcomes-quad {
  padding: 72px 112px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 19px;
  text-align: center;
}
.outcomes-metric {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.96rem, 4.7vw, 4.3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
}
.outcomes-metric.outcomes-metric--text {
  font-size: clamp(1.68rem, 2.4vw, 2.28rem);
  white-space: nowrap;
}
.outcomes-desc {
  font-size: 1.2rem;
  color: var(--mid);
  line-height: 1.7;
  text-align: center;
}

/* ── Medium screens: shrink badge + reduce quad padding ── */
@media (max-width: 900px) {
  .outcomes-center-badge {
    width: 140px;
    height: 140px;
    font-size: .82rem;
  }
  .outcomes-quad {
    padding: 48px 40px;
  }
}

/* ── Mobile: collapse to stacked list with rules ── */
@media (max-width: 740px) {
  #outcomes { height: auto; padding-top: 60px; padding-bottom: 48px; }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid::before { display: none; }
  .outcomes-grid::after { display: none; }
  .outcomes-center-badge { display: none; }
  .outcomes-quad {
    padding: 32px 0;
    border-bottom: 0.5px solid var(--light);
  }
  .outcomes-quad:first-child { padding-top: 48px; }
  .outcomes-quad:last-child { border-bottom: none; }
  .outcomes-desc { max-width: 100%; }
}

/* ── HEAR IT (Audio Demos) ── */
#hear-it { background: #fefefe; padding-top: 72px; padding-bottom: 48px; align-items: flex-start; }
#hear-it .section-inner { max-width: 980px; text-align: center; }
#hear-it .label { font-size: clamp(0.7rem, 1.4vw, 1rem); opacity: 0.45; font-family: 'Inter', sans-serif; letter-spacing: .3em; font-weight: 300; color: var(--charcoal); margin-bottom: 24px; }
.audio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Medium: 2-column grid, last card centered */
@media (max-width: 900px) {
  .audio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audio-grid .audio-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }
}

/* Mobile: single column, show only 3 cards */
@media (max-width: 768px) {
  .audio-grid {
    grid-template-columns: 1fr;
  }
  .audio-grid .audio-card:last-child {
    max-width: none;
    justify-self: stretch;
    grid-column: auto;
  }
  .audio-card--desktop-only {
    display: none !important;
  }
}
.audio-card {
  background:
    linear-gradient(to right, rgba(200,197,190,0.07) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(200,197,190,0.07) 0.5px, transparent 0.5px),
    var(--cream);
  background-size: 2.5px 2.5px, 2.5px 2.5px, auto;
  padding: 24px 20px 20px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: background .2s, box-shadow .2s;
  cursor: pointer;
  border-radius: 10px;
  border: 0.8px solid rgba(200,197,190,0.4);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 2px 6px rgba(0,0,0,0.02);
}
.audio-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.audio-card-icon {
  display: flex;
  align-items: center;
  color: rgb(55, 98, 227);
  line-height: 1;
  transition: color .2s;
}
/* Per-card icon colors */
.audio-card:nth-child(1) .audio-card-icon { color: #3762e3; } /* Hours — blue */
.audio-card:nth-child(2) .audio-card-icon { color: #d4a017; } /* Services — gold */
.audio-card:nth-child(3) .audio-card-icon { color: #4a6741; } /* Directions — green */
.audio-card:nth-child(4) .audio-card-icon { color: #3762e3; } /* Booking — blue */
.audio-card:nth-child(5) .audio-card-icon { color: #e08a2e; } /* Reschedule — amber */
.audio-card:nth-child(6) .audio-card-icon { color: #c9443d; } /* Cancel — red */
.audio-card:nth-child(7) .audio-card-icon { color: #6b5ebd; } /* After Hours — purple */
.audio-card:nth-child(8) .audio-card-icon { color: #b07d4b; } /* Outside — brown */
.audio-card:nth-child(9) .audio-card-icon { color: #2a9d8f; } /* Talk to Someone — teal */
.audio-card:hover {
  background:
    linear-gradient(to right, rgba(200,197,190,0.07) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(200,197,190,0.07) 0.5px, transparent 0.5px),
    var(--warm);
  background-size: 2.5px 2.5px, 2.5px 2.5px, auto;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 0 0 1px rgba(200,197,190,0.3);
}
.audio-card.playing {
  background: rgba(82, 130, 68, 0.3);
  border-color: rgba(82, 130, 68, 0.5);
}
.audio-card.playing .audio-card-icon { color: var(--accent); }
.audio-card-label {
  font-size: .84rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  transition: color .2s;
}
.audio-card.playing .audio-card-label { color: var(--charcoal); }
.audio-card-preview {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.34rem;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  line-height: 1.5;
  flex: 1;
  margin-top: 16px;
  transition: color .2s;
}
.audio-card.playing .audio-card-preview { color: var(--mid); }
.audio-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: 1px solid var(--light);
  padding: 5px 12px;
  cursor: pointer;
  width: 50%;
  transition: all .2s;
  border-radius: 999px;
}
.audio-play:hover { border-color: var(--charcoal); color: var(--charcoal); }
.audio-card.playing .audio-play {
  border-color: var(--accent);
  color: var(--accent);
}
.audio-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 20px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity .3s;
}
.audio-card.playing .audio-waveform { opacity: 1; }
.audio-waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: rgba(200,197,190,0.5);
}
.audio-waveform span:nth-child(1) { height: 30%; }
.audio-waveform span:nth-child(2) { height: 70%; }
.audio-waveform span:nth-child(3) { height: 50%; }
.audio-waveform span:nth-child(4) { height: 90%; }
.audio-waveform span:nth-child(5) { height: 40%; }
.audio-waveform span:nth-child(6) { height: 65%; }
.audio-waveform span:nth-child(7) { height: 80%; }
.audio-waveform span:nth-child(8) { height: 35%; }
.audio-card.playing .audio-waveform span {
  background: var(--accent);
  animation: audioWave 1.2s ease-in-out infinite;
}
.audio-card.playing .audio-waveform span:nth-child(1) { animation-delay: 0s; }
.audio-card.playing .audio-waveform span:nth-child(2) { animation-delay: .1s; }
.audio-card.playing .audio-waveform span:nth-child(3) { animation-delay: .2s; }
.audio-card.playing .audio-waveform span:nth-child(4) { animation-delay: .05s; }
.audio-card.playing .audio-waveform span:nth-child(5) { animation-delay: .15s; }
.audio-card.playing .audio-waveform span:nth-child(6) { animation-delay: .25s; }
.audio-card.playing .audio-waveform span:nth-child(7) { animation-delay: .08s; }
.audio-card.playing .audio-waveform span:nth-child(8) { animation-delay: .18s; }
@keyframes audioWave {
  0%, 100% { transform: scaleY(.4); opacity: .7; }
  50%       { transform: scaleY(1); opacity: 1; }
}

/* ── EXAMPLES CAROUSEL ── */
#examples { background: var(--warm); padding-top: 80px; padding-bottom: 60px; align-items: flex-start; }
#examples .section-inner { max-width: 1280px; }
#examples h2 { margin-bottom: 16px; font-size: clamp(0.7rem, 1.4vw, 1rem); opacity: 0.45; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: .3em; font-weight: 300; text-align: center; }
.examples-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--light);
  background: none;
  color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
}
.carousel-arrow:hover { border-color: var(--charcoal); color: var(--charcoal); transform: scale(1.05); }
.carousel-arrow:disabled { opacity: .25; pointer-events: none; }
.examples-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
  margin: -12px 0;
}
.examples-carousel {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.example-card {
  flex: 0 0 calc(50% - 12px);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(200,197,190,0.25);
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1), 0 0 0 1px rgba(200,197,190,0.3);
}
.example-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(200,197,190,0.07) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(200,197,190,0.07) 0.5px, transparent 0.5px),
    #faf9f8;
  background-size: 2.8px 2.8px, 2.8px 2.8px, auto;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.example-img img {
  width: 90%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
.example-info {
  padding: 32px 36px 36px;
}
.example-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 14px;
}
.example-metrics {
  list-style: none;
  padding: 0;
}
.example-metrics li {
  font-size: .88rem;
  color: var(--mid);
  line-height: 2;
}
.example-metrics strong {
  color: var(--charcoal);
  font-weight: 500;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid var(--light);
  background: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
}
.carousel-dot.active { background: var(--charcoal); border-color: var(--charcoal); }

/* ── EXAMPLES: mobile single-card swipe ── */
@media (max-width: 740px) {
  .carousel-arrow { display: none; }
  .examples-carousel-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .examples-carousel-viewport::-webkit-scrollbar { display: none; }
  .examples-carousel {
    transition: none;
    transform: none !important;
  }
  .example-card {
    flex: 0 0 calc(100% - 16px);
    scroll-snap-align: center;
  }
}

/* ── GET STARTED (steps) ── */
#get-started { background: var(--warm); text-align: center; min-height: 100vh; align-items: flex-start; justify-content: center; padding-top: 100px; padding-bottom: 80px; position: relative; }
#get-started::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(200,197,190,0.22) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(200,197,190,0.22) 0.5px, transparent 0.5px);
  background-size: 3.75px 3.75px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
#get-started .section-inner { position: relative; z-index: 1; max-width: 1080px; }
#get-started h2 { margin-bottom: 8px; font-size: clamp(1.4rem, 2.8vw, 2.2rem); }
.steps-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 40px;
  line-height: 1.5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.step-card {
  background: var(--cream);
  border: 0.5px solid rgba(200,197,190,0.6);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.step-badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .84rem; font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.step-badge--1 { background: rgba(55, 98, 227, 0.75); }
.step-badge--2 { background: rgba(201, 146, 42, 0.75); }
.step-badge--3 { background: rgba(74, 124, 107, 0.75); }
.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
  padding-left: 16px;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.22rem; font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin: 0;
}
.step-sub {
  font-size: 1rem; color: var(--mid);
  margin-top: 6px;
  margin-bottom: 20px;
  text-align: center;
}
.step-rule {
  border: none;
  border-top: 0.5px solid rgba(200,197,190,0.7);
  margin-bottom: 20px;
}
.step-list {
  list-style: none;
  padding: 0; margin: 0;
  font-size: 1rem;
  color: var(--mid);
  line-height: 2;
}
.step-list li::before {
  content: '·';
  color: var(--charcoal);
  margin-right: 8px;
  opacity: 0.45;
}
.step-note { color: var(--light); font-size: .78rem; }
.steps-cta {
  display: inline-block;
  margin-top: 48px;
  font-size: .82rem;
  padding: 14px 32px;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--warm); text-align: center; height: 100vh; min-height: unset; align-items: center; justify-content: center; padding-top: 60px; padding-bottom: 60px; overflow: hidden; position: relative; }
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(200,197,190,0.23) 0.5px, transparent 0.5px),
    linear-gradient(to bottom, rgba(200,197,190,0.23) 0.5px, transparent 0.5px);
  background-size: 3.75px 3.75px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 25%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#testimonials .section-inner { position: relative; z-index: 1; }
#testimonials .section-inner { max-width: 800px; }
#testimonials h2 { margin-bottom: 0; font-size: clamp(2rem, 4.94vw, 3.94rem); line-height: 1.1; }

/* Quote rotator */
.testimonial-quotes {
  position: relative;
  min-height: 5.5em;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-quotes::before { display: none; }
.testimonial-quote {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.testimonial-quote.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial-quote.exit {
  opacity: 0;
  transform: translateY(-18px);
}

/* Wave animation in get-started section */
.get-started-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 41px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.get-started-wave span {
  display: block;
  width: 4.2px;
  border-radius: 2px;
  background: rgb(55, 98, 227);
  animation: heroWave 1.5s ease-in-out infinite;
}
.get-started-wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.get-started-wave span:nth-child(2) { height: 19px; animation-delay: .1s; }
.get-started-wave span:nth-child(3) { height: 26px; animation-delay: .2s; }
.get-started-wave span:nth-child(4) { height: 16px; animation-delay: .3s; }
.get-started-wave span:nth-child(5) { height: 23px; animation-delay: .4s; }
.get-started-wave span:nth-child(6) { height: 12px; animation-delay: .5s; }
.get-started-wave span:nth-child(7) { height: 20px; animation-delay: .3s; }

/* ── FOOTER ── */
footer {
  padding: 20px 52px;
  background: var(--warm);
  border-top: 1px solid var(--stone);
  display: flex; justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
footer small { font-size: .95rem; color: var(--light); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

@media (max-width: 768px) {
  html { scroll-snap-type: y mandatory; }
  nav { padding: 16px 24px; }
  nav::after { left: 24px; right: 24px; }
  .nav-cta { font-size: .68rem; padding: 8px 16px; white-space: nowrap; }
  .nav-logo { font-size: 1.1rem; }
  .nav-logo img { height: 34px; }
  h1 { font-size: clamp(2.8rem, 11vw, 4rem); }
  .hero-sub { font-size: .704rem; letter-spacing: .159em; gap: 8px; }
  .hero-wave { height: 20px; gap: 3.5px; }
  .hero-wave span { width: 2.5px; }
  .hero-content::before {
    top: -150px; bottom: -180px; left: -300px; right: -300px;
    background-image:
      linear-gradient(to right, rgba(200,197,190,0.12) 0.5px, transparent 0.5px),
      linear-gradient(to bottom, rgba(200,197,190,0.12) 0.5px, transparent 0.5px);
  }
  section { padding: 90px 24px 48px; }
  .rule { margin: 0 24px; }
  .stat-num { font-size: 7.5rem; margin-bottom: 28px; }
  .stat-num sup { font-size: 2.9rem; }
  .stat-copy { font-size: 1.1rem; }
  .stat-line { height: 42px; }
  .stat-dot { margin-bottom: 28px; }
  .testimonial-quotes::before {
    background-image:
      linear-gradient(to right, rgba(200,197,190,0.13) 0.5px, transparent 0.5px),
      linear-gradient(to bottom, rgba(200,197,190,0.13) 0.5px, transparent 0.5px);
  }
  footer { padding: 24px; max-height: none; min-height: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .audio-card--desktop-only { display: none !important; }
  .outcomes-quad--desktop-only { display: none !important; }
  .step-card { text-align: center; }
  .step-header { justify-content: flex-start; padding-left: 24px; }
  .step-list { text-align: left; display: inline-block; }
  .steps-cta { display: none; }
}

@media (max-width: 900px) and (min-width: 769px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

/* ============================================================
   Voice Assistant — Single Orb Pill UI
   ============================================================ */

/* ---------- Keyframes ---------- */

@keyframes va-idle-pulse {
  0%, 100% { box-shadow: 0 0 6px 2px rgba(56, 189, 248, 0.12); }
  50%      { box-shadow: 0 0 12px 5px rgba(56, 189, 248, 0.22); }
}

@keyframes va-glow {
  0%, 100% { box-shadow: 0 0 8px 3px rgba(56, 189, 248, 0.35), 0 0 16px 6px rgba(56, 189, 248, 0.12); }
  50%      { box-shadow: 0 0 14px 6px rgba(56, 189, 248, 0.5), 0 0 28px 10px rgba(56, 189, 248, 0.16); }
}

@keyframes va-glow-speaking {
  0%, 100% { box-shadow: 0 0 10px 4px rgba(99, 102, 241, 0.4), 0 0 20px 8px rgba(139, 92, 246, 0.15); }
  50%      { box-shadow: 0 0 20px 8px rgba(99, 102, 241, 0.55), 0 0 36px 14px rgba(139, 92, 246, 0.2); }
}

@keyframes va-ring {
  0%   { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

@keyframes va-ring-speaking {
  0%   { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

@keyframes va-shimmer {
  0%   { background-position: 35% 35%; }
  33%  { background-position: 55% 30%; }
  66%  { background-position: 30% 55%; }
  100% { background-position: 35% 35%; }
}

@keyframes va-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ---------- Outer wrapper ---------- */

.va-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 9999;
  flex-direction: row;
  justify-content: flex-end;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.va-wrap.va-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Tooltip ---------- */

.va-tooltip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #faf8f6;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 18px rgba(0,0,0,0.11);
  border-radius: 16px;
  padding: 11px 12px 11px 16px;
  max-width: 360px;
  width: auto;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: relative;
}

.va-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #f5f0eb;
  filter: drop-shadow(1px 0 0 rgba(0,0,0,0.06));
}

.va-tooltip.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  cursor: pointer;
}

.va-tooltip span {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #333;
  letter-spacing: 0.2px;
  line-height: 1.4;
  flex: 1;
}

.va-tooltip-close {
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  margin-left: 10px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.va-tooltip-close:hover {
  background: rgba(0,0,0,0.12);
  color: #333;
}

.va-tooltip-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---------- Pill — orb-only collapsed state (default idle) ---------- */

.va-pill.orb-only {
  padding: 5px;
  border-radius: 999px;
  gap: 0;
  transition: padding 0.25s ease, gap 0.25s ease, box-shadow 0.4s ease;
}

.va-pill.orb-only .va-pill-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: max-width 0.25s ease, opacity 0.2s ease;
}

.va-pill.orb-only .va-pill-close {
  display: none;
}

.va-pill.orb-only .va-pill-orb {
  animation: va-idle-pulse 3s ease-in-out infinite;
}

/* Desktop hover — expand orb-only to show label */
@media (hover: hover) and (pointer: fine) {
  .va-pill.orb-only:hover {
    padding: 5px 10px 5px 5px;
    gap: 8px;
  }
  .va-pill.orb-only:hover .va-pill-label {
    max-width: 120px;
    opacity: 1;
  }
}

/* ---------- Pill button ---------- */

.va-pill {
  position: relative;
  bottom: unset;
  right: unset;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 5px 10px 5px 5px;
  border-radius: 999px;
  background: #f5f0eb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: padding 0.25s ease, box-shadow 0.4s ease;
}

.va-pill:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ---------- Orb ---------- */

.va-pill-orb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #38bdf8, #1d9fd8, #2563eb, #6366f1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.6s ease, height 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
}

.va-orb-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- Label ---------- */

.va-pill-label {
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: none;
  opacity: 1;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ---------- Close button ---------- */

.va-pill-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #e5e5e5;
  color: #737373;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.va-pill-close:hover {
  background: #d4d4d4;
  color: #525252;
}

.va-pill.active:not(.connecting) .va-pill-close {
  display: flex;
}

/* ---------- Active state ---------- */

.va-pill.active {
  gap: 8px;
}

.va-pill.active:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.va-pill.active .va-pill-label {
  opacity: 1;
  pointer-events: none;
  text-align: center;
}

.va-pill.active .va-pill-orb {
  width: 36px;
  height: 36px;
  background: radial-gradient(circle at 35% 35%, #38bdf8, #1d9fd8, #2563eb, #6366f1);
  animation: va-glow 2.5s ease-in-out infinite,
             va-ring 2.5s ease-out infinite, va-shimmer 6s ease-in-out infinite;
  will-change: transform;
}

/* ---------- Connecting state ---------- */

.va-pill.connecting .va-pill-orb {
  background: radial-gradient(circle at 35% 35%, #38bdf8, #1d9fd8, #2563eb, #6366f1);
  box-shadow: none;
  animation: va-blink 1.8s ease-in-out infinite;
}

/* ---------- Speaking state ---------- */

.va-pill.active.speaking .va-pill-orb {
  background: radial-gradient(circle at 35% 35%, #60a5fa, #3b82f6, #2563eb, #6366f1, #8b5cf6);
  animation: va-glow-speaking 0.9s ease-in-out infinite,
             va-ring-speaking 1.2s ease-out infinite, va-shimmer 2s ease-in-out infinite;
  will-change: transform;
}

/* ---------- Error state ---------- */

.va-pill.error .va-pill-orb {
  background: radial-gradient(circle at 35% 35%, #e5e5e5, #d4d4d4, #a3a3a3, #737373);
  transition: background 0.4s ease;
}

.va-pill.error .va-pill-label {
  color: #444;
}

/* ---------- Voice pill responsive ---------- */

@media (max-width: 480px) {
  .va-wrap {
    bottom: 20px;
    right: 16px;
  }

  .va-tooltip {
    width: auto;
    max-width: calc(100vw - 88px);
    padding: 12px 14px 12px 14px;
  }

  .va-tooltip span {
    font-size: 14px;
    letter-spacing: 0.15px;
    white-space: normal;
  }

  .va-tooltip-close {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-left: 8px;
  }

  .va-tooltip-br {
    display: none;
  }
}
