:root {
  color-scheme: dark;
  --ink: #151c2c;
  --ink-deep: #0e1523;
  --ink-soft: #1b2435;
  --paper: #f7f7f4;
  --paper-soft: rgba(247, 247, 244, 0.68);
  --paper-faint: rgba(247, 247, 244, 0.54);
  --mint: #a9ddcc;
  --lavender: #cdc6f5;
  --hair: rgba(222, 235, 239, 0.13);
  --panel: rgba(12, 20, 34, 0.28);
  --shell: min(1100px, calc(100vw - 48px));
  --font-heading: "Bricolage Grotesque", Arial, sans-serif;
  --font-body: "Instrument Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--ink); }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 10%, rgba(89, 132, 147, 0.08), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: rgba(169, 221, 204, .18); }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); }
main section[id] { scroll-margin-top: 92px; }

:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 30;
  top: 1rem;
  left: 1rem;
  transform: translateY(-160%);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: .6rem .85rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink-deep);
  font-weight: 650;
}

.skip-link:focus { transform: translateY(0); }
.page-shell { width: var(--shell); margin-inline: auto; }
.section-rule { border-top: 1px solid var(--hair); }
.header-trigger { position: absolute; top: 36px; left: 0; width: 1px; height: 1px; pointer-events: none; }

.site-header {
  position: fixed;
  z-index: 25;
  top: 7px;
  left: 50%;
  display: flex;
  width: var(--shell);
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  padding-block: 24px;
  transition: width 240ms ease, padding 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  content: "";
  transition: inherit;
}

.site-header.is-scrolled {
  width: min(1040px, calc(100vw - 32px));
  padding: 10px 16px;
}

.site-header.is-scrolled::before {
  border-color: rgba(222, 235, 239, .12);
  background: rgba(12, 20, 34, .84);
  box-shadow: 0 14px 42px rgba(2, 7, 15, .28), inset 0 1px rgba(255, 255, 255, .035);
  backdrop-filter: blur(18px);
}

.wordmark { display: inline-flex; min-height: 44px; align-items: center; font-size: 1.12rem; font-weight: 700; letter-spacing: -.045em; }
nav { display: flex; align-items: center; gap: 28px; font-size: .86rem; }
nav a:not(.nav-cta) { display: inline-flex; min-height: 44px; align-items: center; color: var(--paper-soft); transition: color 180ms ease; }
nav a:not(.nav-cta):hover { color: var(--paper); }

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: .48rem .86rem;
  border: 1px solid rgba(169, 221, 204, .7);
  border-radius: 999px;
  color: var(--mint);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover { transform: translateY(-1px); background: var(--mint); color: var(--ink-deep); }

.hero {
  display: grid;
  min-height: 100dvh;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 42px;
  overflow: clip;
  padding-top: 88px;
  padding-bottom: 38px;
}

.hero-copy { min-width: 0; max-width: 590px; }
.hero h1 {
  max-width: 100%;
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.8vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .98;
  text-wrap: balance;
}

.hero-copy > p,
.section-copy > p,
.story-copy > p,
.outcomes .page-shell > p,
.closing-grid > div > p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--paper-soft);
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.18rem;
  border: 1px solid var(--mint);
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink-deep);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--paper); }
.button:active { transform: translateY(1px) scale(.99); }
.text-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--paper-soft); text-decoration: underline; text-underline-offset: .28em; }
.text-link:hover { color: var(--mint); }

.hero-loop-panel { position: relative; width: min(100%, 500px); justify-self: center; }

.hero-figure {
  position: relative;
  display: grid;
  width: min(100%, 500px);
  min-height: 500px;
  aspect-ratio: 1;
  justify-self: center;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-orbit {
  position: absolute;
  top: 11%;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 221, 204, .12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 221, 204, .045), transparent 66%);
  box-shadow: 0 0 100px rgba(169, 221, 204, .07);
  transition: transform 380ms ease, border-color 300ms ease;
}

