@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: #f4f7f5;
  --muted: #90979b;
  --black: #050609;
  --cyan: #63edff;
  --blue: #5668ff;
  --coral: #ff795f;
  --acid: #ccff4a;
  --line: rgba(255, 255, 255, .14);
  --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: #050609; 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(86,104,255,.16), 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(99,237,255,.11), 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(255,255,255,.09);
  background: linear-gradient(180deg, rgba(5,6,9,.88), rgba(5,6,9,.2));
  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-slash { color: #50565d; }
.brand-hk { color: var(--cyan); font-size: 20px; }
.nav-status {
  position: absolute;
  left: 155px;
  display: flex;
  align-items: center;
  gap: 9px;
  font: 400 10px/1 var(--mono);
  letter-spacing: .16em;
  color: #a7aeb2;
}
.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: #949b9e; transition: color .25s; }
.nav-links a:hover { color: white; }
.nav-cta {
  position: absolute;
  right: 3.5vw;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.35);
  font: 500 10px/1 var(--mono);
  letter-spacing: .12em;
  transition: background .25s, color .25s, border-color .25s;
}
.nav-cta:hover { color: #050609; 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: 150px 5vw 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) .94fr; align-items: center; }
.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: #8e969b;
}
.kicker span {
  padding: 7px 9px;
  color: #050609;
  background: var(--cyan);
  font-weight: 500;
}
.kicker b { font-weight: 400; color: #bec4c6; }
.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: white; }
.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: #aeb5b8;
}
.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: #050609;
  font: 600 12px/1 var(--mono);
  letter-spacing: .07em;
  transition: box-shadow .25s;
}
.primary-cta:hover { box-shadow: 0 0 44px rgba(99,237,255,.28); }
.primary-cta i, .booking-button i { font-style: normal; font-size: 18px; }
.quiet-link {
  font: 400 10px/1 var(--mono);
  color: #a3aaad;
  letter-spacing: .11em;
}
.quiet-link span { display: inline-block; margin-left: 8px; color: white; animation: descend 1.6s infinite; }
.voice-orbit { position: relative; height: 480px; pointer-events: none; }
.orbit-word {
  position: absolute;
  font: 400 9px/1 var(--mono);
  letter-spacing: .2em;
  color: rgba(255,255,255,.55);
}
.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; }

.live-transcript {
  position: absolute;
  right: 5vw;
  bottom: 8vh;
  width: min(40vw, 570px);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.25);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
}
.transcript-label { font: 400 9px/1.5 var(--mono); color: var(--coral); letter-spacing: .12em; }
.live-transcript p { margin: 0; color: #ced3d3; font-size: 14px; line-height: 1.65; }
.live-transcript p b { margin-right: 12px; 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; }
.scroll-cue {
  position: absolute;
  left: 5vw;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #6e767a;
  font: 400 9px/1 var(--mono);
  letter-spacing: .13em;
}
.scroll-cue i { position: relative; width: 70px; height: 1px; background: #464c50; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--cyan); transform: translateX(-100%); animation: scan 2s infinite; }

.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(5,6,9,.8);
  transform: rotate(-1deg) scale(1.02);
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font: 500 12px/1 var(--mono);
  letter-spacing: .12em;
}
.ticker-track b { color: var(--coral); }

.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: #a0a8ab;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.75;
}
.floating-phrase {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(99,237,255,.28);
  color: rgba(255,255,255,.7);
  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: #70777c;
  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: #e4e7e5;
  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(255,255,255,.14);
  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 #050609;
  background: var(--cyan);
  transform: rotate(45deg);
}
.flow-step > span {
  display: block;
  color: rgba(99,237,255,.5);
  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: #747d80;
  font: 400 9px/1 var(--mono);
  letter-spacing: .14em;
}
.flow-step strong {
  display: block;
  max-width: 210px;
  color: #f4f6f5;
  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(196,255,60,.55); }
.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: #81898d;
  font-size: 13px;
  line-height: 1.7;
}

.trust {
  min-height: auto;
  padding: 7vh 0 16vh;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5,6,9,.2), #080a0e 28%, #080a0e 88%, rgba(5,6,9,.2));
}
.support-line {
  padding: 0 0 9vh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.support-line > p {
  margin: 0;
  padding: 20px 7vw;
  color: #757d81;
  font: 400 9px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.support-rail {
  overflow: hidden;
  padding: 16px 7vw 25px;
}
.support-track {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: clamp(28px, 4.5vw, 76px);
  row-gap: 28px;
  width: 100%;
}
.support-track > span {
  min-width: 0;
  position: relative;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #e4e8e6;
}
.support-track > span:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: clamp(-42px, -2.25vw, -18px);
  color: rgba(99,237,255,.35);
  font: 400 15px/1 var(--mono);
}
.support-track b {
  font: 600 clamp(20px, 2vw, 31px)/1 var(--display);
  letter-spacing: -.03em;
}
.support-track small { color: #687075; font: 400 8px/1.35 var(--mono); letter-spacing: .1em; }
.support-note {
  display: block;
  margin: 18px 7vw 0;
  color: #535b60;
  font: 400 8px/1.6 var(--mono);
  letter-spacing: .06em;
}
.trust-story {
  position: relative;
  width: min(86vw, 1320px);
  min-height: 650px;
  margin: 13vh auto 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
}
.trust-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #0b0e12;
}
.trust-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,9,.94) 0%, rgba(5,6,9,.72) 34%, rgba(5,6,9,.1) 67%, rgba(5,6,9,.18)), linear-gradient(0deg, rgba(5,6,9,.65), transparent 35%);
}
.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(.78) contrast(1.05);
  animation: photoBreathe 12s ease-in-out infinite alternate;
}
.trust-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.58);
  font: 400 8px/1 var(--mono);
  letter-spacing: .12em;
}
.trust-photo figcaption i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.trust-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  padding: 60px 0 60px 5vw;
}
.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: #a7aeb1;
  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(99,237,255,.35); }
