@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/inter-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  /* warm canvas + semantic teal · contract 74 §2.1 */
  --black: oklch(18% 0.012 70);
  --ink: oklch(24% 0.014 72);
  --graphite: oklch(40% 0.014 72);
  --mid: oklch(54% 0.014 72);
  --line: oklch(86% 0.016 78);
  --soft: oklch(92% 0.016 78);
  --wash: oklch(95.5% 0.016 80);
  --white: oklch(99% 0.008 82);
  --pure: oklch(100% 0 0);
  --teal: oklch(46% 0.075 185);
  --teal-dark: oklch(38% 0.07 186);
  --teal-soft: oklch(92% 0.03 183);
  --teal-on-dark: oklch(74% 0.085 180);
  --clay: oklch(58% 0.11 42);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-soft: 0 1px 2px oklch(20% 0.01 70 / 0.05), 0 14px 34px -16px oklch(20% 0.01 70 / 0.16);
  --shadow: 0 1px 2px oklch(20% 0.01 70 / 0.06), 0 26px 60px -18px oklch(20% 0.01 70 / 0.24);
  --display: "Manrope", Arial, sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --shell: 1240px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
textarea,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--white);
  background: var(--black);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(100% - 36px, var(--shell));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.section-gray {
  background: var(--wash);
}

.section-black {
  color: var(--white);
  background: var(--black);
}

.eyebrow,
.ui-label,
.state-label {
  font: 650 11px/1.2 var(--sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--mid);
}

.eyebrow-light {
  color: var(--line);
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}
h1,
h2 {
  text-wrap: balance;
}

h1 {
  font-size: clamp(42px, 12vw, 68px);
  font-weight: 560;
  line-height: 0.99;
}

h2 {
  font-size: clamp(34px, 9vw, 54px);
  font-weight: 560;
  line-height: 1.04;
}

h3 {
  font-size: 24px;
  font-weight: 570;
  line-height: 1.12;
}

.button {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font: 620 14px/1.2 var(--sans);
  text-align: center;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-white {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-quiet {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-on-dark-quiet {
  color: var(--white);
  background: transparent;
  border-color: var(--graphite);
}

.text-link,
.text-button {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: 580 14px/1.2 var(--sans);
  cursor: pointer;
}

.text-link-light {
  color: var(--white);
  border-color: var(--graphite);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-h);
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.08em;
}

.site-header > .brand,
.menu-toggle {
  position: relative;
  z-index: 51;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 23px;
  height: 1px;
  background: var(--black);
  transition: transform 180ms ease;
}

.menu-open .menu-toggle > span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle > span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  z-index: 49;
  inset: var(--header-h) 0 0;
  padding: 40px 22px;
  display: none;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
}

.menu-open .primary-nav {
  display: flex;
}

.primary-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--soft);
  font: 550 24px/1.15 var(--display);
}

.header-cta {
  display: none;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 54px) 0 70px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 48px;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero-copy h1 span {
  display: block;
  color: var(--mid);
}

