/* ==========================================================================
   AA Health Central — Boutique Web System
   Brand: Philosopher (display) + Helvetica (body/UI)
   Palette: Regal Indigo #5F1B93 · Aubergine #54246D · Royal #7A359D · Amethyst #72428B
   ========================================================================== */

:root {
  --purple: #5F1B93;
  --deep: #54246D;
  --royal: #7A359D;
  --amethyst: #72428B;
  --twilight: #3a1454;

  --ink: #141414;
  --charcoal: #3B3A3B;
  --slate: #646464;
  --silver: #B6B6B6;
  --display-soft: #8f8794;

  --ivory: #FBF9F6;
  --paper: #FFFFFF;
  --mist: #F4EFF7;
  --lilac: #E9E0F0;
  --line: rgba(20, 20, 20, .12);
  --line-soft: rgba(20, 20, 20, .07);

  --f-display: "Philosopher", Georgia, serif;
  --f-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 4.2vw, 64px);
  --max: 1360px;
  --radius: 22px;
  --radius-lg: 34px;

  --ease: cubic-bezier(.22, .8, .24, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--purple); color: #fff; }
:focus-visible { outline: 2px solid var(--royal); outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 999; background: var(--purple); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(88px, 11vw, 168px) 0; position: relative; }
.section--tight { padding: clamp(64px, 8vw, 112px) 0; }
.bg-paper { background: var(--paper); }
.bg-mist { background: var(--mist); }

/* ---------- Type ---------- */
.display, .h1, .h2, .h3 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.012em;
  margin: 0;
}
.h1 { font-size: clamp(46px, 6.6vw, 104px); line-height: 1.02; }
.h2 { font-size: clamp(36px, 4.6vw, 70px); line-height: 1.06; }
.h3 { font-size: clamp(24px, 2.2vw, 32px); line-height: 1.18; }
.soft { color: var(--display-soft); }
.accent { color: var(--purple); font-style: italic; }
.lede { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.7; color: var(--slate); max-width: 58ch; }
.small { font-size: 14px; color: var(--slate); }

.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-body); font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--purple);
}
.label::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.label--center::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.label--plain::before { display: none; }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---------- Buttons & links ---------- */
.btn {
  --bg: var(--purple); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 56px; padding: 0 30px;
  background: var(--bg); color: var(--fg);
  font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 4px; overflow: hidden; isolation: isolate;
  transition: color .5s var(--ease), transform .5s var(--ease);
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--deep); transform: translateY(101%);
  transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn .arrow { width: 16px; height: 16px; transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { --fg: #fff; color: #fff; }
.btn--light { --bg: #fff; --fg: var(--deep); }
.btn--light::before { background: var(--lilac); }
.btn--block { width: 100%; }

.link {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 6px;
}
.link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform-origin: right; transform: scaleX(1); transition: transform .7s var(--ease);
}
.link:hover::after { animation: underline 0.9s var(--ease) forwards; }
@keyframes underline { 0% { transform: scaleX(1); transform-origin: right; } 45% { transform: scaleX(0); transform-origin: right; } 46% { transform-origin: left; } 100% { transform: scaleX(1); transform-origin: left; } }
.link--purple { color: var(--purple); }
.link svg { width: 14px; height: 14px; transition: transform .5s var(--ease); }
.link:hover svg { transform: translateX(4px); }

/* ---------- Progress / chrome ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 120; pointer-events: none; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--royal), var(--purple)); transform-origin: left; transform: scaleX(0); }

.page-veil {
  position: fixed; inset: 0; z-index: 200; background: var(--ivory);
  display: grid; place-items: center; pointer-events: none;
  animation: veil-out 1s var(--ease-io) .15s forwards;
}
.page-veil img { width: 64px; opacity: .9; animation: veil-mark 1s var(--ease) forwards; }
.page-veil.is-in { animation: veil-in .6s var(--ease-io) forwards; pointer-events: all; }
@keyframes veil-out { to { clip-path: inset(0 0 100% 0); } }
@keyframes veil-in { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes veil-mark { from { transform: scale(.9); opacity: 0; } 40% { opacity: 1; } to { transform: scale(1); opacity: 0; } }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  transition: transform .6s var(--ease), background .5s ease, box-shadow .5s ease, height .5s var(--ease);
}
.header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header.is-scrolled { background: rgba(251, 249, 246, .88); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 var(--line-soft); height: 74px; }
.header.is-hidden { transform: translateY(-100%); }
.brand img { height: 46px; width: auto; transition: height .5s var(--ease); }
.header.is-scrolled .brand img { height: 40px; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav a {
  position: relative; font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); padding: 8px 0;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--purple); transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--purple); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { min-height: 46px; padding: 0 22px; font-size: 12px; }
.icon-btn { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); color: var(--purple); transition: background .4s, color .4s; }
.icon-btn:hover { background: var(--purple); color: #fff; }
.icon-btn svg { width: 18px; height: 18px; }
.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform .5s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 25px; }
.menu-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu panel */
.menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ivory);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease-io); visibility: hidden;
}
.menu-open .menu { clip-path: inset(0 0 0 0); visibility: visible; }
.menu ol { list-style: none; margin: 0; padding: 0; counter-reset: m; }
.menu li { overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.menu li a {
  display: flex; align-items: baseline; gap: 16px; padding: 14px 0;
  font-family: var(--f-display); font-size: clamp(30px, 8vw, 48px); line-height: 1.1; color: var(--ink);
  transform: translateY(110%); transition: transform .8s var(--ease);
}
.menu li a::before { counter-increment: m; content: "0" counter(m); font-family: var(--f-body); font-size: 11px; letter-spacing: .2em; color: var(--purple); }
.menu-open .menu li a { transform: none; }
.menu-open .menu li:nth-child(2) a { transition-delay: .05s; }
.menu-open .menu li:nth-child(3) a { transition-delay: .1s; }
.menu-open .menu li:nth-child(4) a { transition-delay: .15s; }
.menu-open .menu li:nth-child(5) a { transition-delay: .2s; }
.menu-open .menu li:nth-child(6) a { transition-delay: .25s; }
.menu-foot { display: grid; gap: 14px; font-size: 15px; }
.menu-foot a:not(.btn) { color: var(--purple); }

/* ---------- Pearl-style vertical side tabs ---------- */
.side-tab {
  position: fixed; top: 50%; z-index: 80;
  writing-mode: vertical-rl;
  padding: 26px 13px; background: var(--lilac); color: var(--deep);
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  transition: background .4s, color .4s, padding .4s var(--ease);
}
.side-tab:hover { background: var(--purple); color: #fff; }
.side-tab--left { left: 0; transform: translateY(-50%) rotate(180deg); border-radius: 10px 0 0 10px; }
.side-tab--right { right: 0; transform: translateY(-50%); border-radius: 10px 0 0 10px; }

.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 85; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: var(--purple); color: #fff;
  box-shadow: 0 12px 30px -10px rgba(95, 27, 147, .6); transition: transform .5s var(--ease);
}
.float-wa:hover { transform: scale(1.06); }
.float-wa svg { width: 26px; height: 26px; }
.float-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(122, 53, 157, .45); animation: ping 3.2s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(122, 53, 157, .4); } 70%, 100% { box-shadow: 0 0 0 18px rgba(122, 53, 157, 0); } }

