@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --ink: #fff3f5;
  --muted: #d6b9bd;
  --black: #024a45;
  --deep: #012f2c;
  --surface: #063f3b;
  --cyan: #fbcace;
  --blue: #0a6a62;
  --coral: #c7757e;
  --acid: #e4a3aa;
  --rose-dark: #4a1c24;
  --line: rgba(251, 202, 206, .2);
  --mono: "DM Mono", monospace;
  --display: "Space Grotesk", "PingFang HK", "Noto Sans HK", "Microsoft JhengHei", sans-serif;
  --body: "Manrope", "PingFang HK", "Noto Sans HK", "Microsoft JhengHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--rose-dark); background: var(--cyan); }

#voice-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.three-ready #voice-canvas { opacity: 1; }
.three-fallback #voice-canvas { display: none; }

.scene-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  top: 10vh;
  right: -14vw;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(251,202,206,.18), transparent 66%);
  filter: blur(35px);
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 15;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor-aura {
  position: fixed;
  width: 220px;
  height: 220px;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,202,206,.13), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}
body:hover .cursor-aura { opacity: 1; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.5vw;
  border-bottom: 1px solid rgba(251,202,206,.13);
  background: linear-gradient(180deg, rgba(1,47,44,.94), rgba(2,74,69,.3));
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
}
.brand-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(251,202,206,.25), 0 8px 24px rgba(1,47,44,.35);
}
.brand-slash { color: #a97f84; }
.brand-hk { color: var(--cyan); font-size: 20px; }
.nav-status {
  position: absolute;
  left: 205px;
  display: flex;
  align-items: center;
  gap: 9px;
  font: 400 10px/1 var(--mono);
  letter-spacing: .16em;
  color: #d7babd;
}
.nav-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
  animation: blink 1.8s ease-in-out infinite;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  font: 400 10px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.nav-links a { color: #c7a7ab; transition: color .25s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  position: absolute;
  right: 3.5vw;
  padding: 13px 17px;
  border: 1px solid rgba(251,202,206,.45);
  font: 500 10px/1 var(--mono);
  letter-spacing: .12em;
  transition: background .25s, color .25s, border-color .25s;
}
.nav-cta:hover { color: var(--rose-dark); background: var(--cyan); border-color: var(--cyan); }

main, footer { position: relative; z-index: 2; }
.scene-section {
  position: relative;
  min-height: 100vh;
  scroll-margin-top: 82px;
}
.hero {
  min-height: 100svh;
  padding: 128px 5vw 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .98fr) minmax(460px, .82fr); align-items: center; gap: clamp(42px, 5vw, 90px); }