.hero-lead {
  max-width: 590px;
  margin-top: 26px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.hero-actions .text-link {
  align-self: flex-start;
}

.offer-demo {
  min-width: 0;
}

.offer-tabs {
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.offer-tab {
  min-width: 44px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--mid);
  background: var(--white);
  font: 650 12px/1 var(--sans);
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.offer-tab.is-active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.conversation-offer {
  border: 1px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
}

.offer-topline,
.product-frame-bar {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font: 650 10px/1.2 var(--sans);
  letter-spacing: 0.1em;
}

.conversation-offer > .offer-meta,
.conversation-offer > h2,
.offer-reason,
.offer-difference,
.sealed-person,
.offer-actions {
  margin-inline: 18px;
}

.offer-meta {
  margin-top: 24px;
  color: var(--mid);
  font-size: 12px;
}

.conversation-offer > h2 {
  margin-top: 10px;
  font-size: clamp(28px, 8vw, 39px);
  line-height: 1.04;
}

.offer-reason,
.offer-difference {
  padding: 20px 0;
  border-top: 1px solid var(--soft);
}

.offer-reason {
  margin-top: 24px;
}

.offer-reason > span,
.offer-difference > span {
  display: block;
  margin-bottom: 9px;
  color: var(--mid);
  font: 650 10px/1.2 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-reason p,
.offer-difference p {
  font-size: 14px;
  line-height: 1.55;
}

.sealed-person {
  padding: 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  background: var(--wash);
  border: 1px solid var(--soft);
  border-radius: 8px;
}

.sealed-icon {
  width: 36px;
  height: 36px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
}

.sealed-person strong,
.sealed-person span {
  display: block;
}

.sealed-person strong {
  font-size: 12px;
}

.sealed-person div > span {
  margin-top: 3px;
  color: var(--mid);
  font-size: 11px;
  line-height: 1.35;
}

.offer-actions {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8px;
}

.offer-actions .button {
  padding-inline: 10px;
  font-size: 12px;
}

.prototype-note {
  margin-top: 10px;
  color: var(--mid);
  font-size: 11px;
  line-height: 1.45;
}

.split-section,
.category-grid,
.curiosity-grid {
  display: grid;
  gap: 42px;
}

.section-copy .eyebrow,
.section-heading .eyebrow,
.category-grid .eyebrow,
.curiosity-grid .eyebrow {
  margin-bottom: 18px;
}

.section-copy > p:last-child,
.section-heading > p:last-child,
.category-grid > p,
.curiosity-grid > div > p:last-child {
  margin-top: 22px;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.6;
}

.old-profile {
  padding: 22px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.profile-placeholder {
  width: 64px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--mid);
  background: var(--soft);
  font: 550 24px/1 var(--display);
}

.old-profile h3 {
  margin: 7px 0 3px;
  font-size: 23px;
}

.old-profile div > p {
  color: var(--mid);
  font-size: 13px;
}

.profile-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags s {
  padding: 8px 10px;
  color: var(--mid);
  background: var(--wash);
  border: 1px solid var(--soft);
  border-radius: 5px;
  font-size: 12px;
}

.profile-question {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--soft);
  font: 570 20px/1.35 var(--display);
  letter-spacing: -0.02em;
}

.statement-layout h2 {
  max-width: 950px;
  margin-top: 20px;
  font-size: clamp(42px, 10vw, 72px);
}

.statement-layout h2 span,
.big-statement h2 span {
  display: block;
  color: var(--mid);
}

.model-shift {
  margin-top: 54px;
  display: grid;
  border-top: 1px solid var(--graphite);
}

.model-path {
  padding: 20px 0;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--graphite);
}

.model-path span {
  color: var(--line);
  font: 650 10px/1.2 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-path p {
  font-size: 15px;
  line-height: 1.5;
}

.model-path-old p {
  color: var(--mid);
  text-decoration: line-through;
}

.section-heading {
  max-width: 760px;
}

.reason-decomposition {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.reason-decomposition article {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.decomposition-index {
  color: var(--mid);
  font: 650 11px/1.2 var(--sans);
}

.reason-decomposition .ui-label {
  margin-bottom: 10px;
  color: var(--mid);
}

.reason-decomposition h3 {
  font-size: clamp(22px, 6.5vw, 34px);
}

.section-conclusion {
  max-width: 820px;
  margin-top: 46px;
  font: 540 clamp(24px, 7vw, 40px)/1.18 var(--display);
  letter-spacing: -0.03em;
}

.context-compare {
  margin-top: 46px;
  display: grid;
  gap: 14px;
}

.generic-profile,
.live-context-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.generic-profile {
  color: var(--mid);
  background: var(--soft);
}

.generic-profile ul {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.generic-profile li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  text-decoration: line-through;
  font-size: 13px;
}

.generic-profile > p:last-child {
  font-size: 13px;
  line-height: 1.5;
}

.live-context-card {
  background: var(--white);
}

.context-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.context-card-head > span {
  color: var(--mid);
  font-size: 11px;
}

.live-context-card blockquote {
  padding: 18px 0;
  border-bottom: 1px solid var(--soft);
  font: 530 18px/1.45 var(--display);
  letter-spacing: -0.02em;
}

.live-context-card blockquote:last-child {
  border-bottom: 0;
}

.context-statement {
  max-width: 920px;
  margin-top: 52px;
  font: 540 clamp(28px, 8vw, 48px)/1.12 var(--display);
  letter-spacing: -0.035em;
}

.split-section-top {
  align-items: start;
}

.privacy-projection {
  min-width: 0;
}

.private-context,
.public-offer {
  border: 1px solid var(--line);
  border-radius: 12px;
}

.private-context {
  padding: 18px;
  color: var(--mid);
  background: var(--wash);
}

.privacy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.privacy-head strong {
  color: var(--graphite);
  font-size: 11px;
  letter-spacing: 0;
}

.signal-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.signal-list li {
  padding: 12px;
  border: 1px solid var(--line);
  font-size: 12px;
  list-style: none;
}

.projection-arrow {
  padding: 14px 0;
  color: var(--mid);
  text-align: center;
}

.public-offer {
  padding: 22px;
  border-color: var(--ink);
}

.public-offer > span {
  color: var(--mid);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.public-offer h3 {
  margin: 12px 0;
}

.public-offer p {
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.5;
}

.section-heading-light > p:last-child {
  color: var(--line);
}

.consent-demo {
  margin-top: 46px;
  border: 1px solid var(--graphite);
  border-radius: 14px;
  overflow: hidden;
}

.consent-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-bottom: 1px solid var(--graphite);
}

.consent-progress li {
  min-width: 0;
  padding: 13px 8px;
  color: var(--mid);
  border-right: 1px solid var(--graphite);
  font-size: 0;
  text-align: center;
}

.consent-progress li:last-child {
  border-right: 0;
}

.consent-progress li span {
  font: 650 10px/1 var(--sans);
}

.consent-progress li.is-current {
  color: var(--black);
  background: var(--white);
}

.consent-stage {
  min-height: 430px;
  padding: 28px 20px;
  display: grid;
  align-items: center;
}

.consent-panel {
  max-width: 680px;
  margin-inline: auto;
}

.consent-panel .state-label {
  color: var(--line);
}

.consent-panel h3 {
  margin: 14px 0;
  font-size: clamp(30px, 8vw, 48px);
}

.consent-panel > p:not(.state-label) {
  color: var(--line);
  font-size: 15px;
  line-height: 1.6;
}

.decision-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
}

.sealed-decisions {
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.decision-seal {
  min-height: 120px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--mid);
  border: 1px solid var(--graphite);
  border-radius: 8px;
}

.decision-seal span {
  font-size: 11px;
}

.decision-seal strong {
  font: 570 22px/1 var(--display);
}

.decision-seal.is-confirmed {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.consent-panel > .button {
  margin-top: 26px;
}

.person-reveal {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}

.person-monogram {
  width: 82px;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  font: 560 28px/1 var(--display);
}

.person-reveal h3 {
  margin: 0 0 8px;
  font-size: 30px;
}

.person-reveal p {
  color: var(--line);
  font-size: 13px;
  line-height: 1.5;
}

.reset-button {
  margin: 0 20px 20px;
  padding: 0 0 3px;
  color: var(--line);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--graphite);
  font-size: 12px;
  cursor: pointer;
}

.demo-status {
  min-height: 0;
  margin: -10px 20px 20px;
  color: var(--line);
  font-size: 12px;
}

.story-layout {
  margin-top: 46px;
  display: grid;
  gap: 16px;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.story-step {
  min-width: 0;
  padding: 16px;
  display: grid;
  gap: 6px;
  text-align: left;
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.story-step:nth-child(2n) {
  border-right: 0;
}

.story-step:nth-child(n + 3) {
  border-bottom: 0;
}

.story-step span,
.story-step small {
  color: var(--mid);
  font-size: 10px;
}

.story-step strong {
  font-size: 13px;
}

.story-step.is-active {
  color: var(--white);
  background: var(--black);
}

.story-step.is-active span,
.story-step.is-active small {
  color: var(--line);
}

.product-frame {
  min-width: 0;
  border: 1px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
}

.story-panel {
  min-height: 470px;
  padding: 22px;
}

.chat-person {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 10px;
  align-items: center;
}

.chat-person > span {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
}

.chat-person small {
  color: var(--mid);
}

.message {
  width: min(88%, 500px);
  margin-top: 18px;
  padding: 13px 15px;
  background: var(--wash);
  border: 1px solid var(--soft);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.message-system {
  width: 100%;
  color: var(--mid);
  border-style: dashed;
}

.message-self {
  margin-left: auto;
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.message-input {
  margin-top: 22px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--mid);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.schedule-panel h3,
.confirmation-panel h3 {
  margin: 14px 0 26px;
  font-size: 32px;
}

.time-options {
  display: grid;
  gap: 8px;
}

.time-options button,
.feedback-options button {
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  text-align: left;
  cursor: pointer;
}

.time-options button.is-selected,
.feedback-options button.is-selected {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.friction-note {
  margin-top: 24px;
  color: var(--mid);
  font-size: 13px;
}

.confirmation-panel dl {
  border-top: 1px solid var(--line);
}

.confirmation-panel dl > div {
  padding: 16px 0;
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line);
}

.confirmation-panel dt {
  color: var(--mid);
  font-size: 11px;
}

.confirmation-panel dd {
  font-size: 14px;
}

.confirmation-panel > p:last-child {
  margin-top: 22px;
  color: var(--mid);
  font-size: 13px;
}

.call-panel {
  color: var(--white);
  background: var(--black);
}

.call-head {
  display: flex;
  justify-content: space-between;
  color: var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-people {
  margin: 34px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.call-people > div {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: var(--ink);
  border: 1px solid var(--graphite);
}

.call-person {
  min-height: 170px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--graphite);
}

.call-person-self {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.call-person-self small,
.call-person-human small {
  color: var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-person-human img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  display: block;
  object-fit: cover;
  object-position: 50% 28%;
}

.call-person-human figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--graphite);
}

.call-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border-radius: 50%;
  font: 560 18px/1 var(--display);
}

.call-question {
  padding: 18px;
  border: 1px solid var(--graphite);
}

.call-question span {
  color: var(--mid);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.call-question p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.call-note {
  margin-top: 16px;
  color: var(--mid);
  font-size: 11px;
}

.feedback-card,
.curiosity-form {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.feedback-options {
  margin: 20px 0 24px;
  display: grid;
  gap: 8px;
}

.feedback-card > label:not(.checkbox-row),
.curiosity-form > label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.feedback-card textarea,
.curiosity-form textarea {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  resize: vertical;
  line-height: 1.5;
}

.checkbox-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

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

.form-status {
  min-height: 18px;
  margin-top: 12px;
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.45;
}

.big-statement {
  min-height: 78svh;
  display: grid;
  align-items: center;
}

.big-statement h2 {
  max-width: 1000px;
  font-size: clamp(48px, 12vw, 94px);
  line-height: 0.98;
}

.category-grid > p {
  align-self: end;
}

.situation-list {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.situation-list article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.situation-list span {
  color: var(--mid);
  font-size: 11px;
}

.situation-list p {
  font: 540 clamp(22px, 6vw, 32px)/1.24 var(--display);
  letter-spacing: -0.025em;
}

.curiosity-form textarea {
  min-height: 150px;
  font-size: 15px;
}

.curiosity-actions {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.curiosity-actions > span {
  color: var(--mid);
  font-size: 11px;
}

.final-cta {
  padding-block: 100px;
}

.final-cta-inner {
  max-width: 900px;
  text-align: center;
}

.final-cta h2 {
  margin: 18px auto 30px;
  font-size: clamp(42px, 10vw, 74px);
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.final-actions .text-link {
  align-self: center;
}

.final-cta-inner > p:last-child {
  max-width: 620px;
  margin: 30px auto 0;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  padding: 30px 0 max(30px, env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--graphite);
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.brand-footer .brand-mark {
  color: var(--black);
  background: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  color: var(--line);
  background: transparent;
  border: 0;
  font-size: 12px;
  cursor: pointer;
}

.footer-note {
  color: var(--mid);
  font-size: 11px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    transform 420ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.is-switching {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}

.state-enter {
  animation: state-enter 280ms var(--ease) both;
}

@keyframes state-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 700px) {
  .shell {
    width: min(100% - 64px, var(--shell));
  }

  .section {
    padding: 112px 0;
  }

  .hero-actions,
  .final-actions {
    flex-direction: row;
    align-items: center;
  }

  .offer-actions {
    grid-template-columns: 0.8fr 1fr;
  }

  .model-path {
    grid-template-columns: 140px 1fr;
  }

  .context-compare,
  .signal-list,
  .feedback-options {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-options button:last-child {
    grid-column: 1 / -1;
  }

  .reason-decomposition article,
  .situation-list article {
    grid-template-columns: 80px 1fr;
  }

  .consent-progress li {
    padding: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }

  .story-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .story-step,
  .story-step:nth-child(2n),
  .story-step:nth-child(n + 3) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .story-step:last-child {
    border-right: 0;
  }

  .curiosity-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

@media (min-width: 920px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    padding-inline: max(32px, calc((100vw - var(--shell)) / 2));
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 28px;
    background: transparent;
  }

  .primary-nav a {
    padding: 8px 0;
    border: 0;
    color: var(--graphite);
    font: 520 12px/1 var(--sans);
  }

  .primary-nav a:hover {
    color: var(--black);
  }

  .header-cta {
    display: inline-flex;
    color: var(--white);
    background: var(--black);
  }

  .hero {
    padding: calc(var(--header-h) + 72px) 0 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.78fr);
    gap: 84px;
    align-items: center;
  }

  .hero-copy h1 {
    font-size: clamp(58px, 5.3vw, 76px);
  }

  .conversation-offer > .offer-meta,
  .conversation-offer > h2,
  .offer-reason,
  .offer-difference,
  .sealed-person,
  .offer-actions {
    margin-inline: 24px;
  }

  .split-section,
  .category-grid,
  .curiosity-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1fr);
    gap: 90px;
    align-items: center;
  }

  .section-heading-wide {
    max-width: 980px;
  }

  .reason-decomposition article {
    grid-template-columns: 90px minmax(0, 1fr);
    padding: 30px 0;
  }

  .reason-decomposition h3 {
    max-width: 980px;
    font-size: 36px;
  }

  .context-compare {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 16px;
  }

  .generic-profile,
  .live-context-card {
    padding: 28px;
  }

  .consent-stage {
    min-height: 500px;
    padding: 54px;
  }

  .story-layout {
    grid-template-columns: minmax(260px, 0.55fr) minmax(520px, 1fr);
    gap: 28px;
    align-items: start;
  }

  .story-steps {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .story-step {
    min-width: 0;
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-step:nth-child(2n),
  .story-step:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-step:last-child {
    border-bottom: 0;
  }

  .story-panel {
    min-height: 570px;
    padding: 34px;
  }

  .call-people > div,
  .call-person,
  .call-person-human img {
    min-height: 240px;
  }

  .feedback-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .feedback-options button:last-child {
    grid-column: auto;
  }

  .situation-list article {
    grid-template-columns: 100px minmax(0, 1fr);
    padding: 30px 0;
  }

  .situation-list p {
    max-width: 900px;
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .footer-note {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .offer-actions,
  .decision-row,
  .sealed-decisions {
    grid-template-columns: 1fr;
  }

  .conversation-offer > h2 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* ================================================================
   WAVE 1 · warm system overrides + signature scenes (contract 74)
   ================================================================ */
.button {
  border-radius: var(--r-sm);
}
.button-teal {
  color: var(--pure);
  background: var(--teal);
  border-color: var(--teal);
}
.button-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.button-white {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}
.offer-tab {
  border-radius: var(--r-sm);
}
.offer-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
}
.conversation-offer {
  border-color: var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.old-profile,
.live-context-card,
.generic-profile,
.public-offer,
.private-context,
.feedback-card,
.curiosity-form,
.product-frame,
.story-step {
  border-radius: var(--r-md);
}
.consent-demo {
  border-radius: var(--r-xl);
  border-color: oklch(100% 0 0 / 0.14);
}
.consent-progress li.is-current {
  color: var(--black);
  background: var(--white);
}
.section-black .eyebrow-light {
  color: oklch(100% 0 0 / 0.55);
}
.sealed-icon {
  border-radius: 50%;
}
.time-options button.is-selected,
.feedback-options button.is-selected {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--pure);
}

/* --- C1 · Context Collapse ------------------------------------- */
.collapse-stage {
  position: relative;
}
.context-fragments {
  position: absolute;
  inset: -12px -8px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.context-fragment {
  position: absolute;
  max-width: 180px;
  padding: 8px 12px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 500 12px/1.3 var(--sans);
  white-space: nowrap;
  will-change: opacity, transform;
  transition:
    opacity 520ms ease,
    transform 720ms var(--ease),
    border-color 400ms ease,
    color 400ms ease;
}
.context-fragment[data-relevant] {
  color: var(--ink);
}
.collapse-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.collapse-lines path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: 0;
  transition:
    stroke-dashoffset 700ms var(--ease),
    opacity 300ms ease;
}
.js .collapse-stage .offer-demo {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  will-change: opacity, transform;
  transition:
    opacity 560ms ease,
    transform 640ms var(--ease);
}
.js .collapse-stage:not(.is-done) .conversation-offer {
  box-shadow: none;
}
.collapse-stage.is-done .offer-demo,
.collapse-stage.is-done .context-fragment {
  will-change: auto;
}
/* step 1: irrelevant quiet */
.collapse-stage.is-step-1 .context-fragment:not([data-relevant]) {
  opacity: 0.28;
}
/* step 2: relevant gather + lines */
.collapse-stage.is-step-2 .context-fragment:not([data-relevant]) {
  opacity: 0;
}
.collapse-stage.is-step-2 .context-fragment[data-relevant] {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translate(var(--dx, 0), var(--dy, 0));
}
.collapse-stage.is-step-2 .collapse-lines path {
  opacity: 1;
  stroke-dashoffset: 0;
}
/* step 3: fragments dissolve, offer appears */
.collapse-stage.is-step-3 .context-fragment {
  opacity: 0;
  transform: translate(calc(var(--dx, 0) * 1.6), calc(var(--dy, 0) * 1.6)) scale(0.9);
}
.collapse-stage.is-step-3 .collapse-lines path {
  opacity: 0;
}
.collapse-stage.is-step-3 .offer-demo,
.no-js .offer-demo {
  opacity: 1;
  transform: none;
}
.collapse-stage.is-done .context-fragments,
.collapse-stage.is-done .collapse-lines {
  display: none;
}
.collapse-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 10px;
  min-height: 18px;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.4;
  transition: opacity 300ms ease;
}

/* --- C6 · Productive Difference --------------------------------- */
.difference-scene {
  margin: 40px 0 12px;
  padding: 28px 18px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.difference-svg {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin-inline: auto;
  overflow: visible;
}
.difference-svg text {
  font: 650 13px var(--sans);
  letter-spacing: 0.12em;
  fill: var(--mid);
}
.difference-svg .d-path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 800ms var(--ease);
}
.difference-svg .d-path-right {
  transition-delay: 120ms;
}
.difference-svg .d-zone {
  fill: var(--wash);
  stroke: var(--line);
  stroke-width: 1;
  opacity: 0;
  transform: scale(0.92);
  transform-origin: 360px 150px;
  transition:
    opacity 400ms ease,
    transform 500ms var(--ease);
}
.difference-svg .d-zone-label {
  fill: var(--graphite);
  opacity: 0;
  transition: opacity 400ms ease 300ms;
}
.difference-svg .d-marker {
  fill: var(--teal);
  opacity: 0;
  transform: scale(0.4);
  transform-origin: 360px 150px;
  transition:
    opacity 260ms ease 620ms,
    transform 420ms var(--ease) 620ms;
}
.difference-svg .d-ring {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: 360px 150px;
  transition:
    opacity 300ms ease 700ms,
    transform 600ms var(--ease) 700ms;
}
.difference-scene.is-drawn .d-path {
  stroke-dashoffset: 0;
}
.difference-scene.is-drawn .d-zone,
.difference-scene.is-drawn .d-zone-label,
.difference-scene.is-drawn .d-marker {
  opacity: 1;
  transform: none;
}
.difference-scene.is-drawn .d-ring {
  opacity: 0.55;
  transform: none;
}
.difference-legend {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.45;
}
.difference-legend strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}
.difference-legend div:last-child {
  text-align: right;
}
.difference-caption {
  margin-top: 22px;
  font: 560 clamp(20px, 3vw, 26px)/1.2 var(--display);
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 420ms ease 900ms,
    transform 520ms var(--ease) 900ms;
}
.difference-scene.is-drawn .difference-caption {
  opacity: 1;
  transform: none;
}

/* --- C8 · Consent → Mutual Yes → Human --------------------------- */
.consent-pair {
  width: min(100%, 420px);
  margin: 26px auto 22px;
  display: block;
  overflow: visible;
}
.consent-pair text {
  font: 600 11px var(--sans);
  letter-spacing: 0.1em;
  fill: oklch(100% 0 0 / 0.6);
  text-anchor: middle;
}
.consent-pair .cp-circle {
  fill: none;
  stroke: oklch(100% 0 0 / 0.45);
  stroke-width: 1.5;
  transition:
    stroke 300ms ease,
    fill 300ms ease,
    transform 700ms var(--ease);
}
.consent-pair .cp-a,
.consent-pair .cp-b {
  transition: transform 720ms var(--ease);
}
.consent-pair .cp-check {
  fill: none;
  stroke: var(--teal-on-dark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 360ms var(--ease) 120ms;
}
.consent-pair .cp-link {
  stroke: oklch(100% 0 0 / 0.25);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  transition: opacity 300ms ease;
}
.consent-pair .cp-ember {
  fill: var(--teal-on-dark);
  opacity: 0;
  transform: scale(0.6);
  transform-origin: 200px 80px;
  transition:
    opacity 320ms ease 480ms,
    transform 640ms var(--ease) 480ms;
}
.consent-pair .cp-lock {
  fill: none;
  stroke: oklch(100% 0 0 / 0.5);
  stroke-width: 1.4;
  transition: opacity 240ms ease;
}
.consent-pair.is-a .cp-a .cp-circle {
  stroke: var(--teal-on-dark);
}
.consent-pair.is-a .cp-a .cp-check {
  stroke-dashoffset: 0;
}
.consent-pair.is-b .cp-b .cp-circle {
  stroke: var(--teal-on-dark);
}
.consent-pair.is-b .cp-b .cp-check {
  stroke-dashoffset: 0;
}
.consent-pair.is-b .cp-lock {
  opacity: 0;
}
.consent-pair.is-mutual .cp-a {
  transform: translateX(70px);
}
.consent-pair.is-mutual .cp-b {
  transform: translateX(-70px);
}
.consent-pair.is-mutual .cp-link {
  opacity: 0;
}
.consent-pair.is-mutual .cp-a .cp-check,
.consent-pair.is-mutual .cp-b .cp-check {
  stroke-dashoffset: 60;
  transition-delay: 0ms;
}
.consent-pair.is-mutual .cp-ember {
  opacity: 1;
  transform: none;
}
.consent-pair.is-mutual text.cp-name {
  opacity: 0;
  transition: opacity 300ms ease;
}
.consent-panel > p.consent-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: oklch(100% 0 0 / 0.6);
  font-size: 13px;
  line-height: 1.45;
}
.consent-note i {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  position: relative;
}
.consent-note i::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -6px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.consent-panel > p.mutual-copy {
  margin-top: 8px;
  color: var(--white);
  font: 560 clamp(28px, 7vw, 44px)/1.05 var(--display);
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 400ms ease 900ms,
    transform 500ms var(--ease) 900ms;
}
.consent-panel.is-mutual .mutual-copy {
  opacity: 1;
  transform: none;
}
.human-reveal {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.human-reveal-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--r-md);
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 700ms ease 260ms,
    transform 900ms var(--ease) 260ms;
}
.human-reveal-body {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 480ms ease 560ms,
    transform 560ms var(--ease) 560ms;
}
.human-reveal-body .ui-label {
  color: var(--mid);
}
.human-reveal-body h3 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 6vw, 34px);
  color: var(--black);
}
.consent-panel .human-reveal-body p {
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.55;
}
.human-reveal-body .button {
  margin-top: 18px;
}
.consent-panel > p.human-reveal-caption {
  margin-top: 12px;
  color: oklch(100% 0 0 / 0.5);
  font-size: 12px;
}
.consent-panel.is-revealed .human-reveal-photo,
.consent-panel.is-revealed .human-reveal-body {
  opacity: 1;
  transform: none;
}
.reveal-panel {
  max-width: 760px;
}

/* --- C14 · interest form (offer gate CTA) ------------------------ */
.interest-form {
  width: min(100%, 520px);
  margin: 28px auto 0;
  text-align: left;
}
.interest-form label {
  display: block;
  margin-bottom: 8px;
  color: oklch(100% 0 0 / 0.75);
  font-size: 13px;
  font-weight: 600;
}
.interest-row {
  display: grid;
  gap: 8px;
}
.interest-form input {
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
}
.interest-form input:focus {
  outline: 3px solid oklch(74% 0.085 180 / 0.45);
  outline-offset: 2px;
}
.interest-form .interest-city {
  width: 100%;
  margin-bottom: 14px;
}
.interest-form .interest-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: oklch(100% 0 0 / 0.75);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.interest-form .interest-consent input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--teal-on-dark);
}
.interest-hint,
.interest-error {
  margin-top: 10px;
  color: oklch(100% 0 0 / 0.55);
  font-size: 12px;
  line-height: 1.45;
}
.interest-error {
  color: oklch(82% 0.08 45);
  min-height: 14px;
}
.interest-success {
  width: min(100%, 520px);
  margin: 28px auto 0;
  padding: 22px;
  color: var(--white);
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: var(--r-md);
  text-align: left;
}
.interest-success strong {
  display: block;
  font: 560 20px/1.2 var(--display);
}
.interest-success p {
  margin-top: 8px;
  color: oklch(100% 0 0 / 0.7);
  font-size: 14px;
  line-height: 1.5;
}
.interest-closed {
  width: min(100%, 520px);
  margin: 28px auto 0;
  display: grid;
  justify-items: center;
  gap: 16px;
}
.interest-closed p {
  color: oklch(100% 0 0 / 0.72);
  font-size: 14px;
  line-height: 1.55;
}

@media (min-width: 700px) {
  .interest-row {
    grid-template-columns: 1fr auto;
  }
  .human-reveal {
    grid-template-columns: 220px 1fr;
    padding: 22px;
  }
  .human-reveal-photo {
    max-height: none;
  }
}
@media (min-width: 920px) {
  .context-fragments {
    inset: -28px -40px;
  }
}
@media (max-width: 699px) {
  .context-fragment {
    font-size: 11px;
    padding: 7px 10px;
  }
  .context-fragments {
    inset: -6px 0;
  }
  .difference-legend {
    grid-template-columns: 1fr;
  }
  .difference-legend div:last-child {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  .collapse-stage .context-fragments,
  .collapse-stage .collapse-lines {
    display: none;
  }
  .js .collapse-stage .offer-demo {
    opacity: 1;
    transform: none;
  }
  .difference-svg .d-path {
    stroke-dashoffset: 0;
  }
  .difference-svg .d-zone,
  .difference-svg .d-zone-label,
  .difference-svg .d-marker,
  .difference-caption {
    opacity: 1;
    transform: none;
  }
  .difference-svg .d-ring {
    opacity: 0.55;
    transform: none;
  }
  .consent-pair .cp-a,
  .consent-pair .cp-b,
  .consent-pair .cp-check,
  .consent-pair .cp-ember,
  .human-reveal-photo,
  .human-reveal-body,
  .mutual-copy {
    transition: none;
  }
}

.site-footer .footer-note,
.site-footer .footer-links a,
.site-footer .footer-links button {
  color: oklch(100% 0 0 / 0.62);
}

/* ================================================================
   WAVE 2–4 · explanation / product / conversion scenes
   ================================================================ */
/* --- C2 · Connect ------------------------------------------------- */
.chat-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.chat-frame-bar {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font: 600 12px/1.2 var(--sans);
  color: var(--graphite);
}
.connect-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mid);
  font: 600 10px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 300ms ease;
}
.connect-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition:
    background 300ms ease,
    box-shadow 300ms ease;
}
.connect-demo.is-connecting .connect-indicator i {
  background: var(--mid);
}
.connect-demo.is-connected .connect-indicator {
  color: var(--teal);
}
.connect-demo.is-connected .connect-indicator i {
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.chat-bubbles {
  padding: 18px 16px 8px;
  display: grid;
  gap: 10px;
}
.chat-bubbles p {
  max-width: 86%;
  padding: 11px 14px;
  background: var(--wash);
  border-radius: 16px 16px 16px 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.chat-input {
  margin: 8px 16px 16px;
  padding: 12px 14px;
  color: var(--mid);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}
.connect-action {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.connect-status {
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.45;
  min-height: 18px;
  transition: color 300ms ease;
}
.connect-demo.is-connected .connect-status {
  color: var(--teal-dark);
  font-weight: 600;
}
.connect-demo.is-connected [data-connect-button] {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--teal-soft);
  pointer-events: none;
}

/* --- C3 · Permissions + timeline --------------------------------- */
.permissions,
.context-timeline {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.perm-group {
  border-top: 1px solid var(--line);
}
.perm-group:first-of-type {
  margin-top: 14px;
}
.perm-head {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font: 600 15px/1.2 var(--display);
  cursor: pointer;
  text-align: left;
}
.perm-head i {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--mid);
  border-bottom: 1.5px solid var(--mid);
  transform: rotate(45deg);
  transition: transform 220ms var(--ease);
}
.perm-group.is-open .perm-head i {
  transform: rotate(-135deg);
}
.perm-body {
  padding: 0 0 16px;
  animation: state-in 260ms var(--ease) both;
}
.perm-body ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.6;
}
.perm-allow {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--graphite);
  font: 600 13px/1 var(--sans);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}
.perm-allow.is-on {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--pure);
}
.perm-allow.is-on::before {
  content: "✓ ";
}
.perm-note {
  margin-top: 14px;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.45;
}
.timeline-tabs {
  display: flex;
  gap: 4px;
}
.timeline-tab {
  flex: 1;
  min-height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--mid);
  font: 600 12px/1.2 var(--sans);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition:
    color 200ms ease,
    background 200ms ease;
}
.timeline-tab:hover {
  background: var(--wash);
}
.timeline-tab.is-active {
  color: var(--ink);
}
.timeline-track {
  position: relative;
  height: 2px;
  margin: 6px 0 22px;
  background: var(--line);
  border-radius: 2px;
}
.timeline-marker {
  position: absolute;
  top: -5px;
  left: calc(var(--pos, 2) * 33.333% + 16.666%);
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
  transition: left 420ms var(--ease);
}
.timeline-statement {
  margin: 10px 0 0;
  font: 560 clamp(20px, 3.2vw, 26px)/1.25 var(--display);
  letter-spacing: -0.02em;
  color: var(--ink);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease);
}
.timeline-statement.is-switching {
  opacity: 0;
  transform: translateY(6px);
}
.timeline-note {
  margin-top: 16px;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.45;
}

/* --- C4 · No search ------------------------------------------------ */
.search-stage {
  position: relative;
  margin-top: 40px;
}
.search-shell {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  transition:
    opacity 600ms ease,
    transform 700ms var(--ease);
}
.search-box {
  min-height: 60px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--mid);
  font-size: 17px;
  text-align: left;
}
.search-icon {
  width: 16px;
  height: 16px;
  border: 2px solid var(--mid);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 7px;
  height: 2px;
  background: var(--mid);
  transform: rotate(45deg);
}
.search-caret {
  width: 1px;
  height: 20px;
  background: var(--ink);
  animation: caret 1s steps(1) infinite;
}
@keyframes caret {
  50% {
    opacity: 0;
  }
}
.search-hint {
  margin-top: 18px;
  color: var(--graphite);
  font: 560 20px/1.2 var(--display);
  opacity: 0;
  transition: opacity 400ms ease 500ms;
}
.offer-list {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.offer-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 420ms ease,
    transform 520ms var(--ease);
}
.offer-list li:nth-child(2) {
  transition-delay: 120ms;
}
.offer-list li:nth-child(3) {
  transition-delay: 240ms;
}
.offer-list span {
  color: var(--mid);
  font: 600 11px/1 var(--sans);
}
.offer-list strong {
  font: 600 clamp(15px, 2vw, 18px)/1.3 var(--display);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.offer-list em {
  color: var(--teal);
  font: 600 10px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  white-space: nowrap;
}
.offer-list-note {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--mid);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transition: opacity 400ms ease 500ms;
}
.search-stage.is-step-1 .search-hint {
  opacity: 1;
}
.search-stage.is-step-1 .search-caret {
  animation: none;
  opacity: 0;
}
.search-stage.is-step-2 .search-shell {
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
}
.search-stage.is-step-2 .offer-list li,
.search-stage.is-step-2 .offer-list-note {
  opacity: 1;
  transform: none;
}
.search-stage.is-done .search-shell {
  position: absolute;
  inset: 0 0 auto;
  pointer-events: none;
}
.no-js .offer-list li,
.no-js .offer-list-note {
  opacity: 1;
  transform: none;
}

/* --- C5 · Profile Dissolve ---------------------------------------- */
.dissolve-stage {
  position: relative;
}
.dissolve-stage .old-profile {
  background: var(--white);
  transition:
    opacity 500ms ease,
    transform 600ms var(--ease);
}
.dissolve-tags span {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  font-size: 12px;
  transition: opacity 400ms ease;
}
.dissolve-occupation,
.dissolve-age,
.profile-placeholder {
  transition: opacity 400ms ease;
}
.dissolve-question {
  opacity: 0;
  transition: opacity 400ms ease;
}
.dissolve-offer {
  position: absolute;
  inset: 0 0 auto;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 500ms ease,
    transform 600ms var(--ease);
}
.dissolve-stage.is-step-1 .dissolve-tags span {
  opacity: 0.15;
}
.dissolve-stage.is-step-2 .dissolve-occupation,
.dissolve-stage.is-step-2 .dissolve-age {
  opacity: 0.15;
}
.dissolve-stage.is-step-2 .profile-placeholder {
  opacity: 0.35;
}
.dissolve-stage.is-step-3 .dissolve-question {
  opacity: 1;
}
.dissolve-stage.is-step-4 .old-profile {
  opacity: 0;
  transform: scale(0.97);
}
.dissolve-stage.is-step-4 .dissolve-offer {
  opacity: 1;
  transform: none;
}
.dissolve-stage.is-done .old-profile {
  visibility: hidden;
}
.dissolve-stage.is-done .dissolve-offer {
  position: static;
}
.offer-compact h3 {
  margin: 0;
  padding: 20px 20px 16px;
  font-size: clamp(22px, 3vw, 28px);
}
.offer-compact .offer-reason {
  margin: 0 20px 20px;
}
.no-js .dissolve-offer {
  position: static;
  opacity: 1;
  transform: none;
}
.no-js .dissolve-stage .old-profile {
  display: none;
}

/* --- C7 · Complexity → Clarity ------------------------------------- */
.clarity-stage {
  position: relative;
  min-height: 420px;
}
.clarity-nodes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.clarity-nodes span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding: 6px 10px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 500 12px/1.2 var(--sans);
  white-space: nowrap;
  will-change: transform, opacity;
  transition:
    left 800ms var(--ease),
    top 800ms var(--ease),
    opacity 500ms ease,
    transform 800ms var(--ease),
    border-color 400ms ease;
}
.clarity-stage.is-step-1 .clarity-nodes span {
  left: var(--cx);
  top: var(--cy);
  border-color: var(--teal);
}
.clarity-stage.is-step-2 .clarity-nodes span {
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: scale(0.6);
}
.clarity-card {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  margin: 0 auto;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition:
    opacity 500ms ease,
    transform 600ms var(--ease);
}
.clarity-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(22px, 3vw, 28px);
}
.clarity-card p {
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.5;
}
.clarity-stage.is-step-2 .clarity-card {
  opacity: 1;
  transform: none;
}
.clarity-stage.is-done .clarity-nodes {
  display: none;
}
.clarity-stage {
  display: grid;
  align-content: center;
}
.clarity-caption {
  margin-top: 18px;
  text-align: center;
  color: var(--graphite);
  font: 560 clamp(17px, 2.4vw, 20px)/1.3 var(--display);
  opacity: 0;
  transition: opacity 400ms ease 300ms;
}
.clarity-stage.is-step-2 .clarity-caption {
  opacity: 1;
}
.no-js .clarity-nodes {
  display: none;
}
.no-js .clarity-card,
.no-js .clarity-caption {
  opacity: 1;
  transform: none;
}