/* ---------- Motion primitives ---------- */
.line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.line > span { display: inline-block; transform: translateY(105%); transition: transform 1.2s var(--ease); }
.is-in .line > span, .line.is-in > span { transform: none; }
.is-in .line:nth-child(2) > span { transition-delay: .09s; }
.is-in .line:nth-child(3) > span { transition-delay: .18s; }
.is-in .line:nth-child(4) > span { transition-delay: .27s; }
.is-in .line:nth-child(5) > span { transition-delay: .36s; }

.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease); transition-delay: calc(var(--i) * 28ms); }
.split.is-in .w > span { transform: none; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
[data-reveal].is-in { opacity: 1; transform: none; }

.img-reveal { overflow: hidden; clip-path: inset(12% 0 0 0 round var(--radius)); transition: clip-path 1.4s var(--ease); }
.img-reveal img { transform: scale(1.08); transition: transform 1.8s var(--ease); }
.img-reveal.is-in { clip-path: inset(0 0 0 0 round var(--radius)); }
.img-reveal.is-in img { transform: scale(1); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + clamp(28px, 5vw, 72px)) 0 clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: clamp(32px, 5vw, 88px); }
.hero .label { margin-bottom: 30px; }
.hero h1 { margin-bottom: 34px; font-size: clamp(44px, 5.5vw, 90px); }
.hero .lede { margin-bottom: 42px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px 34px; }
.hero-actions > * { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.is-in .hero-actions > * { opacity: 1; transform: none; }
.is-in .hero-actions > :nth-child(1) { transition-delay: .55s; }
.is-in .hero-actions > :nth-child(2) { transition-delay: .68s; }
.hero .lede, .hero .label { opacity: 0; transform: translateY(14px); transition: opacity 1s var(--ease) .35s, transform 1s var(--ease) .35s; }
.hero.is-in .lede, .hero.is-in .label { opacity: 1; transform: none; }
.hero.is-in .label { transition-delay: .05s; }

.hero-visual { position: relative; aspect-ratio: 4 / 5; }
.hero-arch {
  position: absolute; inset: 7% 6% 0 6%; overflow: hidden;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  clip-path: inset(100% 0 0 0 round 999px 999px var(--radius-lg) var(--radius-lg));
  transition: clip-path 1.6s var(--ease-io) .2s;
  background: var(--lilac);
}
.hero.is-in .hero-arch { clip-path: inset(0 0 0 0 round 999px 999px var(--radius-lg) var(--radius-lg)); }
.hero-arch img { width: 100%; height: 118%; object-fit: cover; object-position: 60% 30%; transform: scale(1.12); transition: transform 2.6s var(--ease) .2s; }
.hero.is-in .hero-arch img { transform: scale(1.02); }
.hero-ring { position: absolute; inset: -2% -3% auto -3%; width: 106%; pointer-events: none; overflow: visible; }
.hero-ring path { fill: none; stroke: var(--purple); stroke-width: 1.4; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.4s var(--ease) .7s; }
.hero.is-in .hero-ring path { stroke-dashoffset: 0; }
.hero-badge {
  position: absolute; left: -8%; bottom: 12%; z-index: 2;
  display: flex; align-items: center; gap: 16px; padding: 16px 22px 16px 16px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 999px; box-shadow: 0 24px 50px -24px rgba(84, 36, 109, .35);
  opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease) 1.3s, transform 1s var(--ease) 1.3s;
}
.hero.is-in .hero-badge { opacity: 1; transform: none; }
.hero-badge img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.hero-badge b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 17px; color: var(--ink); line-height: 1.2; }
.hero-badge span { font-size: 12px; color: var(--slate); letter-spacing: .04em; }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: grid; justify-items: center; gap: 10px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--slate); }
.hero-scroll i { width: 1px; height: 46px; background: var(--line); position: relative; overflow: hidden; }
.hero-scroll i::after { content: ""; position: absolute; left: 0; top: -40%; width: 100%; height: 40%; background: var(--purple); animation: drip 2.4s var(--ease-io) infinite; }
@keyframes drip { to { top: 110%; } }