.hero-figure:hover .hero-orbit { transform: scale(1.04); border-color: rgba(169, 221, 204, .36); }
.hero-figure:focus-visible .hero-orbit { transform: scale(1.04); border-color: var(--mint); box-shadow: 0 0 0 3px var(--mint), 0 0 100px rgba(169, 221, 204, .12); }
.hero-figure:focus-visible { outline: none; }
.hero-figure.is-model-loading .hero-orbit { animation: hero-awaiting-loop 1.8s ease-in-out infinite alternate; }

@keyframes hero-awaiting-loop {
  to { transform: scale(1.035); border-color: rgba(169, 221, 204, .26); box-shadow: 0 0 120px rgba(169, 221, 204, .12); }
}

.loop-wait {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(43%, 10.5rem);
  aspect-ratio: .76;
  filter: drop-shadow(0 0 1.5rem rgba(169, 221, 204, .08));
  opacity: .78;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-figure .loop-wait { width: min(82%, 22rem); }

.loop-wait i,
.loop-wait b {
  position: absolute;
  display: block;
  background-image: linear-gradient(105deg, rgba(247, 247, 244, .1) 24%, rgba(169, 221, 204, .3) 42%, rgba(205, 198, 245, .25) 52%, rgba(247, 247, 244, .1) 70%);
  background-position: 120% 0;
  background-size: 260% 100%;
  animation: loop-skeleton-shimmer 1.55s ease-in-out infinite;
}

.wait-hood {
  z-index: 3;
  top: 4%;
  left: 13%;
  width: 74%;
  height: 45%;
  border-radius: 52% 52% 44% 44%;
}

.wait-hood::before {
  position: absolute;
  top: -15%;
  left: 48%;
  width: 24%;
  height: 34%;
  border-radius: 80% 30% 68% 24%;
  background: inherit;
  content: "";
  transform: rotate(17deg);
}

.wait-face {
  inset: 18% 13% 14%;
  border-radius: 48% 48% 43% 43%;
  background-image: linear-gradient(105deg, rgba(8, 14, 24, .58) 24%, rgba(41, 61, 71, .82) 46%, rgba(8, 14, 24, .58) 70%) !important;
}

.wait-body {
  z-index: 2;
  top: 38%;
  left: 20%;
  width: 60%;
  height: 52%;
  border-radius: 48% 48% 42% 42%;
}

.wait-mark {
  top: 40%;
  left: 34%;
  width: 32%;
  aspect-ratio: 1;
  border: .35rem solid rgba(169, 221, 204, .16);
  border-right-color: rgba(205, 198, 245, .18);
  border-radius: 50%;
  background: transparent !important;
  animation: none !important;
}

.wait-arm {
  z-index: 1;
  top: 47%;
  width: 20%;
  height: 36%;
  border-radius: 999px;
}

.wait-arm-left { left: 5%; transform: rotate(12deg); }
.wait-arm-right { right: 5%; transform: rotate(-12deg); }
.wait-foot { z-index: 1; bottom: 2%; width: 27%; height: 15%; border-radius: 55% 55% 42% 42%; }
.wait-foot-left { left: 21%; }
.wait-foot-right { right: 21%; }

.loop-stage-point .wait-arm-right { top: 43%; right: -7%; transform: rotate(-67deg); }
.closing-loop .wait-arm-left { top: 37%; left: 1%; transform: rotate(48deg); }
.closing-loop .wait-arm-right { top: 37%; right: 1%; transform: rotate(-48deg); }
.loop-stage-sit .wait-body { top: 42%; height: 45%; }
.loop-stage-sit .wait-foot { bottom: 4%; width: 34%; height: 18%; }
.loop-stage-sit .wait-foot-left { left: 13%; transform: rotate(-12deg); }
.loop-stage-sit .wait-foot-right { right: 13%; transform: rotate(12deg); }

@keyframes loop-skeleton-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

.is-model-ready > .loop-wait,
.is-model-unavailable > .loop-wait {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.78);
}