/* --- C10 · Learning ---------------------------------------------- */
.learning {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.learning-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.learning-toggle {
  display: inline-flex;
  padding: 3px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.learning-toggle button {
  min-height: 38px;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  font: 600 13px/1 var(--sans);
  cursor: pointer;
  transition:
    background 200ms ease,
    color 200ms ease;
}
.learning-toggle button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.learning-title {
  max-width: 760px;
  margin: 22px 0 0;
  font: 560 clamp(24px, 4vw, 38px)/1.12 var(--display);
  letter-spacing: -0.025em;
  color: var(--ink);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease);
}
.learning-title.is-switching {
  opacity: 0;
  transform: translateY(6px);
}
.learning-title.is-after {
  color: var(--teal-dark);
}
.learning-note {
  max-width: 620px;
  margin-top: 14px;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.55;
}

/* --- C12 · Situations --------------------------------------------- */
.situations-gallery {
  margin-top: 40px;
}
.situation-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.situation-tabs button {
  min-width: 44px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--mid);
  font: 600 12px/1 var(--sans);
  cursor: pointer;
}
.situation-tabs button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.situation-frame {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.situation-media {
  min-height: 200px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--wash), var(--soft));
  color: var(--mid);
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.situation-body {
  padding: 24px;
}
.situation-body blockquote {
  margin: 12px 0 0;
  font: 560 clamp(19px, 2.6vw, 24px)/1.3 var(--display);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease);
}
.situation-body blockquote.is-switching,
.situation-body .ui-label.is-switching {
  opacity: 0;
  transform: translateY(6px);
}
.situation-note {
  margin-top: 12px;
  color: var(--mid);
  font-size: 12px;
}

