:root {
  --ink: #0a0a09;
  --ink-soft: #121210;
  --graphite: #1b1a17;
  --charcoal: #2a2823;
  --gold: #c39a54;
  --gold-bright: #d9b975;
  --gold-dark: #8e6b32;
  --ivory: #f4f0e7;
  --paper: #fbfaf7;
  --stone: #d8d2c7;
  --muted: #9f998e;
  --green: #77b598;
  --green-deep: #315f4e;
  --red: #a86155;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(10, 10, 9, 0.14);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --shell: 1200px;
  --gutter: 28px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open { overflow: hidden; }

body.dialog-open { overflow: hidden; }
button, input, select { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(var(--shell), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 160;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--gold-bright); }

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px var(--gutter);
  background: var(--ink);
  color: #d8d3ca;
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(119,181,152,.12); }

.site-header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 80;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(var(--gutter), calc((100vw - var(--shell)) / 2));
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  min-height: 66px;
  color: var(--ink);
  background: rgba(251,250,247,.95);
  border-color: var(--line-light);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(10,10,9,.08);
}

.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 176px; }
.brand img { width: 28px; height: 32px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 16px; font-weight: 700; }
.brand small { margin-top: 5px; font-size: 8px; font-weight: 700; color: var(--gold-bright); }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.desktop-nav a { position: relative; padding: 25px 0; font-size: 12px; font-weight: 600; color: inherit; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 1px; background: var(--gold); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-bright); border-color: var(--gold-bright); }
.button svg { width: 16px; height: 16px; }
.button-small { min-height: 38px; padding-inline: 15px; font-size: 11px; }
.button-dark { background: var(--ink); color: white; border-color: var(--ink); }
.button-dark:hover { background: var(--graphite); border-color: var(--graphite); }

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: inherit;
}
.icon-button svg { width: 19px; height: 19px; }
.icon-button.light { color: var(--ink); border-color: var(--line-light); }
.menu-toggle { display: none; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  max-height: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-founders-wide-balanced-v2.webp");
  background-color: #11110f;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04) translateY(var(--hero-shift, 0px));
  filter: saturate(.78) contrast(1.04);
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,7,.1) 0%, rgba(8,8,7,.18) 20%, rgba(8,8,7,.38) 59%, rgba(8,8,7,.72) 100%), linear-gradient(90deg, rgba(8,8,7,.34), rgba(8,8,7,.12) 50%, rgba(8,8,7,.34));
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}
.hero-telemetry {
  position: absolute;
  bottom: 108px;
  left: 50%;
  z-index: 2;
  width: 340px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,10,9,.58);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
  display: none;
}
.telemetry-top, .telemetry-metrics { display: flex; align-items: center; justify-content: space-between; }
.telemetry-top { color: #d8d3ca; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.telemetry-top b { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 7px; }
.telemetry-top i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: livePulse 1.8s ease-in-out infinite; }
.hero-telemetry svg { width: 100%; height: 90px; margin: 8px 0; overflow: visible; }
.telemetry-gridline { fill: none; stroke: rgba(255,255,255,.11); stroke-width: 1; }
.telemetry-line { fill: none; stroke: var(--gold-bright); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 8 7; animation: telemetryDash 7s linear infinite; }
.telemetry-runner { fill: var(--gold-bright); filter: drop-shadow(0 0 5px rgba(219,182,112,.8)); }
.telemetry-metrics { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.13); }
.telemetry-metrics span { display: flex; flex-direction: column; gap: 3px; color: #908b82; font-size: 7px; text-transform: uppercase; }
.telemetry-metrics b { color: white; font-size: 11px; }
@keyframes telemetryDash { to { stroke-dashoffset: -120; } }
@keyframes livePulse { 50% { opacity: .35; box-shadow: 0 0 0 5px rgba(119,181,152,.12); } }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(90px, 12vw, 340px);
  padding-bottom: 0;
  text-align: center;
}
.eyebrow { margin: 0 0 16px; color: var(--gold-bright); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.eyebrow.dark { color: var(--gold-dark); }
.hero h1 { margin: 0; max-width: 920px; font-family: var(--display); font-size: clamp(40px, 4.3vw, 130px); font-weight: 600; line-height: .92; }
.hero-statement { margin: 18px 0 0; font-family: var(--display); font-size: clamp(20px, 2.1vw, 64px); line-height: 1.1; }
.hero-statement em { color: var(--gold-bright); font-weight: 500; }
.hero-copy { max-width: 760px; margin: 20px 0 0; color: #d3cec4; font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 24px; }
.text-link, .text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
}
.text-link svg, .text-button svg { width: 15px; height: 15px; }
.hero-proof {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  gap: 12px;
  padding-bottom: 22px;
}
.hero-proof div {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  background: rgba(18,18,15,.62);
  color: #ece8df;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.hero-proof div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 32%;
  height: 1px;
  background: rgba(219,182,112,.78);
  box-shadow: 0 0 12px rgba(219,182,112,.4);
}
.hero-proof div:hover { border-color: rgba(219,182,112,.55); background: rgba(29,27,22,.78); transform: translateY(-3px); }
.hero-proof svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(219,182,112,.42);
  border-radius: 50%;
  background: rgba(195,154,84,.11);
  color: var(--gold-bright);
}
.hero-proof span { min-width: 0; line-height: 1.35; }

/* One fluid centered hero governs every desktop width/zoom (down to 820px).
   The photo is width-anchored (background-size:100% auto) and the text
   position/size scale with viewport width, so the composition is identical
   at every zoom level. Narrow phones are handled by the <=820px block below. */

.section-dark { background: var(--ink); color: white; }
.section-ink { background: var(--ink-soft); color: white; }
.section-light { background: var(--paper); color: var(--charcoal); }
.section-warm { background: var(--ivory); color: var(--charcoal); }