/* Trust marquee */
.marquee { border-block: 1px solid var(--line-soft); padding: 22px 0; overflow: hidden; background: var(--paper); }
.marquee-track { display: flex; width: max-content; gap: 56px; animation: marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; font-family: var(--f-display); font-size: clamp(18px, 1.6vw, 24px); color: var(--display-soft); }
.marquee-track span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--purple); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Emblem + Transition ---------- */
.emblem { display: grid; justify-items: center; gap: 4px; margin-bottom: 44px; }
.emblem-num { font-family: var(--f-display); font-style: italic; font-size: clamp(88px, 10vw, 150px); line-height: .9; color: var(--purple); position: relative; }
.emblem-num sup { font-size: .28em; vertical-align: top; position: relative; top: .5em; margin-left: 4px; font-style: normal; }
.emblem-cap { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--slate); }
.emblem svg { width: 180px; margin-top: -6px; }
.emblem svg path { fill: none; stroke: var(--purple); stroke-width: 1; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2s var(--ease) .3s; }
.emblem.is-in svg path { stroke-dashoffset: 0; }
.intro-copy { max-width: 820px; margin: 0 auto; text-align: center; font-size: clamp(17px, 1.3vw, 19px); color: var(--slate); }

.fill-text { font-family: var(--f-display); font-size: clamp(38px, 5.4vw, 86px); line-height: 1.08; color: var(--ink); max-width: 16ch; margin: 0 auto; text-align: center; letter-spacing: -.015em; }
.fill-text .fw { opacity: .14; transition: opacity .25s linear; }
.fill-text .fw.on { opacity: 1; }
.fill-text .fw.hl { color: var(--purple); font-style: italic; }

.stages { margin-top: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.stages::before { content: ""; position: absolute; left: 10%; right: 10%; top: 9px; height: 1px; background: var(--line); }
.stages-fill { position: absolute; left: 10%; top: 9px; height: 1px; width: 80%; background: var(--purple); transform-origin: left; transform: scaleX(var(--p, 0)); }
.stage { display: grid; justify-items: center; text-align: center; gap: 10px; position: relative; }
.stage i { width: 19px; height: 19px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--silver); transition: border-color .5s, background .5s, box-shadow .5s; position: relative; z-index: 1; }
.stage.on i { border-color: var(--purple); background: var(--purple); box-shadow: 0 0 0 6px rgba(95, 27, 147, .1); }
.stage b { font-family: var(--f-display); font-weight: 400; font-size: clamp(19px, 1.6vw, 24px); color: var(--ink); margin-top: 8px; }
.stage span { font-size: 13px; color: var(--slate); }
.stage small { font-size: 10px; letter-spacing: .24em; color: var(--purple); }

/* ---------- Needs list (problem-first navigation) ---------- */
.head-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: clamp(48px, 6vw, 80px); flex-wrap: wrap; }
.head-row .h2 { max-width: 15ch; }
.head-row .lede { max-width: 44ch; }
.needs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); position: relative; }
.needs li { border-bottom: 1px solid var(--line); }
.needs a {
  display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 24px;
  padding: clamp(26px, 2.8vw, 40px) 0; position: relative;
}
.needs a::before { content: ""; position: absolute; inset: 0; background: var(--mist); transform: scaleY(0); transform-origin: bottom; transition: transform .7s var(--ease); z-index: -1; }
.needs a:hover::before { transform: scaleY(1); }
.needs .n { font-size: 12px; letter-spacing: .2em; color: var(--purple); padding-left: 8px; }
.needs .q { font-family: var(--f-display); font-size: clamp(24px, 3vw, 46px); line-height: 1.15; color: var(--ink); transition: transform .7s var(--ease), color .5s; }
.needs .q em { color: var(--display-soft); font-style: normal; }
.needs a:hover .q { transform: translateX(16px); color: var(--purple); }
.needs .go { width: 58px; height: 58px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; color: var(--ink); transition: background .5s, color .5s, transform .6s var(--ease); margin-right: 8px; }
.needs .go svg { width: 18px; height: 18px; transition: transform .6s var(--ease); }
.needs a:hover .go { background: var(--purple); color: #fff; box-shadow: none; }
.needs a:hover .go svg { transform: rotate(-45deg); }
.needs-cursor {
  position: fixed; top: 0; left: 0; width: 280px; aspect-ratio: 4/5; border-radius: 160px 160px 18px 18px; overflow: hidden; pointer-events: none; z-index: 60;
  opacity: 0; transform: translate(-50%, -50%) scale(.85); transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.needs-cursor.on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.needs-cursor img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s; }
.needs-cursor img.on { opacity: 1; }

/* ---------- Service panels (Pearl's large rounded video cards) ---------- */
.panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 30px); }
.panel { position: relative; display: block; }
.panel-media { position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden; background: var(--lilac); }
.panel:nth-child(2) .panel-media, .panel:nth-child(3) .panel-media { aspect-ratio: 5 / 4; }
.panel-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.6s var(--ease); }
.panel:hover .panel-media img { transform: scale(1.1); }
.panel-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 8, 30, .04) 30%, rgba(40, 12, 58, .62) 100%); transition: opacity .6s; }
.panel-over { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 32px; }
.panel-over .play { width: 74px; height: 74px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .75); display: grid; place-items: center; margin-bottom: 22px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(255, 255, 255, .08); transition: transform .7s var(--ease), background .5s; }
.panel-over .play svg { width: 20px; height: 20px; transition: transform .6s var(--ease); }
.panel:hover .play { transform: scale(1.08); background: rgba(255, 255, 255, .95); color: var(--purple); }
.panel:hover .play svg { transform: rotate(-45deg); }
.panel-over h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(30px, 3.3vw, 52px); line-height: 1.05; margin: 0; text-shadow: 0 2px 30px rgba(0, 0, 0, .15); }
.panel-over .num { position: absolute; top: 28px; left: 32px; font-size: 11px; letter-spacing: .26em; opacity: .9; }
.panel-over .tag { position: absolute; top: 24px; right: 28px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; padding: 8px 14px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 999px; }
.panel-copy { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; padding: 24px 8px 0; }
.panel-copy p { margin: 0; color: var(--slate); font-size: 16px; max-width: 46ch; }