/* --- C13 · Curiosity preview ----------------------------------------- */
.curiosity-preview {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--teal-soft);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-md);
  animation: state-in 320ms var(--ease) both;
}
.curiosity-preview p {
  margin: 8px 0 10px;
  font: 560 clamp(19px, 2.6vw, 24px)/1.25 var(--display);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.curiosity-preview small {
  color: var(--mid);
  font-size: 12px;
  line-height: 1.4;
}
.curiosity-examples {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--mid);
  font-size: 12px;
}
.curiosity-examples button {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--graphite);
  font: 500 12px/1 var(--sans);
  cursor: pointer;
}
.curiosity-examples button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

@media (min-width: 700px) {
  .context-compare {
    grid-template-columns: 1fr 1fr;
  }
  .situation-frame {
    grid-template-columns: 240px 1fr;
  }
  .situation-media {
    min-height: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .search-stage .search-shell,
  .clarity-nodes,
  .dissolve-stage .old-profile {
    display: none;
  }
  .offer-list li,
  .offer-list-note,
  .clarity-card,
  .clarity-caption,
  .dissolve-offer {
    opacity: 1;
    transform: none;
    position: static;
  }
  .search-caret {
    animation: none;
  }
}

/* ================================================================
   LIFE ARC · after the call the interface recedes (contract 74 v1.1)
   ================================================================ */
.life-intro-inner h2 {
  max-width: 980px;
}
.life-intro-inner h2 span {
  display: block;
  color: var(--teal-dark);
}
.life-note {
  margin-top: 22px;
  color: var(--mid);
  font-size: 13px;
  line-height: 1.5;
}
.face {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* 16 · echo */
.echo-line {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.echo-line li {
  padding: 22px 0;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.echo-line span {
  color: var(--teal-dark);
  font: 600 11px/1.2 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.echo-line p {
  font: 500 clamp(16px, 2vw, 19px)/1.45 var(--sans);
  color: var(--ink);
  max-width: 720px;
}
.echo-line em {
  font-style: normal;
  background: var(--teal-soft);
  padding: 1px 6px;
  border-radius: 6px;
}

/* 17 · trajectory */
.trajectory-scene {
  padding: 22px 18px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.trajectory-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.trajectory-svg .t-label {
  font: 600 14px var(--sans);
  letter-spacing: 0.06em;
  fill: var(--graphite);
}
.trajectory-svg .t-label-muted {
  fill: var(--mid);
}
.trajectory-svg .t-without {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}
.trajectory-svg .t-with {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1600ms var(--ease) 300ms;
}
.trajectory-svg .t-point {
  fill: var(--clay);
  opacity: 0;
  transition: opacity 300ms ease 200ms;
}
.trajectory-svg .t-end {
  fill: var(--teal);
  opacity: 0;
  transition: opacity 300ms ease 1700ms;
}
.trajectory-scene.is-drawn .t-with {
  stroke-dashoffset: 0;
}
.trajectory-scene.is-drawn .t-point,
.trajectory-scene.is-drawn .t-end {
  opacity: 1;
}

/* 18 · relational wealth */
.wealth-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.5;
}
.wealth-list li::before {
  content: "— ";
  color: var(--teal);
}
.wealth-scene {
  margin: 0;
}
.wealth-stage {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.wealth-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--line) 2px, transparent 2.5px);
  background-size: 34px 34px;
  background-position: 9px 9px;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, black 55%, transparent 72%);
  mask-image: radial-gradient(circle, black 55%, transparent 72%);
  transition: opacity 900ms ease;
}
.wealth-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wealth-links line {
  stroke: var(--teal);
  stroke-width: 1.5;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 900ms var(--ease);
}
.wealth-links line:nth-child(n + 6) {
  stroke: var(--line);
  transition-delay: 600ms;
}
.wealth-you {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--pure);
  border-radius: 50%;
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 0 6px var(--teal-soft);
}
.wealth-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 52px;
  height: 52px;
  margin: -26px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 400ms ease,
    transform 600ms var(--ease);
}
.wealth-node:nth-of-type(2) {
  transition-delay: 100ms;
}
.wealth-node:nth-of-type(3) {
  transition-delay: 200ms;
}
.wealth-node:nth-of-type(4) {
  transition-delay: 300ms;
}
.wealth-node:nth-of-type(5) {
  transition-delay: 400ms;
}
.wealth-scene.is-dense .wealth-dots {
  opacity: 0.25;
}
.wealth-scene.is-dense .wealth-links line {
  stroke-dashoffset: 0;
}
.wealth-scene.is-dense .wealth-node {
  opacity: 1;
  transform: none;
}
.wealth-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--mid);
  font-size: 13px;
}