.journey-panel h2,
.section-copy h2,
.outcomes h2,
.closing h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.journey { min-height: 100vh; }
.journey-pin { display: grid; min-height: 100vh; grid-template-columns: 330px minmax(0, 1fr); align-items: center; gap: 72px; padding: 110px 0 48px; }
.journey-guide { position: relative; align-self: stretch; display: grid; grid-template-rows: auto 1fr auto; min-height: 0; }
.journey-kicker, .journey-number { margin-bottom: 0; color: var(--mint); font-family: var(--font-body); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.journey .loop-stage { min-height: 0; height: 100%; max-height: 410px; }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 0; margin: 0; list-style: none; }
.journey-steps li { position: relative; padding-top: 10px; border-top: 1px solid var(--hair); color: var(--paper-faint); font-size: .75rem; transition: color 220ms ease, border-color 220ms ease; }
.journey-steps li span { display: block; margin-bottom: 3px; color: inherit; font-family: var(--font-body); font-size: .75rem; }
.journey-steps li.is-active { border-color: var(--mint); color: var(--mint); }
.journey-deck { position: relative; min-height: 500px; }
.journey-panel { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; pointer-events: none; }
.journey-panel:first-child { opacity: 1; }
.journey-panel h2 { max-width: 14ch; margin: 18px 0 16px; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.journey-panel > p:not(.journey-number) { max-width: 56ch; margin-bottom: 30px; color: var(--paper-soft); font-size: 1.06rem; }
.journey-ui { border: 1px solid rgba(169, 221, 204, .2); border-radius: 16px; background: linear-gradient(145deg, rgba(9, 18, 31, .68), rgba(20, 31, 47, .52)); box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 28px 70px rgba(2, 7, 15, .18); }
.incoming-call { display: grid; grid-template-columns: auto 1fr 180px auto; align-items: center; gap: 16px; padding: 20px; }
.incoming-call div { display: grid; }
.incoming-call small, .journey-ui small { color: var(--mint); }
.incoming-call span:not(.phone-mark), .complete-ui span { color: var(--paper-faint); font-size: .84rem; }
.incoming-call > b { color: var(--mint); font-size: .8rem; font-weight: 500; }
.understand-ui { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; }
.mini-dialogue { padding: 20px 22px; border-right: 1px solid var(--hair); }
.mini-dialogue p { margin-bottom: 12px; color: var(--paper-soft); }
.mini-dialogue b { display: inline-block; min-width: 58px; color: var(--mint); }
.understand-ui dl { padding: 16px 22px; margin: 0; }
.understand-ui dl div { display: grid; grid-template-columns: 74px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--hair); }
.understand-ui dt { color: var(--paper-faint); }
.understand-ui dd { margin: 0; }
.action-ui { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: var(--hair); }
.action-ui > div { display: grid; gap: 7px; padding: 24px; background: var(--ink); }
.action-ui > div > span { color: var(--mint); font-size: 1.35rem; }
.action-ui strong { font-size: .92rem; font-weight: 500; }
.complete-ui { display: flex; align-items: center; gap: 22px; padding: 24px; }
.complete-ui > div { display: grid; gap: 4px; }
.complete-ui strong { font-size: 1.2rem; }

.loop-stage { position: relative; display: grid; place-items: end center; min-height: 280px; margin: 0; overflow: hidden; }
.loop-stage::after { position: absolute; right: 12%; bottom: 18px; left: 12%; height: 26px; border-radius: 50%; background: rgba(3, 8, 17, .35); filter: blur(13px); content: ""; }
.js [data-loop-model]::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 221, 204, .11), rgba(205, 198, 245, .035) 46%, transparent 72%);
  content: "";
  opacity: .65;
  transform: translate(-50%, -50%) scale(.9);
  animation: model-loading 1.8s ease-in-out infinite alternate;
  transition: opacity 320ms ease;
}
.js [data-loop-model].is-model-ready::before,
.js [data-loop-model].is-model-unavailable::before { opacity: .38; animation: none; }

@keyframes model-loading {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.loop-3d {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.loop-3d::before {
  position: absolute;
  inset: 14% 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 221, 204, .09), transparent 68%);
  content: "";
  filter: blur(16px);
}