/* ---------- Statement band ---------- */
.statement { position: relative; background: var(--deep); color: #fff; overflow: hidden; padding: clamp(110px, 14vw, 200px) 0; text-align: center; }
.statement::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 110%, rgba(122, 53, 157, .75), transparent 70%), radial-gradient(40% 60% at 10% 0%, rgba(95, 27, 147, .6), transparent 70%); }
.statement .ring { position: absolute; left: 50%; top: 50%; width: min(1100px, 130vw); transform: translate(-50%, -50%); opacity: .28; pointer-events: none; }
.statement .ring path { fill: none; stroke: #fff; stroke-width: .6; }
.statement .wrap { position: relative; }
.statement .label { color: #d9c7ea; }
.statement h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(54px, 9.4vw, 156px); line-height: .98; margin: 28px 0 30px; letter-spacing: -.02em; color: #fff; }
.statement h2 em { color: #d9c7ea; }
.statement p { font-size: clamp(16px, 1.3vw, 19px); letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .78); margin: 0; }

/* ---------- Why (numbered) ---------- */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.why-grid .sticky { position: sticky; top: 130px; }
.why-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.why-list li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: clamp(28px, 3vw, 44px) 0; border-bottom: 1px solid var(--line); }
.why-list .n { font-family: var(--f-display); font-size: clamp(36px, 3.4vw, 54px); line-height: 1; color: var(--silver); transition: color .6s; }
.why-list li.is-in .n { color: var(--purple); }
.why-list h3 { margin: 4px 0 10px; }
.why-list p { margin: 0; color: var(--slate); max-width: 50ch; }

/* ---------- Founder (Pearl's greyscale doctor treatment) ---------- */
.founder { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 7vw, 120px); align-items: center; }
.founder-media { position: relative; }
.founder-frame { position: relative; aspect-ratio: 4 / 5; border-radius: 999px 999px var(--radius-lg) var(--radius-lg); overflow: hidden; background: #1c1520; }
.founder-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; filter: grayscale(1) contrast(1.05); transition: filter 1.4s var(--ease), transform 1.8s var(--ease); transform: scale(1.04); }
.founder-media:hover .founder-frame img, .founder-media.is-color .founder-frame img { filter: grayscale(0) contrast(1); transform: scale(1); }
.founder-sig { position: absolute; right: -4%; bottom: 8%; background: var(--paper); border-radius: 18px; padding: 20px 26px; box-shadow: 0 30px 60px -30px rgba(84, 36, 109, .4); }
.founder-sig b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 24px; color: var(--purple); line-height: 1.1; }
.founder-sig span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--slate); }
.founder-ring { position: absolute; inset: -5%; width: 110%; pointer-events: none; }
.founder-ring path { fill: none; stroke: var(--purple); stroke-width: .8; opacity: .5; }
.founder blockquote { margin: 34px 0; padding: 0; font-family: var(--f-display); font-style: italic; font-size: clamp(22px, 2vw, 30px); line-height: 1.35; color: var(--ink); }
.creds { list-style: none; padding: 0; margin: 0 0 40px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.creds li { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--charcoal); display: flex; gap: 12px; }
.creds li:nth-child(odd) { padding-right: 20px; }
.creds li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 9px; border-radius: 50%; background: var(--purple); }
.arch-note { display: flex; gap: 28px; margin: 0 0 40px; font-size: 14px; color: var(--slate); }
.arch-note b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 22px; color: var(--ink); }

/* ---------- Journey (pinned, scroll-linked) ---------- */
.journey { position: relative; }
.journey-pin { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.journey-side { position: sticky; top: 120px; }
.journey-side .h2 { margin: 22px 0 24px; }
.journey-meter { margin-top: 44px; display: flex; align-items: baseline; gap: 12px; font-family: var(--f-display); }
.journey-meter b { font-weight: 400; font-size: clamp(64px, 6vw, 96px); color: var(--purple); line-height: 1; min-width: 1.4em; }
.journey-meter span { font-size: 22px; color: var(--silver); }
.journey-steps { position: relative; list-style: none; margin: 0; padding: 0 0 0 64px; }
.journey-track { position: absolute; left: 14px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.journey-track i { position: absolute; inset: 0; background: linear-gradient(var(--royal), var(--purple)); transform-origin: top; transform: scaleY(var(--p, 0)); }
.jstep { position: relative; padding: 0 0 clamp(64px, 8vw, 110px); opacity: .32; transition: opacity .7s var(--ease); }
.jstep:last-child { padding-bottom: 0; }
.jstep.on { opacity: 1; }
.jstep::before { content: ""; position: absolute; left: -58px; top: 8px; width: 17px; height: 17px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--silver); transition: all .6s var(--ease); }
.jstep.on::before { background: var(--purple); border-color: var(--purple); box-shadow: 0 0 0 7px rgba(95, 27, 147, .1); }
.jstep small { display: block; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.jstep h3 { margin-bottom: 14px; }
.jstep p { margin: 0 0 16px; color: var(--slate); max-width: 52ch; }
ol.plain { list-style: none; margin: 0; padding: 0; }
.jstep ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.jstep li { font-size: 13px; padding: 7px 14px; border-radius: 999px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line-soft); color: var(--charcoal); }
.jstep .pill-free { background: var(--lilac); color: var(--deep); box-shadow: none; }

/* ---------- Horizontal scenarios ---------- */
.hscroll { position: relative; }
.hscroll-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hscroll-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: clamp(32px, 4vw, 56px); }
.hscroll-count { font-family: var(--f-display); font-size: 20px; color: var(--silver); }
.hscroll-count b { color: var(--purple); font-weight: 400; }
.hscroll-track { display: flex; gap: clamp(18px, 2vw, 28px); padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2)); padding-right: var(--gutter); will-change: transform; }
.scard { flex: none; width: clamp(300px, 30vw, 440px); display: block; }
.scard-media { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--lilac); }
.scard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.scard:hover .scard-media img { transform: scale(1.07); }
.scard-media .chip { position: absolute; left: 18px; top: 18px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .92); color: var(--deep); }
.scard h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 1.9vw, 28px); line-height: 1.2; color: var(--ink); margin: 22px 0 10px; }
.scard p { margin: 0; font-size: 15px; color: var(--slate); }
.scard--end { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 26px; padding: 40px; border-radius: var(--radius); background: var(--mist); aspect-ratio: 4/5; align-self: flex-start; }
.scard--end .h3 { font-size: clamp(28px, 2.4vw, 36px); }