/* 19 · someone to call */
.someone-grid {
  margin-top: 36px;
  display: grid;
  gap: 10px;
}
.someone-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  align-content: start;
}
.someone-event {
  font: 560 clamp(18px, 2.4vw, 22px)/1.3 var(--display);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.someone-faces {
  display: flex;
}
.someone-faces .face {
  width: 44px;
  height: 44px;
  margin-right: -10px;
  border: 2px solid var(--white);
}
.someone-note {
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.5;
}
.before-after {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.before-after > div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
}
.before-after > div:last-child {
  border-color: var(--teal-soft);
  background: var(--teal-soft);
}
.before-after p {
  margin-top: 8px;
  font: 500 15px/1.5 var(--sans);
  color: var(--ink);
}

/* 20 · stranger → part of life */
.stranger-steps {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.stranger-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px 14px;
  align-items: center;
}
.stranger-steps strong {
  font: 560 clamp(16px, 2vw, 19px)/1.3 var(--display);
  color: var(--ink);
}
.stranger-steps span {
  grid-column: 2;
  color: var(--mid);
  font-size: 12px;
}
.st-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px dashed var(--mid);
}
.st-1 {
  border-style: solid;
}
.st-2 {
  border-style: solid;
  background: var(--teal-soft);
  border-color: var(--teal);
}
.st-3 {
  border: 0;
  background: var(--teal);
}
.less-random {
  margin-top: 40px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.less-random p {
  max-width: 760px;
  font: 500 clamp(18px, 2.4vw, 24px)/1.35 var(--display);
  letter-spacing: -0.015em;
  color: var(--graphite);
}
.less-random strong {
  color: var(--ink);
  font-weight: 600;
}

/* final · remember */
.remember {
  width: min(100%, 640px);
  margin: 0 auto 28px;
  padding: 20px 22px;
  text-align: left;
  background: oklch(100% 0 0 / 0.06);
  border: 1px solid oklch(100% 0 0 / 0.16);
  border-radius: var(--r-md);
}
.remember-question {
  margin-top: 8px;
  color: oklch(100% 0 0 / 0.7);
  font-size: 15px;
  line-height: 1.5;
}
.remember-title {
  margin-top: 10px;
  color: var(--white);
  font: 560 clamp(20px, 3vw, 26px)/1.25 var(--display);
  letter-spacing: -0.02em;
}

@media (min-width: 700px) {
  .someone-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .before-after {
    grid-template-columns: 1fr 1fr;
  }
  .stranger-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .stranger-steps li {
    grid-template-columns: 1fr;
  }
  .stranger-steps span {
    grid-column: 1;
  }
  .echo-line {
    grid-template-columns: repeat(4, 1fr);
    border-top: 0;
  }
  .echo-line li {
    padding: 0 18px 0 0;
    border-bottom: 0;
    border-top: 2px solid var(--line);
    padding-top: 16px;
  }
  .echo-line p {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .trajectory-svg .t-with {
    stroke-dashoffset: 0;
  }
  .trajectory-svg .t-point,
  .trajectory-svg .t-end {
    opacity: 1;
  }
  .wealth-scene .wealth-links line {
    stroke-dashoffset: 0;
  }
  .wealth-scene .wealth-node {
    opacity: 1;
    transform: none;
  }
  .wealth-scene .wealth-dots {
    opacity: 0.25;
  }
}