.loop-3d.is-ready { opacity: 1; }
.loop-3d canvas { position: relative; display: block; width: 100%; height: 100%; cursor: grab; }
.loop-3d canvas:active { cursor: grabbing; }

.conversation { padding: 44px 0 46px; }
.conversation-grid { display: grid; grid-template-columns: 205px minmax(0, 1fr) 220px; align-items: center; gap: 30px; }
.section-copy h2 { max-width: 12ch; }

.call-card {
  position: relative;
  display: grid;
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) 170px;
  overflow: hidden;
  border: 1px solid rgba(169, 221, 204, .2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(9, 18, 31, .6), rgba(20, 31, 47, .5));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 28px 70px rgba(2, 7, 15, .18);
}

.call-card-head { display: flex; grid-column: 1 / -1; height: 60px; align-items: center; gap: 15px; padding: 0 22px; border-bottom: 1px solid var(--hair); }
.phone-mark { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--ink-deep); font-size: .95rem; }
.phone-mark svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.waveform { display: flex; height: 30px; flex: 1; align-items: center; justify-content: center; gap: 3px; margin-left: 18px; }
.waveform i { width: 2px; height: calc(5px + (var(--h, 1) * 2px)); border-radius: 5px; background: var(--mint); opacity: .82; animation: wave 1.4s ease-in-out infinite alternate; }
.waveform i:nth-child(2n) { height: 19px; animation-delay: -1s; }
.waveform i:nth-child(3n) { height: 27px; animation-delay: -.4s; }
.waveform i:nth-child(5n) { height: 12px; animation-delay: -.7s; }
@keyframes wave { to { transform: scaleY(.35); opacity: .42; } }

.dialogue { padding: 16px 22px; margin: 0; }
.dialogue > div { display: grid; grid-template-columns: 66px 1fr; gap: 12px; padding: 7px 0; }
.dialogue dt { color: var(--mint); font-weight: 600; }
.dialogue > div:nth-child(even) dt { color: var(--lavender); }
.dialogue dd { margin: 0; color: var(--paper-soft); }
.booking-result { display: grid; align-content: center; justify-items: center; gap: 13px; padding: 24px; border-left: 1px solid var(--hair); text-align: center; }
.check { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--ink-deep); font-size: 1.5rem; font-weight: 700; }
.loop-stage-sit { min-height: 300px; transform: translateY(-12px); }