/* ---------- Boundaries ---------- */
.bounds { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); background: var(--paper); }
.bounds > div { padding: clamp(32px, 4.5vw, 64px); }
.bounds > div + div { background: var(--mist); }
.bounds h3 { margin: 18px 0 26px; }
.bounds ul { list-style: none; margin: 0; padding: 0; }
.bounds li { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; color: var(--charcoal); }
.bounds li:last-child { border-bottom: 0; }
.bounds li svg { flex: none; width: 18px; height: 18px; margin-top: 4px; color: var(--purple); }
.bounds .no svg { color: var(--slate); }
.emergency { margin-top: 26px; display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: var(--slate); padding: 18px 22px; border-radius: 14px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line-soft); }
.emergency b { color: var(--ink); }

/* ---------- Journal ---------- */
.journal { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(18px, 2vw, 30px); }
.jcard { display: block; }
.jcard-media { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--lilac); }
.jcard:first-child .jcard-media { aspect-ratio: 5 / 4; }
.jcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.jcard:hover .jcard-media img { transform: scale(1.06); }
.jcard .meta { display: flex; gap: 14px; margin: 22px 0 12px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--purple); }
.jcard .meta span + span { color: var(--slate); }
.jcard h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 1.8vw, 28px); line-height: 1.2; color: var(--ink); margin: 0 0 10px; transition: color .4s; }
.jcard:hover h3 { color: var(--purple); }
.jcard p { margin: 0; font-size: 15px; color: var(--slate); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: clamp(56px, 6vw, 88px); }
.pillars div { padding: 28px 24px 0 0; }
.pillars small { font-size: 11px; letter-spacing: .24em; color: var(--purple); }
.pillars b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 22px; color: var(--ink); margin: 10px 0 6px; line-height: 1.2; }
.pillars span { font-size: 14px; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 0; font-family: var(--f-display); font-size: clamp(20px, 1.7vw, 25px); line-height: 1.3; color: var(--ink); transition: color .4s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--purple); }
.faq summary i { flex: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); position: relative; transition: background .5s, box-shadow .5s, transform .6s var(--ease); }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.2px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .6s var(--ease), background .4s; }
.faq summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary i { background: var(--purple); box-shadow: none; transform: rotate(180deg); }
.faq details[open] summary i::before, .faq details[open] summary i::after { background: #fff; }
.faq details[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq .ans { overflow: hidden; }
.faq .ans > div { padding: 0 56px 30px 0; color: var(--slate); }
.faq .ans p { margin: 0 0 12px; }

/* ---------- Final CTA ---------- */
.final { text-align: center; position: relative; overflow: hidden; }
.final .h1 { max-width: 17ch; margin: 30px auto 28px; font-size: clamp(42px, 5.8vw, 92px); }
.final .lede { margin: 0 auto 44px; }
.final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.final-meta { margin-top: clamp(56px, 6vw, 88px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); text-align: left; }
.final-meta > div { padding: 28px 24px 0 0; }
.final-meta small { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--purple); }
.final-meta p { margin: 8px 0 0; color: var(--charcoal); font-size: 16px; }
.final-meta a:hover { color: var(--purple); }

/* ---------- Footer (Pearl's dark footer) ---------- */
.footer { background: #0f0c12; color: rgba(255, 255, 255, .72); padding: 0 0 36px; }
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 44px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-cta a.big { font-family: var(--f-display); font-size: clamp(30px, 3.6vw, 54px); color: #fff; display: inline-flex; gap: 20px; align-items: center; transition: color .4s; }
.footer-cta a.big:hover { color: #d9c7ea; }
.footer-cta a.big svg { width: .7em; height: .7em; transition: transform .6s var(--ease); }
.footer-cta a.big:hover svg { transform: rotate(-45deg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 40px; padding: 64px 0 56px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 24px; }
.footer-brand p { font-size: 15px; max-width: 34ch; margin: 0 0 24px; }
.footer h4 { font-family: var(--f-body); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: #fff; font-weight: 500; margin: 0 0 22px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer li a, .footer-contact a { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; transition: color .3s; }
.footer li a:hover, .footer-contact a:hover { color: #d9c7ea; }
.footer-contact { display: grid; gap: 14px; font-size: 14px; }
.footer-contact a { text-transform: none; letter-spacing: 0; font-size: 15px; color: #fff; }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 12px; color: rgba(255, 255, 255, .5); }
.footer-legal p { margin: 0; max-width: 80ch; }
.footer-legal a:hover { color: #fff; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-row span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .8); }

/* ---------- Inner page hero ---------- */
.phero { padding: calc(var(--header-h) + clamp(56px, 8vw, 120px)) 0 clamp(56px, 7vw, 100px); position: relative; }
.phero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 6vw, 100px); align-items: end; }
.crumbs { display: flex; gap: 10px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--slate); margin-bottom: 28px; }
.crumbs a:hover { color: var(--purple); }
.crumbs span { color: var(--purple); }
.phero .h1 { font-size: clamp(44px, 6vw, 92px); }
.phero-media { margin-top: clamp(48px, 6vw, 80px); aspect-ratio: 21 / 9; border-radius: var(--radius-lg); overflow: hidden; }
.phero-media img { width: 100%; height: 120%; object-fit: cover; }

/* Service detail rows */
.srow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 120px); align-items: center; padding: clamp(64px, 8vw, 120px) 0; border-top: 1px solid var(--line); }
.srow:nth-of-type(even) .srow-media { order: 2; }
.srow-media { aspect-ratio: 4 / 5; border-radius: 999px 999px var(--radius-lg) var(--radius-lg); overflow: hidden; background: var(--lilac); }
.srow-media img { width: 100%; height: 100%; object-fit: cover; }
.srow .h2 { font-size: clamp(34px, 3.8vw, 58px); margin: 20px 0 22px; }
.ticks { list-style: none; margin: 28px 0 36px; padding: 0; border-top: 1px solid var(--line); }
.ticks li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
.ticks li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 10px; border-radius: 50%; background: var(--purple); }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.tier { padding: clamp(28px, 3vw, 44px); border-radius: var(--radius); background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; transition: transform .6s var(--ease), box-shadow .6s; }
.tier:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px var(--purple), 0 30px 60px -40px rgba(84, 36, 109, .45); }
.tier small { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--purple); }
.tier h3 { margin: 16px 0 12px; }
.tier p { color: var(--slate); margin: 0 0 22px; font-size: 15px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 8px; border-top: 1px solid var(--line-soft); }
.tier li { padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.tier--feature { background: var(--deep); color: rgba(255, 255, 255, .8); box-shadow: none; }
.tier--feature h3 { color: #fff; }
.tier--feature small { color: #d9c7ea; }
.tier--feature p { color: rgba(255, 255, 255, .72); }
.tier--feature li { border-color: rgba(255, 255, 255, .12); }

/* Journey pages */
.jpage { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 120px); padding: clamp(64px, 8vw, 120px) 0; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.jpage-media { position: sticky; top: 110px; align-self: start; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; }
.jpage-media img { width: 100%; height: 100%; object-fit: cover; }
.jpage .h2 { font-size: clamp(34px, 3.8vw, 58px); margin: 18px 0 22px; }
.voice { font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 1.7vw, 25px); color: var(--purple); border-left: 1px solid var(--purple); padding-left: 22px; margin: 28px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 30px 0 38px; }
.two-col h4 { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--purple); margin: 0 0 12px; font-weight: 500; }
.two-col ul { margin: 0; padding-left: 18px; color: var(--slate); font-size: 15px; }
.two-col li { margin-bottom: 6px; }
.jindex { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.jindex a { font-size: 13px; padding: 11px 18px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); transition: background .4s, color .4s, box-shadow .4s; }
.jindex a:hover { background: var(--purple); color: #fff; box-shadow: none; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.form { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 56px); box-shadow: inset 0 0 0 1px var(--line-soft), 0 40px 80px -60px rgba(84, 36, 109, .4); }
.fstep { border: 0; padding: 0; margin: 0 0 34px; }
.fstep legend { display: flex; gap: 14px; align-items: baseline; font-family: var(--f-display); font-size: 24px; color: var(--ink); margin-bottom: 18px; padding: 0; }
.fstep legend small { font-family: var(--f-body); font-size: 11px; letter-spacing: .22em; color: var(--purple); }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.field input, .field textarea, .field select { width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 12px 0; border-radius: 0; transition: border-color .4s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--purple); }
.field textarea { resize: vertical; min-height: 96px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips label { cursor: pointer; font-size: 14px; padding: 12px 18px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); transition: background .35s, color .35s, box-shadow .35s; user-select: none; }
.chips label:hover { box-shadow: inset 0 0 0 1px var(--purple); }
.chips input:checked + label { background: var(--purple); color: #fff; box-shadow: none; }
.chips input:focus-visible + label { outline: 2px solid var(--royal); outline-offset: 2px; }
.consent { display: flex; gap: 12px; font-size: 14px; color: var(--slate); margin: 8px 0 26px; align-items: flex-start; }
.consent input { margin-top: 5px; accent-color: var(--purple); width: 16px; height: 16px; }
.fit-note { font-size: 14px; color: var(--slate); background: var(--mist); border-radius: 14px; padding: 16px 20px; margin-bottom: 26px; }
.form-done { display: none; text-align: center; padding: 40px 10px; }
.form.is-done form { display: none; }
.form.is-done .form-done { display: block; }
.info-list { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--line); }
.info-list li { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.info-list small { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--purple); padding-top: 4px; }
.info-list a:hover { color: var(--purple); }

/* About */
.values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values div { padding: clamp(24px, 3vw, 40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .5s; }
.values div:hover { background: var(--mist); }
.values small { font-size: 11px; letter-spacing: .24em; color: var(--purple); }
.values b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 28px; color: var(--ink); margin: 12px 0 8px; }
.values span { font-size: 15px; color: var(--slate); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.timeline div { border-top: 1px solid var(--purple); padding-top: 22px; }
.timeline b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 44px; color: var(--purple); line-height: 1; margin-bottom: 12px; }


/* ==========================================================================
   Sub-page components (services, journeys, articles, legal)
   ========================================================================== */
.phero-voice { font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 1.8vw, 26px); color: var(--purple); margin: 0 0 22px; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.cards3 .scard { width: auto; }
.cards3 .scard-media { aspect-ratio: 4 / 3; }

.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
.voices blockquote { margin: 0; padding: 30px 0 0; border-top: 1px solid var(--purple); font-family: var(--f-display); font-size: clamp(21px, 1.8vw, 27px); line-height: 1.3; color: var(--ink); }
.voices blockquote::before { content: "“"; display: block; font-size: 64px; line-height: .6; color: var(--lilac); margin-bottom: 12px; }

.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 30px); counter-reset: s; }
.steps4 > div { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.steps4 > div::before { counter-increment: s; content: "0" counter(s); position: absolute; top: -1px; left: 0; padding-top: 12px; border-top: 1px solid var(--purple); width: 40px; font-size: 11px; letter-spacing: .22em; color: var(--purple); }
.steps4 h3 { font-family: var(--f-display); font-weight: 400; font-size: 23px; color: var(--ink); margin: 18px 0 8px; line-height: 1.2; }
.steps4 p { margin: 0; font-size: 15px; color: var(--slate); }

.scene { border-radius: var(--radius-lg); background: var(--deep); color: rgba(255,255,255,.8); padding: clamp(32px, 5vw, 72px); position: relative; overflow: hidden; }
.scene::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 100% 0%, rgba(122,53,157,.7), transparent 70%); }
.scene > * { position: relative; }
.scene .label { color: #d9c7ea; }
.scene h2 { font-family: var(--f-display); font-weight: 400; color: #fff; font-size: clamp(30px, 3.4vw, 50px); line-height: 1.1; margin: 20px 0 18px; max-width: 22ch; }
.scene > p { max-width: 62ch; font-size: 17px; margin: 0; }
.scene-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(36px, 4vw, 56px); }
.scene-phases div { border-top: 1px solid rgba(255,255,255,.22); padding-top: 20px; }
.scene-phases small { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: #d9c7ea; }
.scene-phases p { margin: 10px 0 0; font-size: 15px; }
.scene-note { margin-top: 30px !important; font-size: 13px !important; color: rgba(255,255,255,.55); }

.links-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.links-list a { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); position: relative; }
.links-list b { display: block; font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2.2vw, 32px); color: var(--ink); line-height: 1.2; transition: color .4s, transform .6s var(--ease); }
.links-list span { display: block; font-size: 15px; color: var(--slate); margin-top: 6px; }
.links-list a:hover b { color: var(--purple); transform: translateX(10px); }
.links-list .go { width: 50px; height: 50px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; transition: background .5s, color .5s; }
.links-list .go svg { width: 16px; height: 16px; transition: transform .6s var(--ease); }
.links-list a:hover .go { background: var(--purple); color: #fff; box-shadow: none; }
.links-list a:hover .go svg { transform: rotate(-45deg); }

.mini-founder { display: grid; grid-template-columns: 150px 1fr auto; gap: clamp(22px, 3vw, 44px); align-items: center; padding: clamp(24px, 3vw, 40px); border-radius: var(--radius-lg); background: var(--paper); box-shadow: inset 0 0 0 1px var(--line-soft); }
.mini-founder img { width: 150px; height: 170px; object-fit: cover; object-position: 50% 18%; border-radius: 999px 999px 16px 16px; filter: grayscale(1); transition: filter 1s var(--ease); }
.mini-founder:hover img { filter: none; }
.mini-founder p { margin: 10px 0 0; color: var(--slate); max-width: 60ch; }
.mini-founder h3 { margin-top: 12px; }

.scope-strip { display: grid; grid-template-columns: auto 1fr; gap: 20px 40px; align-items: start; padding: clamp(24px, 3vw, 36px); border-radius: var(--radius); background: var(--mist); }
.scope-strip ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.scope-strip li { font-size: 14px; padding: 8px 14px; border-radius: 999px; background: var(--paper); color: var(--charcoal); }
.scope-strip p { margin: 0; font-size: 14px; color: var(--slate); }

/* Article + legal prose */
.article-head { padding: calc(var(--header-h) + clamp(56px, 7vw, 110px)) 0 clamp(40px, 5vw, 64px); }
.article-head .wrap { max-width: 980px; }
.article-head .h1 { font-size: clamp(40px, 5vw, 76px); margin: 22px 0 26px; }
.byline { display: flex; align-items: center; gap: 16px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 14px; color: var(--slate); }
.byline img { width: 46px; height: 46px; border-radius: 50%; }
.byline b { display: block; color: var(--ink); font-weight: 500; }
.article-hero { max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.article-hero > div { aspect-ratio: 21 / 9; border-radius: var(--radius-lg); overflow: hidden; }
.article-hero img { width: 100%; height: 120%; object-fit: cover; }
.article-body { display: grid; grid-template-columns: 220px minmax(0, 720px); gap: clamp(40px, 6vw, 100px); justify-content: center; padding: clamp(56px, 7vw, 100px) var(--gutter); }
.toc { position: sticky; top: 110px; align-self: start; }
.toc p { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--purple); margin: 0 0 16px; }
.toc ol { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--line); }
.toc a { display: block; padding: 8px 0 8px 16px; font-size: 14px; color: var(--slate); margin-left: -1px; border-left: 1px solid transparent; transition: color .3s, border-color .3s; }
.toc a:hover, .toc a.on { color: var(--purple); border-color: var(--purple); }
.prose { font-size: 18px; line-height: 1.75; color: var(--charcoal); }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(28px, 2.6vw, 38px); line-height: 1.15; color: var(--ink); margin: 2em 0 .6em; scroll-margin-top: 100px; }
.prose h3 { font-family: var(--f-display); font-weight: 400; font-size: 24px; color: var(--ink); margin: 1.6em 0 .4em; }
.prose p { margin: 0 0 1.2em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.4em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--purple); }
.prose a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose blockquote { margin: 1.8em 0; padding: 4px 0 4px 26px; border-left: 1px solid var(--purple); font-family: var(--f-display); font-style: italic; font-size: clamp(22px, 2vw, 28px); line-height: 1.35; color: var(--purple); }
.prose .box { margin: 1.8em 0; padding: 28px 30px; border-radius: var(--radius); background: var(--mist); }
.prose .box h3 { margin-top: 0; }
.prose .box ul { list-style: none; padding: 0; margin: 0; }
.prose .box li { position: relative; padding-left: 32px; margin-bottom: .7em; }
.prose .box li::before { content: ""; position: absolute; left: 0; top: .35em; width: 16px; height: 16px; border-radius: 4px; box-shadow: inset 0 0 0 1.5px var(--purple); }
.prose .box--no li::before { box-shadow: none; border-radius: 0; background: linear-gradient(45deg, transparent 45%, var(--slate) 45%, var(--slate) 55%, transparent 55%), linear-gradient(-45deg, transparent 45%, var(--slate) 45%, var(--slate) 55%, transparent 55%); width: 12px; height: 12px; top: .45em; }
.prose .disclaimer { margin-top: 2.4em; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: var(--slate); }
.draft-note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 20px; border-radius: 14px; background: #FFF7E8; color: #6b4a12; font-size: 14px; margin-bottom: 2em; }
.legal h2 { font-size: clamp(24px, 2.2vw, 30px); }
.legal { font-size: 17px; }