.proof-stats strong { display: block; color: var(--cyan); font: 500 26px/1 var(--display); }
.proof-stats small { display: block; margin-top: 8px; color: #737b7f; font: 400 8px/1.4 var(--mono); letter-spacing: .08em; }
.cases {
  min-height: 120vh;
  padding: 15vh 7vw;
  background: linear-gradient(180deg, rgba(5,6,9,.18), rgba(8,10,14,.96) 35%, #080a0e);
}
.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: #949ca0;
  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(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.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: #788084;
  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: #4f575b;
  font: 400 9px/1 var(--mono);
  letter-spacing: .14em;
}
.case-tab:hover { color: white; transform: translateX(5px); }
.case-tab.is-active { color: white; }
.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(99,237,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(99,237,255,.05), inset 0 0 70px rgba(99,237,255,.03);
  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(99,237,255,.06), 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: #91999d; 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: #d9dddc; 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: #656d71; font: 400 8px/1 var(--mono); letter-spacing: .12em; }
.case-outcomes strong { color: #e0e4e2; font-size: 12px; font-weight: 500; line-height: 1.5; }
.case-disclaimer { margin: 18px 0 0; color: #555d61; 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: #041015;
  background: var(--cyan);
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.55), transparent 42%);
  opacity: .35;
}
.booking-rings { position: absolute; width: 80vw; aspect-ratio: 1; }
.booking-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(4,16,21,.15);
  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: white;
  background: #050609;
}
.booking-button:hover { box-shadow: 0 18px 50px rgba(5,6,9,.25); }
.booking-copy small { display: block; margin-top: 20px; color: rgba(4,16,21,.65); font-size: 11px; }

.faq {
  min-height: auto;
  padding: 15vh 7vw;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 8vw;
  background: #080a0e;
}
.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: #8c9498; 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: #080a0e;
}
footer p, footer > a:last-child { font: 400 9px/1 var(--mono); letter-spacing: .13em; color: #777f83; }
footer > a:last-child { justify-self: end; 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 photoBreathe { to { transform: scale(1.075) translate3d(-.5%, -.5%, 0); } }
@keyframes revealIn { from { opacity: .35; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1000px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-status, .nav-links { display: none; }
  .hero { padding-inline: 6vw; justify-content: flex-start; padding-top: 145px; }
  .hero-grid { display: block; }
  .hero-copy { max-width: 780px; }
  .voice-orbit { height: 35vh; }
  .live-transcript { width: 52vw; bottom: 8vh; }
  .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; }
}

@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: 100svh; padding: 112px 20px 30px; }
  .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 { height: 18vh; }
  .orbit-one { left: 10%; }
  .orbit-two { right: 4%; }
  .orbit-three { bottom: 4%; }
  .live-transcript { position: relative; inset: auto; width: 100%; margin-top: 8px; grid-template-columns: 65px 1fr; }
  .scroll-cue { display: none; }
  .ticker { margin-top: -1px; }
  .chapter, .chapter-right {
    min-height: 100svh;
    padding: 18vh 20px 12vh;
    grid-template-columns: minmax(0, 1fr);
  }
  .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 { left: 50px; bottom: 8vh; max-width: calc(100vw - 70px); flex-wrap: wrap; }
  blockquote { font-size: 16px; padding-left: 16px; }
  .handoff { min-height: 100svh; padding: 15vh 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; }
  .support-line { padding-bottom: 7vh; }
  .support-line > p { padding-inline: 20px; }
  .support-rail { padding: 8px 20px 20px; }
  .support-track { column-gap: 36px; row-gap: 24px; }
  .support-track > span { min-width: 0; padding: 0; align-items: flex-start; flex-direction: column; gap: 8px; }
  .support-track > span:not(:last-child)::after { right: -21px; }
  .support-track b { font-size: clamp(18px, 6vw, 25px); }
  .support-note { margin-inline: 20px; }
  .trust-story { width: 100%; min-height: 0; margin-top: 9vh; display: flex; flex-direction: column; background: transparent; }
  .trust-photo { position: relative; order: 1; height: 360px; }
  .trust-photo::after { background: linear-gradient(0deg, rgba(5,6,9,.55), transparent 42%); }
  .trust-photo img { object-position: 60% center; }
  .trust-photo figcaption { right: 14px; bottom: 13px; }
  .trust-copy { order: 2; padding: 42px 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; }
}

@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; }
}