.after-call { padding: 70px 0 76px; }
.record-grid { display: grid; grid-template-columns: 270px minmax(0, 1fr); align-items: center; gap: 68px; }
.record { display: grid; min-width: 0; grid-template-columns: .92fr 1.08fr; padding: 30px 32px; border: 1px solid rgba(169, 221, 204, .18); border-radius: 16px; background: rgba(12, 20, 34, .26); box-shadow: inset 0 1px rgba(255, 255, 255, .025); }
.record-facts { padding: 0 34px 0 0; border-right: 1px solid var(--hair); }
.record dl { margin: 0; }
.record dl > div { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding: 10px 0; }
.record dt, .record-label { color: var(--mint); }
.record dd { margin: 0; color: var(--paper-soft); }
.urgent { padding: .2rem .55rem; border: 1px solid rgba(239, 107, 96, .65); border-radius: 999px; color: #f29387; font-size: .82rem; }
.play { display: inline-grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: rgba(247, 247, 244, .14); font-size: .66rem; }
.mini-wave { display: inline-block; width: 80px; height: 14px; margin-left: 9px; vertical-align: middle; background: repeating-linear-gradient(90deg, var(--mint) 0 1px, transparent 1px 4px); mask: linear-gradient(160deg, transparent 5%, #000 35% 65%, transparent 95%); }
.confirmed { display: grid; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hair); }
.confirmed span { color: var(--mint); }
.record-transcript { min-width: 0; padding: 0 0 0 34px; overflow-wrap: anywhere; }
.record-transcript p { margin-bottom: 7px; color: var(--paper-soft); font-size: .9rem; }
.record-transcript b { color: var(--paper); font-weight: 500; }
.record-transcript .record-label { color: var(--mint); font-size: 1rem; }
.summary-label { margin-top: 22px; }

.outcomes { padding: 62px 0 68px; text-align: center; }
.outcomes h2 { max-width: none; }
.outcomes .page-shell > p { max-width: none; }
.outcome-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 0; margin: 38px 0 0; list-style: none; color: var(--mint); font-size: clamp(1.4rem, 2.3vw, 2.25rem); font-weight: 650; letter-spacing: -.045em; }
.outcome-list li { padding-top: 16px; border-top: 1px solid var(--hair); }

.setup { padding: 68px 0 74px; }
.setup-grid { display: grid; grid-template-columns: .72fr 1.2fr .8fr; align-items: start; gap: 34px 60px; }
.setup-grid > *, .journey-deck, .journey-panel, .test-call { min-width: 0; }
.setup .section-copy { grid-column: 1 / -1; max-width: 650px; }
.setup .section-copy h2 { max-width: 18ch; font-size: clamp(1.7rem, 2.6vw, 2.8rem); }
.playbook, .test-call { padding-top: 20px; border-top: 1px solid var(--hair); }
.playbook ul { padding: 0; margin: 16px 0 0; list-style: none; color: var(--paper-soft); }
.playbook li { margin-bottom: 11px; }
.test-call { margin: 0; color: var(--paper-soft); font-size: .88rem; }
.test-call p { margin-bottom: 5px; }
.loop-stage-headset { min-height: 280px; margin-top: -24px; }

.closing { padding: 38px 0 30px; }
.closing-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px; }
.closing h2 { font-size: clamp(2.35rem, 3.8vw, 3.8rem); }
.closing-loop { position: relative; display: grid; min-height: 235px; place-items: end center; margin: 0; overflow: hidden; }