.hero-copy { max-width: 820px; }
.kicker, .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  font: 400 10px/1 var(--mono);
  letter-spacing: .18em;
  color: #c3a3a7;
}
.kicker span {
  padding: 7px 9px;
  color: var(--rose-dark);
  background: var(--cyan);
  font-weight: 500;
}
.kicker b { font-weight: 400; color: #ead3d6; }
.hero h1 {
  max-width: 870px;
  margin: 0;
  font: 500 clamp(54px, 6.6vw, 98px)/.95 var(--display);
  letter-spacing: -.05em;
  text-wrap: balance;
}
.hero h1::first-line { color: var(--ink); }
.keep-together { white-space: nowrap; }
.hero-lede {
  max-width: 625px;
  margin: 34px 0 0;
  padding-left: 20px;
  border-left: 1px solid var(--cyan);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.65;
  color: #ddc3c6;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.primary-cta, .booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-width: 280px;
  padding: 20px 22px;
  background: var(--cyan);
  color: var(--rose-dark);
  font: 600 12px/1 var(--mono);
  letter-spacing: .07em;
  transition: box-shadow .25s;
}
.primary-cta:hover { box-shadow: 0 0 44px rgba(251,202,206,.32); }
.primary-cta i, .booking-button i { font-style: normal; font-size: 18px; }
.quiet-link {
  font: 400 10px/1 var(--mono);
  color: #d1b2b6;
  letter-spacing: .11em;
}
.quiet-link span { display: inline-block; margin-left: 8px; color: var(--ink); animation: descend 1.6s infinite; }
.hero-proof { position: relative; min-width: 0; }
.voice-orbit { position: absolute; inset: -18% -16%; pointer-events: none; }
.orbit-word {
  position: absolute;
  font: 400 9px/1 var(--mono);
  letter-spacing: .2em;
  color: rgba(255,243,245,.65);
}
.orbit-one { top: 16%; left: 53%; animation: float 5s ease-in-out infinite; }
.orbit-two { right: 2%; top: 48%; color: var(--cyan); animation: float 6s -2s ease-in-out infinite; }
.orbit-three { bottom: 10%; left: 34%; animation: float 5.5s -3s ease-in-out infinite; }

.hero-proof-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(251,202,206,.34);
  border-radius: 20px;
  background: rgba(1,47,44,.78);
  box-shadow: 0 30px 90px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
}
.hero-proof-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: #a88187;
  font: 500 9px/1.3 var(--mono);
  letter-spacing: .1em;
}
.hero-proof-heading span { color: var(--coral); }
.hero-proof-heading span i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 12px rgba(255,109,91,.75); }
.hero-proof-heading b { color: #ddc3c6; font-weight: 400; }
.hero-demo-video { display: block; width: 100%; aspect-ratio: 1108 / 720; background: #090909; object-fit: contain; }
.hero-demo-video::cue { color: #fff; background: rgba(9,9,9,.84); font: 600 16px/1.4 sans-serif; }
.hero-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(251,202,206,.17);
  color: #9f7a80;
  font: 500 9px/1.4 var(--mono);
  letter-spacing: .03em;
}
.hero-video-meta a { color: #d9bcc0; text-align: right; text-decoration: none; }
.hero-video-meta a:hover { color: var(--cyan); }
.hero-transcript {
  padding: 15px 18px 13px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
}
.transcript-label { font: 400 9px/1.5 var(--mono); color: var(--coral); letter-spacing: .12em; }
.hero-transcript p { margin: 0; color: #f0dadd; font-size: 13px; line-height: 1.55; }
.hero-transcript p b { margin-right: 10px; color: var(--cyan); font: 500 9px/1 var(--mono); }
.sound-bars {
  grid-column: 2;
  height: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sound-bars i { width: 2px; height: 5px; background: var(--cyan); animation: sound 1.1s ease-in-out infinite; transform-origin: center; }
.sound-bars i:nth-child(2n) { animation-delay: -.3s; }
.sound-bars i:nth-child(3n) { animation-delay: -.55s; }
.sound-bars i:nth-child(5n) { animation-delay: -.8s; }
.hero-proof-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-top: 1px solid rgba(251,202,206,.17);
  color: #d8b9bd;
  font: 400 9px/1 var(--mono);
  letter-spacing: .08em;
}
.hero-proof-flow i { color: var(--coral); font-style: normal; }

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(1,47,44,.84);
  transform: rotate(-1deg) scale(1.02);
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  will-change: transform;
  font: 500 12px/1 var(--mono);
  letter-spacing: .12em;
}
.ticker-group {
  flex: none;
  width: max-content;
  min-width: 100vw;
  padding-right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
}
.ticker-track b { color: var(--coral); }

.voice-demo {
  min-height: 100svh;
  padding: 16vh 7vw 13vh;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr);
  align-content: center;
  column-gap: 9vw;
  background: linear-gradient(135deg, rgba(251,202,206,.09), transparent 48%);
}
.voice-demo-heading h2 { margin: 0; font: 500 clamp(48px, 5.7vw, 86px)/.96 var(--display); letter-spacing: -.05em; }
.voice-demo-heading h2 span { color: var(--cyan); }
.voice-demo-intro { max-width: 520px; margin: 28px 0 0; color: #d4b7ba; font-size: clamp(14px, 1.2vw, 17px); line-height: 1.7; }
.conversation-map {
  position: relative;
  width: min(100%, 760px);
  align-self: center;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(251,202,206,.32);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 43%, rgba(251,202,206,.13), transparent 34%), rgba(1,47,44,.58);
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(7px);
}
.conversation-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
  overflow: hidden;
}
.conversation-stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.conversation-map-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(251,202,206,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(251,202,206,.17) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 20%, transparent 78%);
}
.conversation-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 148px;
  height: 148px;
  display: grid;
  place-content: center;
  gap: 8px;
  border: 1px solid rgba(255,243,245,.46);
  border-radius: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  background: rgba(1,47,44,.26);
  box-shadow: 0 0 42px rgba(251,202,206,.12), inset 0 0 28px rgba(251,202,206,.06);
  backdrop-filter: blur(3px);
  animation: conversationPulse 3.2s ease-in-out infinite;
}
.conversation-core span { color: #c7a8ac; font: 500 10px/1 var(--mono); letter-spacing: .15em; }
.conversation-core b { color: var(--cyan); font: 500 20px/1 var(--display); text-shadow: 0 0 18px rgba(251,202,206,.36); }
.conversation-path { position: absolute; z-index: 4; inset: 0; margin: 0; padding: 0; list-style: none; pointer-events: none; }
.conversation-path li {
  position: absolute;
  min-width: 205px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(251,202,206,.36);
  border-radius: 13px;
  background: linear-gradient(115deg, rgba(2,74,69,.93), rgba(1,47,44,.72));
  box-shadow: 0 16px 38px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}
.conversation-path li:nth-child(1) { top: 12%; left: 5%; }
.conversation-path li:nth-child(2) { top: 16%; right: 5%; }
.conversation-path li:nth-child(3) { bottom: 16%; left: 5%; }
.conversation-path li:nth-child(4) { right: 5%; bottom: 12%; }
.conversation-path li > span { color: var(--coral); font: 500 28px/1 var(--display); letter-spacing: -.04em; }
.conversation-path li div { display: grid; gap: 7px; }
.conversation-path small { color: #c69ea3; font: 500 10px/1 var(--mono); letter-spacing: .13em; }
.conversation-path strong { color: var(--ink); font: 500 18px/1.18 var(--body); white-space: nowrap; }
.conversation-status { position: absolute; z-index: 5; top: 20px; left: 50%; color: #c7a8ac; font: 500 9px/1 var(--mono); letter-spacing: .14em; transform: translateX(-50%); white-space: nowrap; }
.conversation-status i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: blink 1.6s infinite; }
.demo-transcript { border-top: 1px solid rgba(251,202,206,.18); color: #d4b7ba; }
.conversation-map .demo-transcript { position: relative; z-index: 6; background: rgba(1,47,44,.96); }
.demo-transcript summary { padding: 15px 18px; cursor: pointer; font: 500 10px/1.4 var(--mono); letter-spacing: .05em; }
.demo-transcript summary:hover { color: var(--cyan); }
.demo-transcript-body { max-height: 270px; overflow-y: auto; padding: 2px 18px 18px; color: #b9979c; font: 400 13px/1.65 sans-serif; }
.demo-transcript-body p { margin: 10px 0; }
.demo-transcript-body strong { color: var(--cyan); }
.voice-script { grid-column: 2; max-width: none; margin-top: 42px; font-size: clamp(18px, 1.6vw, 24px); }
.voice-note { grid-column: 2; margin: 18px 0 0; color: #987178; font: 400 9px/1.6 var(--mono); letter-spacing: .07em; }

.chapter {
  min-height: 112vh;
  padding: 20vh 7vw 16vh;
  display: grid;
  grid-template-columns: 100px minmax(300px, 630px) 1fr;
  align-items: center;
}
.chapter-right { grid-template-columns: 1fr minmax(300px, 650px) 100px; }
.chapter-copy { grid-column: 2; }
.chapter-right .chapter-copy { grid-column: 2; grid-row: 1; }
.chapter-copy h2 {
  margin: 0;
  font: 500 clamp(46px, 5.6vw, 84px)/1 var(--display);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.chapter-copy h2 em { color: var(--cyan); font-style: normal; }
.chapter[data-scene="speak"] h2 em { color: var(--coral); }
.chapter-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 0;
  color: #d4b7ba;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.75;
}
.floating-phrase {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(251,202,206,.34);
  color: rgba(255,243,245,.78);
  font: 400 9px/1 var(--mono);
  letter-spacing: .12em;
  backdrop-filter: blur(5px);
  animation: drift 7s ease-in-out infinite;
}
.phrase-a { right: 21vw; top: 28%; color: var(--cyan); }
.phrase-b { right: 7vw; top: 48%; animation-delay: -3s; }
.phrase-c { right: 25vw; bottom: 22%; animation-delay: -5s; }
.reason-stream {
  position: absolute;
  left: 8vw;
  bottom: 13vh;
  display: flex;
  gap: 15px;
  align-items: center;
  color: #aa8388;
  font: 400 9px/1 var(--mono);
  letter-spacing: .1em;
}
.reason-stream span:nth-child(even) { color: var(--blue); }
blockquote {
  max-width: 570px;
  margin: 38px 0 0;
  padding: 18px 0 18px 25px;
  border-left: 1px solid var(--coral);
  color: #f8e6e8;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

.handoff {
  min-height: 120vh;
  padding: 14vh 7vw;
  overflow: hidden;
}
.handoff-title { position: relative; z-index: 3; }
.handoff-title h2 {
  margin: 0;
  max-width: 1100px;
  font: 500 clamp(48px, 5.8vw, 84px)/.98 var(--display);
  letter-spacing: -.05em;
}
.handoff-title h2 span { color: var(--acid); }
.handoff-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 72px);
  width: min(100%, 1180px);
  margin: 16vh auto 9vh;
}
.flow-progress {
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(251,202,206,.2);
  overflow: hidden;
}
.flow-progress i {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--acid), transparent);
  animation: flowSweep 4.2s ease-in-out infinite;
}
.flow-step {
  position: relative;
  min-height: 260px;
  padding: 0;
  transition: transform .35s ease;
}
.flow-step::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 1px;
  width: 13px;
  height: 13px;
  border: 4px solid var(--black);
  background: var(--cyan);
  transform: rotate(45deg);
}
.flow-step > span {
  display: block;
  color: rgba(251,202,206,.6);
  font: 500 clamp(38px, 4vw, 62px)/.8 var(--display);
  letter-spacing: -.06em;
}
.flow-step div { margin-top: 78px; }
.flow-step small {
  display: block;
  margin-bottom: 12px;
  color: #ad878c;
  font: 400 9px/1 var(--mono);
  letter-spacing: .14em;
}
.flow-step strong {
  display: block;
  max-width: 210px;
  color: var(--ink);
  font: 500 clamp(22px, 2.2vw, 34px)/1.08 var(--display);
  letter-spacing: -.04em;
}
.flow-step-final::before { background: var(--acid); }
.flow-step-final > span { color: rgba(228,163,170,.7); }
.flow-step-final strong { color: var(--acid); }
.flow-step:hover { transform: translateY(-5px); }
.gate-note {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: #b99499;
  font-size: 13px;
  line-height: 1.7;
}

.trust {
  min-height: auto;
  padding: 7vh 0 16vh;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(2,74,69,.2), var(--surface) 28%, var(--surface) 88%, rgba(2,74,69,.2));
}
.support-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.support-track > span {
  position: relative;
  min-width: 0;
  min-height: 156px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #f8e6e8;
  background: rgba(251,202,206,.025);
}
.brand-mark {
  width: 100%;
  min-height: 92px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff9f8;
  box-shadow: inset 0 0 0 1px rgba(2,74,69,.08);
}
.brand-mark img {
  display: block;
  width: auto;
  max-width: 88%;
  height: 62px;
  object-fit: contain;
}
.brand-mark-wide img {
  width: 100%;
  height: auto;
  max-height: 52px;
}
.support-track small { color: #b99499; font: 400 8px/1.35 var(--mono); letter-spacing: .1em; }
.support-note {
  display: block;
  margin-top: 24px;
  color: #a47d83;
  font: 400 8px/1.6 var(--mono);
  letter-spacing: .06em;
}
.trust-story {
  position: relative;
  width: min(86vw, 1320px);
  min-height: 650px;
  margin: 6vh auto 0;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-credentials {
  position: relative;
  min-width: 0;
  padding: clamp(38px, 4vw, 62px);
  border-right: 1px solid var(--line);
  background: radial-gradient(circle at 20% 15%, rgba(251,202,206,.1), transparent 40%), var(--deep);
}
.trust-credentials > p {
  margin: 0 0 38px;
  color: var(--cyan);
  font: 500 9px/1.3 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.trust-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  grid-column: 2;
  align-self: center;
  padding: clamp(50px, 5vw, 82px);
}
.trust-copy h2 {
  max-width: 680px;
  margin: 0;
  font: 500 clamp(44px, 5vw, 76px)/.98 var(--display);
  letter-spacing: -.05em;
}
.trust-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: #d5b9bc;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.78;
}
.proof-stats { display: flex; gap: 34px; margin-top: 38px; }
.proof-stats div { min-width: 105px; padding-left: 13px; border-left: 1px solid rgba(251,202,206,.45); }
.proof-stats strong { display: block; color: var(--cyan); font: 500 26px/1 var(--display); }
.proof-stats small { display: block; margin-top: 8px; color: #a47d83; font: 400 8px/1.4 var(--mono); letter-spacing: .08em; }
.founder-link { display: inline-block; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid rgba(251,202,206,.55); color: var(--cyan); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.cases {
  min-height: 120vh;
  padding: 15vh 7vw;
  background: linear-gradient(180deg, rgba(2,74,69,.18), rgba(6,63,59,.97) 35%, var(--surface));
}
.cases-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 9vh;
}
.cases-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -2vh; }
.cases-heading h2 {
  margin: 0;
  font: 500 clamp(48px, 5.6vw, 82px)/.96 var(--display);
  letter-spacing: -.05em;
}
.cases-heading h2 span { color: var(--cyan); }
.cases-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 10px;
  color: #cbaeb1;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.75;
}
.case-console {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(190px, .34fr) 1fr;
  border-top: 1px solid rgba(251,202,206,.24);
  border-bottom: 1px solid rgba(251,202,206,.14);
}
.case-tabs {
  display: flex;
  flex-direction: column;
  padding: 35px 5vw 35px 0;
}
.case-tab {
  position: relative;
  flex: 1;
  min-height: 96px;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: #b28e93;
  background: transparent;
  font: 500 clamp(16px, 1.3vw, 21px)/1.2 var(--display);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: color .35s, transform .35s;
}
.case-tab:last-child { border-bottom: 0; }
.case-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.case-tab span {
  display: block;
  margin-bottom: 12px;
  color: #876168;
  font: 400 9px/1 var(--mono);
  letter-spacing: .14em;
}
.case-tab:hover { color: var(--ink); transform: translateX(5px); }
.case-tab.is-active { color: var(--ink); }
.case-tab.is-active::after { transform: scaleX(1); }
.case-tab.is-active span { color: var(--cyan); }
.case-stage {
  position: relative;
  min-width: 0;
  padding: clamp(38px, 5vw, 78px) 0 clamp(38px, 5vw, 78px) clamp(38px, 6vw, 100px);
  overflow: hidden;
}
.case-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -250px;
  border: 1px solid rgba(251,202,206,.24);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(251,202,206,.08), inset 0 0 70px rgba(251,202,206,.05);
  animation: rotate 28s linear infinite;
}
.case-stage.is-switching > *:not(.case-scan) { animation: caseSwap .42s ease both; }
.case-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 35%, rgba(251,202,206,.09), transparent 65%);
  transform: translateX(-100%);
}
.case-stage.is-switching .case-scan { animation: caseScan .65s ease; }
.case-meta { position: relative; display: flex; align-items: center; justify-content: space-between; }
.case-meta span, .case-meta i {
  font: 400 9px/1 var(--mono);
  letter-spacing: .15em;
}
.case-meta span { color: var(--cyan); }
.case-meta i { color: var(--acid); font-style: normal; }
.case-meta i::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: blink 1.8s infinite;
}
.case-stage h3 {
  position: relative;
  max-width: 870px;
  margin: 36px 0 20px;
  font: 500 clamp(36px, 4.1vw, 64px)/.99 var(--display);
  letter-spacing: -.04em;
  text-wrap: balance;
}
.case-description { position: relative; max-width: 700px; margin: 0; color: #c9aaae; font-size: 15px; line-height: 1.75; }
.case-dialogue {
  position: relative;
  max-width: 850px;
  margin-top: 50px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-dialogue p { display: grid; grid-template-columns: 55px 1fr; gap: 15px; margin: 0; color: #f5e2e4; font-size: 14px; line-height: 1.7; }
.case-dialogue p b { padding-top: 6px; color: var(--coral); font: 500 8px/1 var(--mono); letter-spacing: .12em; }
.case-dialogue p:last-child b { color: var(--cyan); }
.case-wave { height: 22px; margin: 12px 0 12px 70px; display: flex; align-items: center; gap: 5px; }
.case-wave i { width: 2px; height: 7px; background: var(--cyan); animation: sound 1.1s ease-in-out infinite; }
.case-wave i:nth-child(2n) { animation-delay: -.35s; }
.case-wave i:nth-child(3n) { animation-delay: -.7s; }
.case-outcomes { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 34px; }
.case-outcomes div { min-width: 0; padding: 18px 0 0; border-top: 1px solid var(--line); }
.case-outcomes small { display: block; margin-bottom: 10px; color: #9b747b; font: 400 8px/1 var(--mono); letter-spacing: .12em; }
.case-outcomes strong { color: #f6e3e5; font-size: 12px; font-weight: 500; line-height: 1.5; }
.case-disclaimer { margin: 18px 0 0; color: #89636a; font: 400 8px/1.5 var(--mono); letter-spacing: .08em; }

.booking {
  min-height: 105vh;
  padding: 15vh 5vw;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--rose-dark);
  background: var(--cyan);
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,243,245,.7), transparent 42%);
  opacity: .35;
}
.booking-rings { position: absolute; width: 80vw; aspect-ratio: 1; }
.booking-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(74,28,36,.18);
  border-radius: 50%;
  animation: bookingWave 4s ease-out infinite;
}
.booking-rings i:nth-child(2) { animation-delay: -1.35s; }
.booking-rings i:nth-child(3) { animation-delay: -2.7s; }
.booking-copy { position: relative; z-index: 2; text-align: center; }
.booking-copy > p { font: 500 10px/1 var(--mono); letter-spacing: .15em; }
.booking-copy h2 {
  margin: 28px 0 45px;
  font: 500 clamp(52px, 7vw, 104px)/.94 var(--display);
  letter-spacing: -.05em;
}
.booking-button {
  margin: 0 auto;
  min-width: min(500px, 90vw);
  color: var(--ink);
  background: var(--black);
}
.booking-button:hover { box-shadow: 0 18px 50px rgba(1,47,44,.3); }
.booking-copy small { display: block; margin-top: 20px; color: rgba(74,28,36,.7); font-size: 11px; }
.booking-assurance { display: flex; justify-content: center; gap: 24px; margin-top: 30px; color: rgba(74,28,36,.72); font: 600 8px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.booking-assurance span + span::before { content: "/"; margin-right: 24px; opacity: .4; }

.faq {
  min-height: auto;
  padding: 15vh 7vw;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 8vw;
  background: var(--surface);
}
.faq-heading p { margin: 0 0 20px; color: var(--cyan); font: 400 10px/1 var(--mono); letter-spacing: .14em; }
.faq-heading h2 { margin: 0; font: 500 clamp(54px, 6vw, 88px)/.92 var(--display); letter-spacing: -.05em; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: clamp(16px, 1.35vw, 20px);
}
summary::-webkit-details-marker { display: none; }
summary span { color: var(--cyan); font: 300 25px/1 var(--mono); transition: transform .25s; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 680px; margin: -4px 0 26px; color: #c5a6aa; line-height: 1.7; font-size: 14px; }

footer {
  padding: 35px 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
footer p, .footer-links { font: 400 9px/1 var(--mono); letter-spacing: .13em; color: #b08a90; }
.footer-links { justify-self: end; display: flex; gap: 22px; }
.footer-links a:last-child { color: var(--cyan); }
.analytics-consent { position: fixed; z-index: 20; right: 22px; bottom: 22px; width: min(440px, calc(100vw - 44px)); padding: 20px; border: 1px solid rgba(251,202,206,.28); color: #f0dadd; background: rgba(1,47,44,.97); box-shadow: 0 20px 80px rgba(1,47,44,.5); backdrop-filter: blur(16px); }
.analytics-consent p { margin: 0; font-size: 12px; line-height: 1.65; }
.analytics-consent div { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.analytics-consent button { padding: 10px 13px; border: 1px solid #8b656c; color: #dbc2c5; background: transparent; font: 500 9px/1 var(--mono); cursor: pointer; }
.analytics-consent button:last-child { border-color: var(--cyan); color: var(--rose-dark); background: var(--cyan); }
.legal-page { min-height: 100vh; background: var(--surface); }
.legal-nav { position: relative; width: 100%; height: auto; padding: 30px 5vw; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.legal-nav > a:last-child { color: var(--cyan); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.legal-copy { width: min(860px, 90vw); margin: 0 auto; padding: 13vh 0 16vh; }
.legal-copy h1 { margin: 0; font: 500 clamp(58px, 8vw, 110px)/.9 var(--display); letter-spacing: -.06em; }
.legal-lede { max-width: 690px; margin: 35px 0 9vh; color: #d8bdc0; font-size: clamp(17px, 1.7vw, 22px); line-height: 1.7; }
.legal-copy section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 14px; color: var(--ink); font: 500 25px/1.1 var(--display); }
.legal-copy section p { margin: 0; color: #c7a8ac; line-height: 1.8; }
.legal-copy section a { color: var(--cyan); }

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible { animation: revealIn .75s cubic-bezier(.2,.7,.2,1) both; }

@keyframes blink { 50% { opacity: .25; transform: scale(.75); } }
@keyframes sound { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(2.8); } }
@keyframes descend { 50% { transform: translateY(5px); } }
@keyframes scan { to { transform: translateX(100%); } }
@keyframes float { 50% { transform: translate3d(12px,-14px,0); } }
@keyframes drift { 50% { transform: translate3d(16px,-20px,0) rotate(1deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes flowSweep {
  0% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(295%); }
}
@keyframes flowSweepMobile {
  0% { transform: translateY(-110%); }
  70%, 100% { transform: translateY(295%); }
}
@keyframes bookingWave { 0% { transform: scale(.25); opacity: 0; } 25% { opacity: .5; } 100% { transform: scale(1); opacity: 0; } }
@keyframes caseScan { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes caseSwap { from { opacity: .25; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes revealIn { from { opacity: .35; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes conversationPulse { 50% { box-shadow: 0 0 0 30px rgba(251,202,206,.04), 0 0 0 68px rgba(251,202,206,.02); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-status, .nav-links { display: none; }
  .hero { min-height: auto; padding: 132px 6vw 70px; justify-content: flex-start; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 780px; }
  .hero-proof { width: min(100%, 760px); justify-self: center; }
  .voice-demo { grid-template-columns: 1fr; gap: 8vh; }
  .conversation-map { width: min(100%, 760px); justify-self: center; }
  .voice-script, .voice-note { grid-column: 1; }
  .chapter, .chapter-right {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 6vw;
  }
  .chapter-copy, .chapter-right .chapter-copy { grid-column: 1; }
  .floating-phrase { display: none; }
  .cases-heading { grid-template-columns: 1fr; gap: 35px; }
  .cases-heading .eyebrow { margin-bottom: -10px; }
  .case-console { grid-template-columns: 160px 1fr; }
  .trust-story { width: 90vw; grid-template-columns: 1fr 1fr; }
  .trust-credentials { padding: 38px 28px; }
  .trust-copy { padding: 50px 34px; }
  .brand-mark { padding-inline: 14px; }
}

@media (max-width: 700px) {
  .scene-section { scroll-margin-top: 66px; }
  .nav { height: 66px; padding: 0 20px; }
  .nav-cta { right: 20px; padding: 11px 12px; }
  .nav-cta span { display: none; }
  .hero { min-height: auto; padding: 106px 20px 48px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 64px); line-height: .96; }
  .hero-lede { margin-top: 25px; font-size: 14px; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 27px; }
  .primary-cta { width: 100%; min-width: 0; }
  .voice-orbit { inset: -10% -8%; }
  .orbit-one { left: 10%; }
  .orbit-two { right: 4%; }
  .orbit-three { bottom: 4%; }
  .hero-proof-card { border-radius: 14px; }
  .hero-proof-heading { padding: 12px 14px; }
  .hero-video-meta { align-items: flex-start; flex-direction: column; gap: 6px; padding: 11px 14px; }
  .hero-video-meta a { text-align: left; }
  .hero-transcript { grid-template-columns: 64px 1fr; gap: 10px; padding: 14px; }
  .hero-transcript p { font-size: 12px; }
  .hero-proof-flow { gap: 6px; padding: 12px 14px; font-size: 8px; letter-spacing: .02em; }
  .ticker { margin-top: -1px; }
  .chapter, .chapter-right {
    min-height: auto;
    padding: 14vh 20px 11vh;
    grid-template-columns: minmax(0, 1fr);
  }
  .voice-demo { min-height: auto; padding: 13vh 20px; display: block; }
  .voice-demo-heading h2 { font-size: 12vw; }
  .voice-demo-intro { font-size: 14px; }
  .conversation-map { width: 100%; margin-top: 8vh; border-radius: 14px; }
  .conversation-visual { min-height: 720px; }
  .conversation-core { top: 49%; width: 118px; height: 118px; }
  .conversation-core span { font-size: 8px; }
  .conversation-core b { font-size: 17px; }
  .conversation-path li { left: 16px !important; right: 16px !important; min-width: 0; padding: 15px 17px; grid-template-columns: 43px 1fr; }
  .conversation-path li:nth-child(1) { top: 9%; }
  .conversation-path li:nth-child(2) { top: 24%; }
  .conversation-path li:nth-child(3) { top: auto; bottom: 24%; }
  .conversation-path li:nth-child(4) { bottom: 9%; }
  .conversation-path li > span { font-size: 26px; }
  .conversation-path strong { font-size: 17px; }
  .voice-script { margin-top: 35px; padding-left: 18px; font-size: 17px; }
  .booking-assurance { flex-direction: column; gap: 10px; }
  .booking-assurance span + span::before { display: none; }
  .chapter-copy, .chapter-right .chapter-copy { width: 100%; grid-column: 1; }
  .chapter-copy h2 { font-size: clamp(42px, 12vw, 58px); }
  .chapter-copy > p:not(.eyebrow) { font-size: 14px; }
  .reason-stream { position: static; margin: 46px 0 0 30px; max-width: calc(100vw - 70px); flex-wrap: wrap; }
  blockquote { font-size: 16px; padding-left: 16px; }
  .handoff { min-height: auto; padding: 14vh 20px 10vh; }
  .handoff-title h2 { font-size: clamp(34px, 9.2vw, 42px); line-height: 1.08; }
  .handoff-flow { grid-template-columns: 1fr; gap: 0; margin: 10vh 0 6vh; padding-left: 28px; }
  .flow-progress { top: 0; left: 5px; width: 1px; height: 100%; }
  .flow-progress i { width: 100%; height: 34%; animation-name: flowSweepMobile; }
  .flow-step { min-height: 0; padding: 0 0 52px; }
  .flow-step::before { top: 8px; left: -28px; width: 10px; height: 10px; border-width: 3px; }
  .flow-step > span { font-size: 36px; }
  .flow-step div { display: grid; grid-template-columns: 80px 1fr; align-items: end; margin-top: 20px; }
  .flow-step small { margin: 0; }
  .flow-step strong { max-width: none; font-size: clamp(25px, 8vw, 34px); }
  .flow-step:hover { transform: none; }
  .node-b { right: -4%; }
  .node-d { left: -4%; }
  .cases { min-height: auto; padding: 12vh 20px; }
  .cases-heading { margin-bottom: 55px; }
  .cases-heading h2 { font-size: 12.5vw; }
  .case-console { min-height: 0; display: block; }
  .case-tabs { display: flex; flex-direction: row; gap: 25px; overflow-x: auto; padding: 0 0 18px; scrollbar-width: none; }
  .case-tabs::-webkit-scrollbar { display: none; }
  .case-tab { flex: 0 0 auto; min-height: 0; padding: 14px 0; border: 0; font-size: 14px; white-space: nowrap; }
  .case-tab span { margin-bottom: 7px; }
  .case-tab.is-active { padding-left: 0; }
  .case-tab::after { top: auto; right: 0; width: auto; height: 2px; transform: scaleX(0); }
  .case-tab.is-active::after { transform: scaleX(1); }
  .case-stage { padding: 42px 0 28px; }
  .case-meta i { display: none; }
  .case-stage h3 { margin-top: 28px; font-size: 10.5vw; }
  .case-description { font-size: 14px; }
  .case-dialogue { margin-top: 34px; }
  .case-dialogue p { grid-template-columns: 40px 1fr; font-size: 13px; }
  .case-wave { margin-left: 55px; }
  .case-outcomes { grid-template-columns: 1fr; gap: 18px; }
  .trust { padding-bottom: 12vh; }
  .trust-story { width: 100%; min-height: 0; margin-top: 5vh; display: flex; flex-direction: column; border-bottom: 0; }
  .trust-credentials { order: 1; padding: 42px 20px; border-right: 0; }
  .trust-credentials > p { margin-bottom: 26px; }
  .support-track > span { min-height: 132px; padding: 12px; gap: 10px; }
  .brand-mark { min-height: 78px; padding: 12px 10px; border-radius: 10px; }
  .brand-mark img { max-width: 92%; height: 52px; }
  .brand-mark-wide img { width: 100%; height: auto; max-height: 42px; }
  .support-note { margin-top: 20px; }
  .trust-copy { order: 2; grid-column: auto; padding: 56px 20px 0; background: transparent; }
  .trust-copy h2 { font-size: 11vw; }
  .trust-copy > p:not(.eyebrow) { font-size: 14px; }
  .proof-stats { gap: 14px; flex-wrap: wrap; }
  .proof-stats div { min-width: 88px; }
  .proof-stats strong { font-size: 22px; }
  .booking { min-height: 92svh; padding-inline: 20px; }
  .booking-copy h2 { font-size: 13vw; }
  .booking-button { min-width: 0; width: 100%; gap: 15px; font-size: 10px; }
  .faq { padding: 12vh 20px; grid-template-columns: 1fr; gap: 60px; }
  .faq-heading h2 { font-size: 15vw; }
  footer { grid-template-columns: 1fr auto; gap: 25px; padding: 28px 20px; }
  footer p { display: none; }
  .footer-links { gap: 13px; font-size: 8px; letter-spacing: .06em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-aura { display: none; }
}