.recognition { padding: 112px 0; }
.recognition-layout { display: grid; grid-template-columns: 150px minmax(0, 1fr) 270px; gap: 46px; align-items: start; }
.section-index { color: var(--gold); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.section-index.dark { color: var(--gold-dark); }
.display-heading { margin: 0; font-family: var(--display); font-size: 56px; line-height: 1.02; font-weight: 500; }
.recognition-lead { max-width: 760px; margin: 28px 0 0; color: var(--gold-bright); font-family: var(--display); font-size: 27px; line-height: 1.22; }
.recognition-copy { max-width: 720px; margin: 22px 0 0; color: #b8b3aa; font-size: 15px; }
.recognition-signals { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; align-content: start; padding-top: 2px; }
.recognition-wave { grid-column: 1 / -1; width: 100%; height: 58px; margin-bottom: 8px; overflow: visible; }
.recognition-wave path { fill: none; stroke: rgba(219,182,112,.58); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 5 7; animation: telemetryDash 10s linear infinite; }
.recognition-wave circle { fill: var(--gold-bright); filter: drop-shadow(0 0 5px rgba(219,182,112,.75)); }
.recognition-signals span { position: relative; padding-left: 17px; color: #a7a198; font-size: 10px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; animation: recognitionSignal 9s ease-in-out infinite; }
.recognition-signals span::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border: 1px solid var(--gold); border-radius: 50%; transform: translateY(-50%); animation: signalNode 9s ease-in-out infinite; }
.recognition-signals span:nth-of-type(2), .recognition-signals span:nth-of-type(2)::before { animation-delay: 1.5s; }
.recognition-signals span:nth-of-type(3), .recognition-signals span:nth-of-type(3)::before { animation-delay: 3s; }
.recognition-signals span:nth-of-type(4), .recognition-signals span:nth-of-type(4)::before { animation-delay: 4.5s; }
.recognition-signals span:nth-of-type(5), .recognition-signals span:nth-of-type(5)::before { animation-delay: 6s; }
.recognition-signals span:nth-of-type(6), .recognition-signals span:nth-of-type(6)::before { animation-delay: 7.5s; }
@keyframes recognitionSignal { 0%, 13%, 100% { color: #a7a198; } 5%, 9% { color: var(--gold-bright); } }
@keyframes signalNode { 0%, 13%, 100% { background: transparent; box-shadow: none; } 5%, 9% { background: var(--gold-bright); box-shadow: 0 0 0 5px rgba(219,182,112,.11), 0 0 14px rgba(219,182,112,.5); } }

.approach, .outcomes, .care-journey, .faq { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 70px; align-items: end; margin-bottom: 60px; }
.section-heading h2 { max-width: 720px; margin: 0; color: var(--ink); font-family: var(--display); font-size: 52px; font-weight: 600; line-height: 1; }
.section-heading > p { margin: 0 0 4px; color: #6f6a61; font-size: 14px; }
.section-heading.light h2 { color: white; }
.section-heading.light > p { color: #b8b3aa; }

.care-cycle { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.care-cycle::before { content: ""; position: absolute; top: 0; left: 0; height: 1px; width: var(--cycle-progress, 0%); background: var(--gold); transition: width 1.2s ease; }
.care-cycle::after { content: ""; position: absolute; top: -4px; left: 0; width: 9px; height: 9px; border: 2px solid var(--paper); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(195,154,84,.13); opacity: 0; }
.care-cycle.is-flowing::after { opacity: 1; animation: careFlow 7.5s ease-in-out infinite; }
.care-cycle li { position: relative; min-height: 220px; display: flex; flex-direction: column; padding: 25px 22px 24px; }
.care-cycle li { transition: background .3s ease, transform .3s ease; }
.care-cycle li:hover { background: #f1eee7; transform: translateY(-4px); }
.care-cycle li + li { border-left: 1px solid var(--line-light); }
.care-cycle li > span { color: var(--gold-dark); font-size: 10px; font-weight: 800; }
.care-cycle svg { width: 31px; height: 31px; margin: 34px 0 25px; color: var(--gold-dark); stroke-width: 1.4; }
.care-cycle strong { color: var(--ink); font-family: var(--display); font-size: 24px; line-height: 1; }
.care-cycle small { margin-top: 9px; color: #817b71; font-size: 11px; }
.care-cycle.is-flowing li svg { animation: careIconPulse 7.5s ease-in-out infinite; }
.care-cycle.is-flowing li:nth-child(2) svg { animation-delay: 1.5s; }
.care-cycle.is-flowing li:nth-child(3) svg { animation-delay: 3s; }
.care-cycle.is-flowing li:nth-child(4) svg { animation-delay: 4.5s; }
.care-cycle.is-flowing li:nth-child(5) svg { animation-delay: 6s; }
@keyframes careFlow { 0% { left: 0; } 50%, 100% { left: calc(100% - 9px); } }
@keyframes careIconPulse { 0%, 16%, 100% { transform: scale(1); opacity: .72; } 7% { transform: scale(1.13); opacity: 1; } }

.experience { padding: 112px 0; overflow: hidden; }
.experience-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 72px; align-items: center; }
.experience-copy > p:not(.eyebrow) { max-width: 530px; color: #bcb7ae; font-size: 14px; }
.experience-copy h2 { max-width: 560px; }
.experience-points { margin-top: 42px; border-top: 1px solid var(--line-dark); }
.experience-points > div { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); }
.experience-points svg { width: 21px; color: var(--gold); }
.experience-points span { display: flex; flex-direction: column; }
.experience-points strong { font-size: 13px; }
.experience-points small { margin-top: 4px; color: #99948b; font-size: 11px; }

.console-scene { position: relative; width: 100%; max-width: 720px; justify-self: end; }
.console-inputs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.console-inputs span { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.18); background: #171714; color: #c9c4ba; font-size: 7px; font-weight: 800; text-transform: uppercase; animation: inputSignal 6s ease-in-out infinite; }
.console-inputs span:nth-child(2) { animation-delay: 1.2s; }
.console-inputs span:nth-child(3) { animation-delay: 2.4s; }
.console-inputs span:nth-child(4) { animation-delay: 3.6s; }
.console-inputs span:nth-child(5) { animation-delay: 4.8s; }
.console-inputs svg { width: 13px; height: 13px; color: var(--gold); }
.console-connections { width: 100%; height: 78px; display: block; overflow: visible; }
.console-connections path { fill: none; stroke: rgba(195,154,84,.32); stroke-width: 1.2; stroke-dasharray: 3 5; }
.console-connections circle { fill: var(--gold-bright); filter: drop-shadow(0 0 4px rgba(219,182,112,.7)); }
.health-console { width: 100%; padding: 17px; border: 1px solid #3a3731; border-radius: 8px; background: #f4f2ec; color: var(--ink); box-shadow: 0 34px 80px rgba(0,0,0,.38); }
@keyframes inputSignal { 0%, 16%, 100% { border-color: rgba(255,255,255,.18); color: #c9c4ba; } 8% { border-color: var(--gold); color: white; } }
.console-topbar { display: flex; justify-content: space-between; align-items: center; padding: 2px 4px 14px; border-bottom: 1px solid #d8d2c7; }
.console-brand { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.console-brand img { width: 18px; height: 21px; object-fit: contain; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 4px 7px; border: 1px solid #cbd8cf; color: var(--green-deep); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.live-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.console-scene.is-visible .live-badge span { animation: livePulse 1.8s ease-in-out infinite; }
.console-greeting { display: flex; align-items: center; justify-content: space-between; padding: 23px 5px 17px; }
.console-greeting > div { display: flex; flex-direction: column; }
.console-greeting small { color: #777168; font-size: 9px; }
.console-greeting strong { margin-top: 4px; font-family: var(--display); font-size: 24px; }
.score-ring { width: 78px; height: 78px; display: grid; place-items: center; align-content: center; border: 6px solid #d7d1c6; border-top-color: var(--gold); border-right-color: var(--gold); border-radius: 50%; transform: rotate(12deg); }
.score-ring b, .score-ring small { transform: rotate(-12deg); }
.score-ring b { font-size: 18px; line-height: 1; }
.score-ring small { margin-top: 3px; color: #7d776e; font-size: 7px; }
.console-chart { padding: 16px; border: 1px solid #ded9cf; border-radius: 5px; background: white; }
.chart-head { display: flex; justify-content: space-between; font-size: 9px; font-weight: 700; }
.chart-head strong { color: var(--green-deep); }
.console-chart svg { width: 100%; height: 150px; margin-top: 9px; overflow: visible; }
.chart-gridline { fill: none; stroke: #e8e4dc; stroke-width: 1; }
.chart-area { fill: url(#area); opacity: 0; }
.chart-line { fill: none; stroke: var(--gold-dark); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 900; }
.console-chart circle { fill: var(--gold-dark); opacity: 0; transform-box: fill-box; transform-origin: center; }
.console-scene.is-visible .chart-area { animation: chartAreaIn 1.2s 1s ease forwards; }
.console-scene.is-visible .chart-line { animation: chartDraw 2s .35s ease forwards; }
.console-scene.is-visible .console-chart circle { animation: chartPoint 1.4s 2.1s ease-in-out infinite; }
@keyframes chartDraw { to { stroke-dashoffset: 0; } }
@keyframes chartAreaIn { to { opacity: 1; } }
@keyframes chartPoint { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(1.65); } }
.chart-labels { display: flex; justify-content: space-between; color: #8b857c; font-size: 7px; }
.console-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 9px; }
.console-metrics > div { display: grid; grid-template-columns: 28px 1fr; gap: 8px; padding: 12px; border: 1px solid #ded9cf; border-radius: 5px; background: white; }
.console-metrics svg { width: 18px; height: 18px; color: var(--gold-dark); }
.console-metrics span { display: flex; flex-direction: column; }
.console-metrics span > :first-child { color: #79736a; font-size: 7px; }
.console-metrics strong { font-size: 14px; }
.console-metrics small { color: var(--green-deep); font-size: 7px; }
.console-actions { margin-top: 9px; border: 1px solid #ded9cf; border-radius: 5px; background: white; }
.console-actions > div { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 9px; padding: 10px 12px; }
.console-actions > div + div { border-top: 1px solid #e5e1d9; }
.action-icon { width: 28px; height: 28px; display: grid; place-items: center; background: #f0ebe1; color: var(--gold-dark); }
.action-icon svg { width: 14px; }
.console-actions > div > span:nth-child(2) { display: flex; flex-direction: column; }
.console-actions strong { font-size: 8px; }
.console-actions small { color: #837d73; font-size: 7px; }
.console-actions button { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #d9d3c8; border-radius: 50%; background: transparent; color: var(--green-deep); }
.console-actions button svg { width: 13px; }
.tag { padding: 3px 6px; border: 1px solid #d9d3c8; color: #6d675e; font-size: 7px; font-weight: 700; text-transform: uppercase; }

.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.outcome { position: relative; min-height: 330px; padding: 24px; overflow: hidden; transition: background .3s ease, transform .3s ease; }
.outcome:hover { background: #f0ede5; transform: translateY(-6px); }
.outcome + .outcome { border-left: 1px solid var(--line-light); }
.outcome > span { color: var(--gold-dark); font-size: 10px; font-weight: 800; }
.outcome svg { width: 36px; height: 36px; margin: 58px 0 34px; color: var(--gold-dark); stroke-width: 1.3; transition: transform .3s ease; }
.outcome:hover svg { transform: translateY(-7px); }
.outcome h3 { margin: 0; font-family: var(--display); font-size: 26px; line-height: 1; }
.outcome p { margin: 14px 0 0; color: #777168; font-size: 12px; }

.member-stories { padding-top: 92px; overflow: hidden; }
.story-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 70px; align-items: end; padding-bottom: 52px; }
.story-heading h2 { max-width: 780px; margin: 0; font-family: var(--display); font-size: 54px; font-weight: 500; line-height: 1; }
.story-heading > p { max-width: 540px; margin: 0 0 4px; color: #aaa49a; font-size: 13px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; }
.story-panel { position: relative; min-height: 560px; overflow: hidden; isolation: isolate; }
.story-panel + .story-panel { border-left: 1px solid rgba(255,255,255,.18); }
.story-panel::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 32%, rgba(7,7,6,.18) 52%, rgba(7,7,6,.94) 100%); }
.story-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.story-panel:first-child img { object-position: 58% center; }
.story-panel:last-child img { object-position: 42% center; }
.story-panel:hover img { transform: scale(1.025); filter: saturate(1.08); }
.story-copy { position: absolute; left: max(var(--gutter), calc((100vw - var(--shell)) / 2)); right: 54px; bottom: 48px; z-index: 2; }
.story-panel:last-child .story-copy { left: 54px; right: max(var(--gutter), calc((100vw - var(--shell)) / 2)); }
.story-copy span { color: var(--gold-bright); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.story-copy h3 { max-width: 470px; margin: 12px 0 0; font-family: var(--display); font-size: 34px; font-weight: 500; line-height: 1; }
.story-copy p { max-width: 500px; margin: 14px 0 0; color: #c4beb4; font-size: 11px; }

.health-areas { padding: 112px 0; overflow: hidden; }
.health-areas-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.health-area-copy > p:not(.eyebrow) { max-width: 520px; color: #b7b1a8; font-size: 14px; }
.pillar-detail { display: grid; grid-template-columns: 48px 1fr; gap: 18px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.pillar-detail > span { color: var(--gold); font-size: 10px; font-weight: 800; }
.pillar-detail h3 { margin: 0; color: var(--gold-bright); font-family: var(--display); font-size: 25px; }
.pillar-detail p { margin: 8px 0 0; color: #aaa59c; font-size: 12px; }

.pillar-system { position: relative; width: min(600px, 100%); aspect-ratio: 1; justify-self: end; }
.pillar-flow { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.pillar-flow path { fill: none; stroke: rgba(195,154,84,.28); stroke-width: 1.4; stroke-dasharray: 3 8; animation: telemetryDash 18s linear infinite; }
.pillar-flow circle { fill: var(--gold-bright); filter: drop-shadow(0 0 5px rgba(219,182,112,.75)); }
.pillar-rings, .pillar-rings span { position: absolute; inset: 0; z-index: 0; border: 1px solid rgba(195,154,84,.2); border-radius: 50%; }
.pillar-rings span { transform-origin: center; }
.pillar-rings span:nth-child(1) { inset: 12%; border-style: dashed; animation: orbitalSpin 56s linear infinite; }
.pillar-rings span:nth-child(2) { inset: 29%; border-style: dotted; animation: orbitalSpin 38s linear infinite reverse; }
.pillar-rings span:nth-child(3) { inset: 46%; background: rgba(195,154,84,.06); animation: innerPulse 3.6s ease-in-out infinite; }
.pillar-rings::before, .pillar-rings::after { content: ""; position: absolute; background: rgba(195,154,84,.17); }
.pillar-rings::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.pillar-rings::after { top: 50%; left: 0; right: 0; height: 1px; }
.pillar-centre { position: absolute; inset: 37%; z-index: 2; display: grid; place-items: center; align-content: center; gap: 8px; border: 1px solid rgba(195,154,84,.42); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 12px rgba(195,154,84,.04); }
.pillar-centre img { width: 34px; height: 38px; object-fit: contain; }
.pillar-centre span { color: #d6d0c6; font-size: 8px; font-weight: 800; line-height: 1.4; text-align: center; text-transform: uppercase; }
.pillar-node { position: absolute; z-index: 3; width: 188px; min-height: 98px; display: flex; align-items: center; gap: 11px; padding: 12px 13px; border: 1px solid rgba(255,255,255,.19); border-radius: 7px; background: rgba(21,21,18,.92); color: #d8d3ca; text-align: left; backdrop-filter: blur(10px); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.pillar-node:hover, .pillar-node.is-active { border-color: var(--gold); background: #211f1a; transform: translateY(-3px); box-shadow: 0 0 24px rgba(195,154,84,.13); }
.pillar-node svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--gold); stroke-width: 1.5; }
.pillar-node span { min-width: 0; display: flex; flex-direction: column; }
.pillar-node em { margin-bottom: 5px; color: var(--gold-bright); font-size: 7px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.pillar-node strong { color: #eee9df; font-size: 9px; line-height: 1.25; }
.pillar-node small { margin-top: 4px; color: #918b82; font-size: 7px; line-height: 1.35; }
.node-1 { left: 0; top: 8%; }
.node-2 { right: -2%; top: 12%; }
.node-3 { right: -3%; bottom: 12%; }
.node-4 { left: 4%; bottom: 4%; }
.node-5 { left: -8%; top: 43%; }
@keyframes orbitalSpin { to { transform: rotate(360deg); } }
@keyframes innerPulse { 50% { transform: scale(1.08); border-color: rgba(219,182,112,.55); } }

.memberships { padding: 112px 0; }
.membership-selector { display: grid; grid-template-columns: 1fr 1fr; max-width: 760px; margin: 0 auto 28px; padding: 4px; border: 1px solid rgba(10,10,9,.17); background: #e7e1d6; }
.membership-selector button { min-height: 74px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 12px 18px; border: 0; border-radius: 2px; background: transparent; color: #6d675e; text-align: left; }
.membership-selector button.is-active { background: var(--ink); color: white; box-shadow: 0 8px 24px rgba(10,10,9,.16); }
.membership-selector span { font-family: var(--display); font-size: 24px; line-height: 1; }
.membership-selector b { margin-left: 7px; padding: 3px 5px; background: var(--gold); color: var(--ink); font-family: var(--body); font-size: 7px; text-transform: uppercase; vertical-align: middle; }
.membership-selector small { margin-top: 7px; font-size: 9px; }

.membership-stage { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border: 1px solid rgba(10,10,9,.17); border-radius: 7px; background: var(--paper); box-shadow: 0 24px 60px rgba(58,48,34,.10); }
.membership-intro { min-height: 520px; padding: 48px; border-right: 1px solid var(--line-light); }
.plan-kicker { color: var(--gold-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.membership-intro h3 { margin: 8px 0 0; color: var(--ink); font-family: var(--display); font-size: 56px; line-height: 1; }
.membership-intro > p { max-width: 560px; margin: 20px 0 0; color: #6d675f; font-size: 14px; }
.plan-actions { display: flex; align-items: center; gap: 12px; margin-top: 34px; }
.plan-actions .text-button { min-height: 50px; gap: 12px; padding: 0 17px; border: 1px solid #cbc4b8; border-radius: 999px; background: #f1eee7; transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.plan-actions .text-button:hover { border-color: var(--gold-dark); background: white; transform: translateY(-2px); }
.plan-pillar-map { position: relative; padding: 30px 26px; overflow: hidden; background: radial-gradient(circle at 84% 12%, rgba(195,154,84,.11), transparent 30%), #0c0c0a; }
.plan-pillar-map::before { content: ""; position: absolute; inset: 14px; pointer-events: none; border: 1px solid rgba(219,182,112,.13); border-radius: 7px; }
.plan-map-head { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
.plan-map-head span { color: #9d978d; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.plan-map-head strong { display: inline-flex; align-items: center; gap: 8px; color: #eee9df; font-size: 10px; text-transform: uppercase; }
.plan-map-head strong::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(119,181,152,.09), 0 0 12px rgba(119,181,152,.45); animation: livePulse 1.8s ease-in-out infinite; }
.plan-map-rail { position: relative; z-index: 1; display: grid; gap: 8px; margin-top: 16px; }
.plan-map-rail::before { content: ""; position: absolute; top: 24px; bottom: 24px; left: 21px; width: 1px; background: linear-gradient(var(--gold), rgba(195,154,84,.1)); }
.plan-module { position: relative; min-height: 70px; display: grid; grid-template-columns: 28px 36px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 9px 10px 9px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; background: rgba(25,25,21,.76); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); transition: border-color .3s ease, background .3s ease, transform .3s ease; }
.plan-module:hover { border-color: rgba(219,182,112,.48); background: rgba(34,32,26,.9); transform: translateX(4px); }
.plan-module-number { position: relative; z-index: 1; width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(219,182,112,.4); border-radius: 50%; background: #11110f; color: var(--gold-bright); font-size: 9px; font-weight: 800; }
.plan-module > svg { width: 32px; height: 32px; padding: 7px; border: 1px solid rgba(219,182,112,.25); border-radius: 50%; background: rgba(195,154,84,.07); color: var(--gold); }
.plan-module-copy { min-width: 0; display: flex; flex-direction: column; }
.plan-module-copy strong { color: #f3eee5; font-size: 12px; line-height: 1.25; text-transform: uppercase; }
.plan-module-copy small { margin-top: 5px; color: #aaa399; font-size: 10px; line-height: 1.4; }
.plan-module > em { padding: 5px 8px; border: 1px solid rgba(119,181,152,.32); border-radius: 999px; color: #a9d0bd; font-size: 8px; font-style: normal; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.plan-module.is-inactive { border-style: dashed; background: rgba(18,18,16,.46); }
.plan-module.is-inactive .plan-module-copy, .plan-module.is-inactive > svg { opacity: .45; }
.plan-module.is-inactive > em { border-color: rgba(219,182,112,.34); color: var(--gold-bright); opacity: 1; }
.plan-highlights { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px; background: #ece7dd; }
.plan-highlights > div { min-height: 88px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; padding: 12px 19px 12px 11px; border: 1px solid #d8d0c4; border-radius: 999px; background: rgba(255,255,255,.72); box-shadow: inset 0 1px 0 white, 0 8px 22px rgba(74,61,43,.07); }
.plan-highlights > div + div { border-left: 1px solid #d8d0c4; }
.plan-highlights svg { width: 40px; height: 40px; padding: 9px; border: 1px solid rgba(154,115,53,.25); border-radius: 50%; background: rgba(195,154,84,.10); color: var(--gold-dark); }
.plan-highlights span { display: flex; flex-direction: column; }
.plan-highlights strong { color: var(--ink); font-size: 10px; }
.plan-highlights small { margin-top: 4px; color: #756f66; font-size: 8px; line-height: 1.35; }

.service-catalogue { margin-top: 28px; padding: 42px; scroll-margin-top: 124px; overflow: hidden; border: 1px solid rgba(219,182,112,.2); border-radius: 7px; background: radial-gradient(circle at 10% 0, rgba(195,154,84,.1), transparent 24%), #0c0c0a; color: white; box-shadow: 0 28px 70px rgba(22,18,12,.2); opacity: 0; transform: translateY(20px); transition: opacity .35s ease, transform .35s ease; }
.service-catalogue.is-open { opacity: 1; transform: translateY(0); }
.catalogue-heading { display: flex; justify-content: space-between; gap: 30px; }
.catalogue-heading h3 { max-width: 760px; margin: 0; color: white; font-family: var(--display); font-size: 42px; font-weight: 500; line-height: 1.02; }
.catalogue-heading .icon-button { color: white; border-color: rgba(255,255,255,.2); }
.catalogue-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.catalogue-meta span { min-height: 36px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #bdb7ad; font-size: 10px; text-transform: uppercase; }
.catalogue-meta b { color: var(--gold-bright); font-size: 14px; }
.catalogue-meta svg { width: 14px; color: var(--green); }
.service-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.service-group { min-height: 0; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; background: rgba(24,24,20,.74); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); }
.service-group.is-advanced { border-color: rgba(219,182,112,.4); background: linear-gradient(145deg, rgba(50,42,27,.78), rgba(24,24,20,.8)); }
.service-group-head { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 13px; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.1); }
.service-group-head > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(219,182,112,.3); border-radius: 50%; background: rgba(195,154,84,.07); color: var(--gold-bright); }
.service-group-head svg { width: 19px; }
.service-group-head div { display: flex; flex-direction: column; gap: 2px; }
.service-group-head small { color: #8b857c; font-size: 9px; }
.service-group h4 { margin: 0; color: #eee9df; font-size: 12px; text-transform: uppercase; }
.service-group ul { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.service-group li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; color: #c8c2b8; font-size: 12px; line-height: 1.55; }
.service-group li svg { width: 15px; color: var(--green); }
.catalogue-note { margin: 16px 0 0; padding: 17px 19px; border: 1px solid rgba(219,182,112,.2); border-left: 2px solid var(--gold); border-radius: 4px; background: rgba(195,154,84,.06); color: #bdb6aa; font-size: 11px; line-height: 1.65; }
.catalogue-note strong { color: var(--gold-bright); text-transform: uppercase; }

.journey-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.journey-visual { position: sticky; top: 92px; }
.journey-visual > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; filter: saturate(.62) contrast(1.04); }
.image-note { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 20px; background: var(--ink); color: white; }
.image-note span { color: var(--gold); font-size: 10px; font-weight: 800; }
.image-note p { margin: 0; color: #c3beb5; font-size: 10px; }
.journey-copy h2 { margin: 0; max-width: 600px; color: var(--ink); font-family: var(--display); font-size: 52px; line-height: 1; }
.journey-steps { margin: 42px 0 32px; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.journey-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 21px 0; border-bottom: 1px solid var(--line-light); }
.journey-steps > li > span { color: var(--gold-dark); font-size: 9px; font-weight: 800; }
.journey-steps h3 { margin: 0; font-family: var(--display); font-size: 22px; line-height: 1; }
.journey-steps p { margin: 8px 0 0; color: #777168; font-size: 11px; }

.leadership { padding: 112px 0; }
.profile-list { border-top: 1px solid var(--line-dark); }
.profile { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 480px; border-bottom: 1px solid var(--line-dark); }
.profile.reverse { grid-template-columns: 1.2fr .8fr; }
.profile.reverse .profile-image { grid-column: 2; }
.profile.reverse .profile-copy { grid-column: 1; grid-row: 1; border-left: 0; border-right: 1px solid var(--line-dark); }
.profile-image { position: relative; overflow: hidden; }
.profile-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: grayscale(1) contrast(1.06); transition: filter .35s ease, transform .5s ease; }
.profile:hover .profile-image img { filter: grayscale(.15); transform: scale(1.02); }
.profile-image span { position: absolute; left: 18px; bottom: 18px; padding: 7px 10px; background: var(--gold); color: var(--ink); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.profile-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px; border-left: 1px solid var(--line-dark); }
.profile-copy h3 { margin: 0; font-family: var(--display); font-size: 48px; font-weight: 500; line-height: 1; }
.profile-copy > p:not(.eyebrow) { max-width: 620px; margin: 22px 0 0; color: #b2ada4; font-size: 13px; }
.profile-line { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line-dark); color: #dad5cc; font-size: 9px; }
.profile-line svg { flex: 0 0 auto; width: 18px; color: var(--gold); }

.safe-space { padding: 96px 0; }
.safe-layout { display: grid; grid-template-columns: 180px 1.2fr .8fr; gap: 52px; align-items: start; }
.safe-layout blockquote { margin: 0; color: var(--ink); font-family: var(--display); font-size: 42px; line-height: 1.1; }
.safe-copy p { margin: 0; color: #6f695f; font-size: 13px; }
.safe-copy .text-button { margin-top: 24px; color: var(--ink); }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.faq-layout h2 { margin: 0; color: var(--ink); font-family: var(--display); font-size: 52px; line-height: 1; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); font-size: 13px; font-weight: 700; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 auto; width: 18px; color: var(--gold-dark); transition: transform .2s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 48px 22px 0; color: #746e65; font-size: 12px; }

.final-cta { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; background: var(--ink); color: white; }
.final-bg { position: absolute; inset: 0; background: linear-gradient(rgba(9,9,8,.72), rgba(9,9,8,.88)), url("assets/hero-founders-v2.webp") center 36% / cover; filter: saturate(.58); }
.final-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-mark { width: 50px; height: 56px; object-fit: contain; margin-bottom: 25px; }
.final-content h2 { max-width: 850px; margin: 0; font-family: var(--display); font-size: 64px; font-weight: 500; line-height: .98; }
.final-content > p:not(.eyebrow) { max-width: 560px; margin: 19px 0 28px; color: #cec9c0; font-size: 14px; }

.site-footer { padding: 70px 0 24px; background: #080807; color: #a8a39a; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .55fr .55fr 1fr; gap: 60px; }
.footer-brand p { max-width: 280px; margin-top: 24px; font-size: 11px; }
.site-footer h3 { margin: 0 0 16px; color: var(--gold); font-size: 9px; text-transform: uppercase; }
.site-footer a, .site-footer button { display: block; margin: 10px 0; padding: 0; border: 0; background: transparent; color: #aaa59c; font-size: 10px; }
.site-footer a:hover, .site-footer button:hover { color: white; }
.footer-note p { margin: 0; font-size: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: 8px; text-transform: uppercase; }

.consultation-dialog {
  width: min(940px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--paper);
  color: var(--charcoal);
  box-shadow: 0 36px 120px rgba(0,0,0,.48);
}
.consultation-dialog::backdrop { background: rgba(5,5,4,.78); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; top: 16px; right: 16px; z-index: 2; color: var(--ink); border-color: var(--line-light); }
.consultation-dialog[open] { display: grid; grid-template-columns: .9fr 1.1fr; }
.dialog-intro { min-height: 600px; display: flex; flex-direction: column; justify-content: flex-end; padding: 54px; background: var(--ink); color: white; }
.dialog-intro img { width: 44px; height: 49px; margin-bottom: auto; object-fit: contain; }
.dialog-intro h2 { margin: 0; font-family: var(--display); font-size: 46px; line-height: 1; }
.dialog-intro > p:not(.eyebrow) { margin: 20px 0 0; color: #aaa59d; font-size: 12px; }
.consultation-dialog form { display: flex; flex-direction: column; gap: 14px; padding: 70px 54px 46px; }
.consultation-dialog label { display: flex; flex-direction: column; gap: 6px; color: #6d675e; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.consultation-dialog input, .consultation-dialog select { width: 100%; min-height: 46px; padding: 0 12px; border: 1px solid #d6d0c5; border-radius: 2px; background: white; color: var(--ink); font-size: 12px; text-transform: none; }
.consultation-dialog input[aria-invalid="true"], .consultation-dialog select[aria-invalid="true"] { border-color: var(--red); }
.field-error { min-height: 14px; color: var(--red); font-size: 8px; font-weight: 700; text-transform: none; }
.form-error { margin: 0; padding: 10px 14px; border: 1px solid rgba(178,58,58,.35); border-radius: 10px; background: rgba(178,58,58,.08); color: var(--red); font-size: 12px; line-height: 1.4; }
.form-privacy { display: flex; align-items: center; gap: 8px; margin: 0; color: #7c766d; font-size: 8px; }
.form-privacy svg { width: 13px; color: var(--gold-dark); }
.form-success { align-self: center; padding: 64px; text-align: center; }
.form-success > span { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--green-deep); color: white; }
.form-success > span svg { width: 25px; }
.form-success h3 { margin: 0; font-family: var(--display); font-size: 36px; }
.form-success p { color: #756f66; font-size: 12px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .service-catalogue { padding: 36px; }
  .service-groups { grid-template-columns: 1fr 1fr; }
  .service-group.is-advanced { grid-column: 1 / -1; }
  .service-group.is-advanced ul { grid-template-columns: 1fr 1fr; column-gap: 28px; }
}

@media (max-width: 1060px) {
  :root { --gutter: 22px; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 10px; }
  .header-cta { display: none; }
  .hero-telemetry { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .experience-grid, .health-areas-layout { gap: 42px; }
  .display-heading { font-size: 48px; }
  .pillar-system { transform: scale(.9); transform-origin: center right; }
  .service-groups { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .announcement { font-size: 9px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; justify-self: end; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 90px 28px 36px;
    background: rgba(10,10,9,.98);
    color: white;
  }
  .mobile-nav a { padding: 10px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--display); font-size: 31px; }
  .mobile-nav .button { margin-top: 24px; }
  .hero { min-height: calc(100svh - 52px); max-height: none; }
  .hero-image {
    background-image: url("assets/hero-founders-clean-v2.webp");
    background-size: cover;
    background-position: center 38%;
    transform: scale(1.03) translateY(var(--hero-shift, 0px));
  }
  .hero-content { padding-top: 145px; padding-bottom: 52px; }
  .hero h1 { font-size: 58px; }
  .hero-statement { font-size: 29px; }
  .hero-copy { max-width: 560px; font-size: 14px; }
  .recognition-layout { grid-template-columns: 1fr; gap: 30px; }
  .recognition-signals { display: grid; grid-template-columns: repeat(3, 1fr); }
  .recognition-signals span { text-align: left; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .care-cycle { grid-template-columns: repeat(2, 1fr); }
  .care-cycle li { min-height: 190px; border-bottom: 1px solid var(--line-light); }
  .care-cycle li:nth-child(odd) { border-left: 0; }
  .care-cycle li:last-child { grid-column: 1 / -1; }
  .experience-grid, .health-areas-layout, .journey-layout, .faq-layout { grid-template-columns: 1fr; }
  .story-heading { grid-template-columns: 1fr; gap: 24px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-panel { min-height: 500px; }
  .story-panel + .story-panel { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .story-copy, .story-panel:last-child .story-copy { left: var(--gutter); right: var(--gutter); }
  .console-scene { max-width: none; }
  .health-console { max-width: none; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .outcome:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .outcome:nth-child(4) { border-top: 1px solid var(--line-light); }
  .pillar-system { justify-self: center; transform: none; }
  .membership-stage { grid-template-columns: 1fr; }
  .membership-intro { min-height: 0; border-right: 0; }
  .plan-pillar-map { padding: 30px; }
  .plan-module { min-height: 76px; grid-template-columns: 30px 40px minmax(0, 1fr) auto; }
  .plan-module > svg { width: 36px; height: 36px; }
  .plan-highlights { grid-template-columns: 1fr; gap: 10px; padding: 14px; }
  .plan-highlights > div + div { border-left: 1px solid #d8d0c4; }
  .profile, .profile.reverse { grid-template-columns: .85fr 1.15fr; }
  .profile.reverse .profile-image { grid-column: 1; }
  .profile.reverse .profile-copy { grid-column: 2; border-right: 0; border-left: 1px solid var(--line-dark); }
  .safe-layout { grid-template-columns: 1fr; gap: 24px; }
  .safe-layout blockquote { font-size: 38px; }
  .journey-visual { position: relative; top: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; --header-height: 64px; }
  .announcement { min-height: 34px; gap: 7px; white-space: nowrap; overflow: hidden; }
  .site-header { top: 34px; min-height: var(--header-height); padding-inline: var(--gutter); }
  .site-header.is-sticky { top: 0; min-height: 62px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 14px; }
  .brand img { width: 24px; height: 28px; }
  .hero { min-height: calc(90svh - 26px); }
  .hero-shade { background: linear-gradient(90deg, rgba(8,8,7,.94), rgba(8,8,7,.55)), linear-gradient(0deg, rgba(8,8,7,.88), transparent 58%); }
  .hero-grid { background-size: 54px 54px; }
  .hero-content { padding-top: 80px; padding-bottom: 24px; }
  .hero h1 { max-width: 330px; font-size: 49px; }
  .hero-statement { max-width: 330px; font-size: 27px; }
  .hero-copy { font-size: 13px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 24px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-direction: column; gap: 6px; padding-bottom: 10px; }
  .hero-proof div { width: 100%; min-height: 48px; }
  .recognition, .approach, .experience, .outcomes, .health-areas, .memberships, .care-journey, .leadership, .faq { padding: 60px 0 78px; }
  .member-stories { padding-top: 60px; }
  .story-heading { padding-bottom: 36px; }
  .story-heading h2 { font-size: 42px; }
  .story-panel { min-height: 440px; }
  .story-copy { bottom: 30px; }
  .story-copy h3 { font-size: 31px; }
  .recognition { padding-top: 34px; }
  .display-heading, .section-heading h2, .journey-copy h2, .faq-layout h2 { font-size: 42px; }
  .recognition-lead { font-size: 23px; }
  .recognition-signals { grid-template-columns: 1fr 1fr; }
  .section-heading { margin-bottom: 38px; }
  .care-cycle { grid-template-columns: 1fr; }
  .care-cycle::after { display: none; }
  .care-cycle li, .care-cycle li:last-child { grid-column: auto; min-height: 140px; display: grid; grid-template-columns: 32px 40px 1fr; align-items: center; gap: 12px; padding: 15px 4px; border-left: 0; }
  .care-cycle svg { margin: 0; }
  .care-cycle small { grid-column: 3; margin: -16px 0 0; }
  .experience-grid { gap: 40px; }
  .console-inputs { grid-template-columns: 1fr 1fr; }
  .console-inputs span:last-child { grid-column: 1 / -1; }
  .console-connections { display: none; }
  .health-console { padding: 10px; }
  .console-scene .health-console { margin-top: 12px; }
  .console-greeting strong { font-size: 19px; }
  .score-ring { width: 68px; height: 68px; }
  .console-chart svg { height: 115px; }
  .console-metrics { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome, .outcome:nth-child(3), .outcome:nth-child(4) { min-height: 250px; border-left: 0; border-top: 1px solid var(--line-light); }
  .outcome:first-child { border-top: 0; }
  .outcome svg { margin: 34px 0 24px; }
  .pillar-system { width: 100%; aspect-ratio: auto; display: grid; gap: 8px; margin-top: 18px; }
  .pillar-flow, .pillar-rings, .pillar-centre { display: none; }
  .pillar-node, .node-1, .node-2, .node-3, .node-4, .node-5 { position: relative; inset: auto; width: 100%; min-height: 82px; transform: none; }
  .pillar-node:hover, .pillar-node.is-active { transform: translateX(4px); }
  .pillar-node strong { font-size: 10px; }
  .pillar-node small { font-size: 8px; }
  .membership-selector { grid-template-columns: 1fr; }
  .membership-intro { padding: 30px 22px; }
  .membership-intro h3 { font-size: 46px; }
  .plan-actions { flex-direction: column; align-items: stretch; }
  .plan-pillar-map { padding: 24px 18px; }
  .plan-map-head { align-items: flex-start; }
  .plan-map-head strong { text-align: right; }
  .plan-module { min-height: 82px; grid-template-columns: 28px 36px minmax(0, 1fr); padding: 10px 9px; }
  .plan-module > em { grid-column: 2 / -1; justify-self: start; margin-top: -5px; }
  .plan-map-rail::before { left: 20px; }
  .plan-highlights { grid-template-columns: 1fr; }
  .plan-highlights > div + div { border-left: 1px solid #d8d0c4; }
  .service-catalogue { padding: 30px 18px; }
  .catalogue-heading h3 { font-size: 34px; }
  .catalogue-meta { flex-direction: column; align-items: flex-start; }
  .service-groups { grid-template-columns: 1fr; }
  .service-group.is-advanced { grid-column: auto; }
  .service-group.is-advanced ul { grid-template-columns: 1fr; }
  .journey-layout { gap: 44px; }
  .profile, .profile.reverse { grid-template-columns: 1fr; }
  .profile-image, .profile.reverse .profile-image { grid-column: 1; grid-row: auto; min-height: 380px; }
  .profile-copy, .profile.reverse .profile-copy { grid-column: 1; grid-row: auto; padding: 34px 18px 48px; border: 0; border-top: 1px solid var(--line-dark); }
  .profile-copy h3 { font-size: 42px; }
  .safe-layout blockquote { font-size: 34px; }
  .faq-layout { gap: 35px; }
  .final-cta { min-height: 560px; }
  .final-content h2 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .consultation-dialog[open] { display: block; overflow-y: auto; }
  .dialog-close { color: white; border-color: rgba(255,255,255,.45); }
  .dialog-intro { min-height: 330px; padding: 30px 24px; }
  .dialog-intro img { margin-bottom: 56px; }
  .dialog-intro h2 { font-size: 38px; }
  .consultation-dialog form { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .telemetry-runner, .console-connections circle, .pillar-flow circle, .recognition-wave circle { display: none; }
  .chart-area, .console-chart circle { opacity: 1; }
  .chart-line { stroke-dashoffset: 0; }
}