.site-footer { padding: 28px 0 34px; background: rgba(8, 14, 24, .16); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-grid p, .footer-grid a:not(.wordmark), .footer-grid strong { margin: 0; color: var(--paper-faint); font-size: .86rem; }
.footer-grid strong { margin-bottom: 4px; color: var(--paper); font-weight: 500; }
.footer-grid a:not(.wordmark) { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; }
.footer-grid a:hover { color: var(--mint); }
.footer-display { display: block; overflow: hidden; padding: .08em 0 .04em; margin-top: 72px; color: var(--paper); font-size: clamp(4.2rem, 18vw, 15rem); font-weight: 700; letter-spacing: -.085em; line-height: .78; text-align: center; text-transform: uppercase; white-space: nowrap; }
.footer-display:hover { color: var(--mint); }
.footer-meta { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding-top: 20px; margin-top: 38px; border-top: 1px solid var(--hair); color: var(--paper-faint); font-size: .78rem; }
.footer-meta-brand { justify-self: start; color: var(--paper); font-weight: 650; }
.footer-meta-links { display: flex; justify-content: center; gap: 10px; }
.footer-meta a { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.footer-meta-icon { border: 1px solid var(--hair); border-radius: 50%; transition: border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.footer-meta-icon:hover { border-color: rgba(169, 221, 204, .6); transform: translateY(-2px); }
.footer-meta-icon:active { transform: translateY(0); }
.footer-meta-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-meta a:hover { color: var(--mint); }
.footer-meta p { justify-self: end; margin: 0; text-align: right; }

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .hero { grid-template-columns: 1fr 340px; gap: 10px; }
  .hero h1 { font-size: clamp(3rem, 7vw, 4.5rem); }
  .journey-panel h2 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
  .incoming-call { grid-template-columns: auto 1fr; }
  .incoming-call .waveform, .incoming-call > b { grid-column: 1 / -1; }
  .understand-ui, .action-ui { grid-template-columns: 1fr; }
  .mini-dialogue { border-right: 0; border-bottom: 1px solid var(--hair); }
  .record-grid { grid-template-columns: 1fr; gap: 30px; }
  .record { margin-left: 0; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
  .setup .section-copy { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 24px; }
  .footer-grid a:not(.wordmark) { min-height: 44px; }
}

@media (max-width: 900px), (max-height: 639px) {
  .journey { min-height: 0; padding: 54px 0; }
  .journey-pin { display: block; min-height: 0; padding: 0; }
  .journey-guide { display: block; }
  .journey-kicker { margin-bottom: 18px; }
  .journey .loop-stage { height: 300px; margin-bottom: 22px; transform: none; }
  .journey-steps { display: none; }
  .journey-deck { min-height: 0; }
  .journey-panel { position: relative; inset: auto; display: block; padding: 44px 0; opacity: 1 !important; transform: none !important; }
  .journey-panel + .journey-panel { border-top: 1px solid var(--hair); }
}

@media (min-width: 901px) and (min-height: 640px) {
  .journey .loop-stage { transform: translateY(150px); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 32px); }
  body { font-size: 16px; }
  .site-header { padding-block: 18px; }
  .site-header.is-scrolled { width: calc(100vw - 24px); padding: 8px 12px; }
  nav { gap: 12px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 100dvh; grid-template-columns: 1fr; align-content: center; gap: 0; padding-top: 84px; padding-bottom: 20px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.1rem); }
  .hero-copy > p { max-width: 32ch; }
  .hero-loop-panel { width: min(100%, 370px); margin-top: -10px; }
  .hero-figure { width: min(82vw, 330px); min-height: min(82vw, 330px); margin: 0 auto; }
  .journey { padding: 42px 0; }
  .journey .loop-stage { height: 230px; margin-bottom: 22px; }
  .journey-panel { padding: 34px 0; }
  .journey-panel h2 { margin-top: 12px; font-size: 2.7rem; }
  .journey-panel > p:not(.journey-number) { font-size: 1rem; }
  .loop-stage { min-height: 210px; }
  .after-call { padding: 54px 0 58px; }
  .record { grid-template-columns: 1fr; padding: 24px; margin-left: 0; }
  .record-facts { padding: 0 0 26px; border-right: 0; border-bottom: 1px solid var(--hair); }
  .record-transcript { padding: 26px 0 0; }
  .outcomes { text-align: left; }
  .outcome-list { grid-template-columns: 1fr 1fr; gap: 12px 24px; font-size: 1.8rem; }
  .setup-grid { grid-template-columns: 1fr; gap: 34px; }
  .loop-stage-headset { grid-column: auto; grid-row: auto; min-height: 260px; margin-top: -12px; }
  .closing-grid { grid-template-columns: 1fr; }
  .closing h2 { font-size: 3.1rem; }
  .closing-loop { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-display { margin-top: 52px; }
  .footer-meta { grid-template-columns: 1fr; gap: 0; margin-top: 28px; }
  .footer-meta-links { justify-content: flex-start; }
  .footer-meta p { justify-self: start; text-align: left; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.62rem; letter-spacing: -.055em; }
  .hero-actions { gap: 14px; }
  .journey-panel h2 { font-size: 2.35rem; }
  .record { padding: 20px; }
  .outcome-list { gap: 12px 18px; font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .journey { min-height: 0; padding: 42px 0; }
  .journey-pin { display: block; min-height: 0; padding: 0; }
  .journey-guide { display: block; }
  .journey .loop-stage { height: 300px; margin-bottom: 22px; transform: none; }
  .journey-steps { display: none; }
  .journey-deck { min-height: 0; }
  .journey-panel { position: relative; inset: auto; display: block; padding: 34px 0; opacity: 1 !important; transform: none !important; }
  .journey-panel + .journey-panel { border-top: 1px solid var(--hair); }
}

/* Live 3D fades into its reserved hero frame without shifting the page. */
.hero-live { position: absolute; z-index: 2; inset: 0; opacity: 0; pointer-events: none; transition: opacity 500ms ease; }
.hero-live.is-live { opacity: 1; }
.hero-live canvas { display: block; width: 100%; height: 100%; }
.hero .hero-live { transform: scale(1.1); transform-origin: center; }