.faq-cats { display: grid; gap: clamp(56px, 7vw, 96px); }
.faq-cat { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(32px, 6vw, 100px); align-items: start; scroll-margin-top: 100px; }
.faq-cat h2 { position: sticky; top: 110px; }

@media (max-width: 1023px) {
  .cards3, .voices { grid-template-columns: 1fr 1fr; }
  .steps4 { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .article-body { grid-template-columns: 1fr; }
  .toc { position: static; display: none; }
  .faq-cat { grid-template-columns: 1fr; }
  .faq-cat h2 { position: static; }
  .mini-founder { grid-template-columns: 110px 1fr; }
  .mini-founder img { width: 110px; height: 130px; }
  .mini-founder .link { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 760px) {
  .cards3, .voices, .steps4, .scene-phases { grid-template-columns: 1fr; }
  .scope-strip { grid-template-columns: 1fr; }
  .mini-founder { grid-template-columns: 1fr; }
  .article-hero > div { aspect-ratio: 4 / 3; }
  .prose { font-size: 17px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1023px) {
  :root { --header-h: 76px; }
  .side-tab { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .phero-grid, .why-grid, .founder, .journey-pin, .faq-grid, .contact-grid, .jpage, .srow { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; width: 100%; margin: 0 auto; }
  .hero-badge { left: 0; }
  .hero-scroll { display: none; }
  .why-grid .sticky, .journey-side, .jpage-media { position: static; }
  .jpage-media { aspect-ratio: 16/10; }
  .srow:nth-of-type(even) .srow-media { order: 0; }
  .srow-media { aspect-ratio: 16/12; border-radius: var(--radius-lg); }
  .founder-media { max-width: 520px; }
  .journey-steps { padding-left: 52px; }
  .jstep { opacity: 1; padding-bottom: 56px; }
  .jstep::before { left: -46px; }
  .journal { grid-template-columns: 1fr 1fr; }
  .journal .jcard:first-child { grid-column: 1 / -1; }
  .pillars { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .tiers, .values, .timeline { grid-template-columns: 1fr; }
  .hscroll { height: auto !important; }
  .hscroll-sticky { position: static; height: auto; padding: clamp(88px, 11vw, 140px) 0; }
  .hscroll-track { transform: none !important; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); padding-bottom: 12px; scrollbar-width: none; }
  .hscroll-track::-webkit-scrollbar { display: none; }
  .scard { scroll-snap-align: start; width: min(78vw, 360px); }
  .needs-cursor { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .brand img { height: 38px; }
  .header.is-scrolled .brand img { height: 34px; }
  .header-cta .icon-btn { display: none; }
  .panels, .bounds, .journal, .row2, .two-col, .creds { grid-template-columns: 1fr; }
  .creds li:nth-child(odd) { padding-right: 0; }
  .stages { grid-template-columns: 1fr; gap: 26px; text-align: left; }
  .stages::before, .stages-fill { left: 9px; right: auto; top: 10px; bottom: 10px; width: 1px; height: auto; }
  .stages-fill { transform: scaleY(var(--p, 0)); transform-origin: top; }
  .stage { grid-template-columns: 19px 1fr; justify-items: start; text-align: left; column-gap: 20px; row-gap: 2px; }
  .stage i { grid-row: span 3; }
  .stage b { margin-top: 0; }
  .needs a { grid-template-columns: 1fr auto; gap: 16px; }
  .needs .n { display: none; }
  .hscroll-count { display: none; }
  .needs .go { width: 46px; height: 46px; }
  .panel-over .play { width: 60px; height: 60px; }
  .why-list li { grid-template-columns: 56px 1fr; }
  .founder-sig { right: 12px; }
  .final-meta, .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .final-actions .btn { width: 100%; }
  .info-list li { grid-template-columns: 1fr; gap: 6px; }
  .float-wa { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .phero-media { aspect-ratio: 4/3; }
  .faq .ans > div { padding-right: 0; }
  .arch-note { flex-direction: column; gap: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .line > span, .split .w > span, [data-reveal], .hero-actions > *, .hero .lede, .hero .label, .hero-badge { transform: none !important; opacity: 1 !important; }
  .hero-arch, .img-reveal { clip-path: none !important; }
  .fill-text .fw { opacity: 1; }
  .jstep { opacity: 1; }
  .marquee-track { animation: none; }
  .page-veil { display: none; }
  .hero-ring path, .emblem svg path { stroke-dashoffset: 0; }
  .hscroll-sticky { position: static; height: auto; padding: clamp(88px, 11vw, 140px) 0; }
  .hscroll-track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; }
}
