/* ==========================================================================
   Hido Coach — design system
   Lavender / plum palette, generous space, soft motion.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Purples — deep to light */
  --plum-950: #1B0C27;
  --plum-900: #2A1338;
  --plum-800: #3B1B52;
  --purple-700: #4B2270;
  --purple-600: #572C87;   /* brand deep purple (logo) */
  --violet-500: #7A4FC0;
  --lavender-500: #9B7FE0; /* brand lavender */
  --lavender-400: #B39DE8;
  --lavender-300: #CFC0F2;
  --lavender-200: #E2D8F7;
  --lavender-100: #EDE7FA;
  --orchid: #8E3E9E;       /* wave accent, gradients only */
  --magenta: #A62E8C;      /* wave accent, gradients only */

  /* Neutrals */
  --mist: #F8F6FD;
  --paper: #FFFFFF;
  --ink: #241832;
  --ink-2: #4A3A5C;
  --ink-3: #71657F;
  --grey: #8A8894;
  --line: #E8E1F4;

  /* Type */
  --display: 'Poppins', 'Century Gothic', 'Avenir Next', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Space & shape */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Shadows — soft, lavender-tinted, never harsh */
  --shadow-sm: 0 2px 10px rgba(59, 27, 82, .05);
  --shadow: 0 14px 40px -18px rgba(59, 27, 82, .22);
  --shadow-lg: 0 40px 90px -40px rgba(59, 27, 82, .38);
  --shadow-glow: 0 20px 60px -22px rgba(122, 79, 192, .5);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------- reset */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--purple-600); text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .6em;
  font-weight: 600;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--lavender-300); color: var(--plum-900); }

:focus-visible {
  outline: 3px solid var(--lavender-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------- layout */

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell-wide { width: min(100% - (var(--gutter) * 2), 1420px); margin-inline: auto; }
.shell-narrow { width: min(100% - (var(--gutter) * 2), 780px); margin-inline: auto; }

section { position: relative; }
.band { padding: clamp(72px, 10vw, 140px) 0; }
.band-tight { padding: clamp(52px, 7vw, 92px) 0; }
.band-mist { background: var(--mist); }
.band-lav {
  background: linear-gradient(180deg, var(--paper) 0%, var(--lavender-100) 45%, var(--mist) 100%);
}

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.split-40 { grid-template-columns: .78fr 1fr; }

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-tight { max-width: 48ch; }
.center .measure, .center .measure-tight { margin-inline: auto; }
.stack-sm > * + * { margin-top: 14px; }
.mt-l { margin-top: clamp(34px, 5vw, 60px); }

/* --------------------------------------------------------------- type bits */

.eyebrow {
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--violet-500);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.center .eyebrow { justify-content: center; }
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--lavender-400);
  border-radius: 2px;
}
.on-dark .eyebrow { color: var(--lavender-300); }
.on-dark .eyebrow::before { background: var(--lavender-400); }

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.7;
  color: var(--ink-2);
}
.on-dark .lead { color: rgba(255, 255, 255, .82); }

.on-dark { color: rgba(255, 255, 255, .8); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }

.underline-soft {
  background-image: linear-gradient(var(--lavender-300), var(--lavender-300));
  background-size: 100% .35em;
  background-position: 0 88%;
  background-repeat: no-repeat;
}
em.warm { font-style: normal; color: var(--violet-500); }

/* --------------------------------------------------------------- aurora */
/* The flowing plum → orchid → lavender ribbons used behind hero sections
   and the footer. Injected by js/main.js into [data-aurora] elements. */

.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(115deg, var(--plum-900) 0%, var(--plum-800) 32%, var(--orchid) 68%, var(--violet-500) 100%);
}
.aurora svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.aurora .ribbons { animation: drift 34s var(--ease-soft) infinite alternate; transform-origin: 50% 60%; }
.aurora .glow-a { animation: float-a 26s ease-in-out infinite alternate; }
.aurora .glow-b { animation: float-b 32s ease-in-out infinite alternate; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3%, -2%, 0) scale(1.07); }
}
@keyframes float-a {
  from { transform: translate(0, 0); }
  to   { transform: translate(6%, -5%); }
}
@keyframes float-b {
  from { transform: translate(0, 0); }
  to   { transform: translate(-7%, 4%); }
}

.aurora-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 20% 20%, rgba(27, 12, 39, .5), transparent 60%);
  z-index: 1;
}

/* Soft lavender mesh for light sections */
.mesh { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.mesh::before, .mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
}
.mesh::before {
  width: 46vw; height: 46vw;
  background: var(--lavender-200);
  top: -14vw; right: -10vw;
}
.mesh::after {
  width: 38vw; height: 38vw;
  background: #F0E4F6;
  bottom: -16vw; left: -12vw;
}
.band > .shell, .band > .shell-wide, .band > .shell-narrow { position: relative; z-index: 1; }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-size: .97rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--purple-600), var(--violet-500) 70%, var(--lavender-500));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { box-shadow: 0 26px 60px -20px rgba(122, 79, 192, .62); }

.btn-ghost {
  border-color: var(--lavender-300);
  color: var(--purple-600);
  background: rgba(255, 255, 255, .6);
}
.btn-ghost:hover { border-color: var(--lavender-500); background: #fff; }

.btn-light { background: #fff; color: var(--purple-600); box-shadow: var(--shadow); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }

.btn-sm { padding: 11px 22px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

.link-arrow {
  font-family: var(--display);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-600);
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* --------------------------------------------------------------- header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(59, 27, 82, .3);
  padding: 8px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: block; flex-shrink: 0; }
.brand img { height: 52px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img { height: 44px; }
.brand .logo-light { display: block; }
.brand .logo-dark { display: none; }
.site-header.scrolled .brand .logo-light,
.site-header.solid .brand .logo-light { display: none; }
.site-header.scrolled .brand .logo-dark,
.site-header.solid .brand .logo-dark { display: block; }

.site-header.solid {
  position: sticky;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-links { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 20px); }
.nav-links a {
  font-family: var(--display);
  font-size: .93rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .88);
  padding: 9px 4px;
  position: relative;
  transition: color .3s var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { transform: scaleX(1); }
.nav-links a[aria-current='page'] { font-weight: 500; }
.site-header.scrolled .nav-links a,
.site-header.solid .nav-links a { color: var(--ink-2); }
.site-header.scrolled .nav-links a:hover,
.site-header.solid .nav-links a:hover { color: var(--purple-600); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn-outline-light { border-color: rgba(255, 255, 255, .4); }
.site-header.scrolled .nav-actions .btn-outline-light,
.site-header.solid .nav-actions .btn-outline-light {
  border-color: var(--lavender-300);
  color: var(--purple-600);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.site-header.scrolled .nav-toggle, .site-header.solid .nav-toggle {
  border-color: var(--lavender-300);
  background: #fff;
}
.nav-toggle i {
  display: block;
  width: 18px; height: 1.6px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: background .3s;
}
.site-header.scrolled .nav-toggle i, .site-header.solid .nav-toggle i { background: var(--ink); }
.nav-toggle i::before, .nav-toggle i::after {
  content: '';
  position: absolute;
  left: 0; width: 18px; height: 1.6px;
  background: inherit;
  border-radius: 2px;
  transition: transform .35s var(--ease);
}
.nav-toggle i::before { top: -6px; }
.nav-toggle i::after { top: 6px; }
.nav-open .nav-toggle i { background: transparent; }
.nav-open .nav-toggle i::before { transform: translateY(6px) rotate(45deg); background: var(--ink); }
.nav-open .nav-toggle i::after { transform: translateY(-6px) rotate(-45deg); background: var(--ink); }

/* --------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-sm { min-height: auto; padding: clamp(150px, 20vh, 210px) 0 clamp(80px, 10vw, 120px); }
.hero > .shell, .hero > .shell-wide { position: relative; z-index: 3; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 { color: #fff; text-wrap: balance; }
.hero h1 .soft { color: var(--lavender-300); }

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .84rem;
  font-family: var(--display);
  margin-bottom: 26px;
}
.hero-note b {
  background: var(--lavender-400);
  color: var(--plum-900);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--display);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 42px;
  background: linear-gradient(rgba(255, 255, 255, .7), transparent);
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { opacity: .25; transform: scaleY(.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* --------------------------------------------------------------- cards */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lavender-200); }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--ink-3); font-size: .97rem; }

.card-glass {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, .82);
}
.card-glass:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); }
.card-glass h3, .card-glass h4 { color: #fff; }
.card-glass p { color: rgba(255, 255, 255, .74); }

.icon-badge {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(140deg, var(--lavender-100), var(--lavender-200));
  color: var(--purple-600);
  flex-shrink: 0;
}
.icon-badge svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-glass .icon-badge { background: rgba(255, 255, 255, .14); color: #fff; }

.step-no {
  font-family: var(--display);
  font-size: 3.1rem;
  font-weight: 300;
  color: var(--lavender-300);
  line-height: 1;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------- reveal */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay='1'] { transition-delay: .1s; }
.reveal[data-delay='2'] { transition-delay: .2s; }
.reveal[data-delay='3'] { transition-delay: .3s; }
.reveal[data-delay='4'] { transition-delay: .4s; }
.reveal[data-delay='5'] { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .aurora .ribbons, .aurora .glow-a, .aurora .glow-b,
  .scroll-cue::after, .breath-ring { animation: none !important; }
  * { transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------- footer */

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .74);
  padding: clamp(64px, 8vw, 104px) 0 30px;
  isolation: isolate;
}
.site-footer > .shell { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  gap: clamp(34px, 5vw, 70px);
}
.footer-brand img { height: 122px; width: auto; margin-bottom: 26px; }
.footer-brand p { font-size: .97rem; max-width: 38ch; color: rgba(255, 255, 255, .72); }

.footer-title {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 30px;
  position: relative;
  padding-bottom: 14px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 68px; height: 2px;
  background: rgba(255, 255, 255, .55);
}

.contact-item { display: flex; gap: 15px; margin-bottom: 26px; }
.contact-item svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 5px; stroke: rgba(255,255,255,.8); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-item .big {
  display: block;
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
}
.contact-item a.big:hover { color: var(--lavender-300); }
.contact-item small { color: rgba(255, 255, 255, .55); font-size: .87rem; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: rgba(255, 255, 255, .82);
  font-size: 1.02rem;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.footer-links a:hover { color: #fff; padding-left: 6px; }

.footer-crisis {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .17);
  backdrop-filter: blur(10px);
  font-size: .93rem;
  line-height: 1.65;
}
.footer-crisis strong { color: #fff; font-family: var(--display); font-weight: 500; }
.footer-crisis a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-base {
  margin-top: clamp(34px, 4vw, 54px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
  font-size: .87rem;
  color: rgba(255, 255, 255, .6);
}
.footer-base a { color: rgba(255, 255, 255, .7); }
.footer-base a:hover { color: #fff; }
.footer-base .sep { opacity: .35; }
.footer-social { margin-left: auto; display: flex; gap: 16px; }
.footer-social a { display: grid; place-items: center; width: 24px; height: 24px; }
.footer-social svg { width: 20px; height: 20px; fill: rgba(255, 255, 255, .72); transition: fill .3s; }
.footer-social a:hover svg { fill: #fff; }

.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .4s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--purple-600); }
.to-top svg { width: 19px; height: 19px; stroke: var(--purple-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.to-top:hover svg { stroke: #fff; }

/* --------------------------------------------------------------- forms */

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .hint { display: block; font-size: .82rem; color: var(--ink-3); font-weight: 400; margin-top: 3px; }

.input, select.input, textarea.input {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  appearance: none;
}
textarea.input { min-height: 148px; resize: vertical; line-height: 1.6; }
select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23572C87' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 17px;
  padding-right: 46px;
}
.input:focus {
  outline: none;
  border-color: var(--lavender-500);
  box-shadow: 0 0 0 4px rgba(155, 127, 224, .16);
}
.input::placeholder { color: #A9A1B6; }
.field.err .input { border-color: #C9527B; }
.field .err-msg { display: none; color: #B0416A; font-size: .85rem; margin-top: 7px; }
.field.err .err-msg { display: block; }

.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice {
  position: relative;
  cursor: pointer;
}
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span {
  display: block;
  padding: 11px 20px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: .92rem;
  font-family: var(--display);
  transition: all .3s var(--ease);
  background: #fff;
}
.choice input:checked + span {
  border-color: var(--purple-600);
  background: var(--lavender-100);
  color: var(--purple-600);
  font-weight: 500;
}
.choice input:focus-visible + span { outline: 3px solid var(--lavender-500); outline-offset: 2px; }

.check { display: flex; gap: 13px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--purple-600); flex-shrink: 0; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-note {
  font-size: .87rem;
  color: var(--ink-3);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
}
.form-note svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; stroke: var(--lavender-500); fill: none; stroke-width: 1.7; }

.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: .94rem;
  margin-bottom: 20px;
}
.form-status.show { display: block; }
.form-status.ok { background: #EDF7F0; color: #24614A; border: 1px solid #C9E4D5; }
.form-status.bad { background: #FBEFF3; color: #8E3357; border: 1px solid #F0D3DE; }

/* --------------------------------------------------------------- misc ui */

.pill {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--lavender-100);
  color: var(--purple-600);
}

.quiet-list { list-style: none; margin: 0; padding: 0; }
.quiet-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.quiet-list li:last-child { border-bottom: 0; }
.quiet-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; stroke: var(--lavender-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.on-dark .quiet-list li { border-color: rgba(255, 255, 255, .15); }
.on-dark .quiet-list svg { stroke: var(--lavender-300); }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--purple-600);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.03em;
}
.on-dark .stat b { color: #fff; }
.stat span { font-size: .92rem; color: var(--ink-3); }
.on-dark .stat span { color: rgba(255, 255, 255, .68); }

.divider-wave { display: block; width: 100%; height: auto; }

/* Breathing widget */
.breath {
  display: grid;
  place-items: center;
  gap: 22px;
  text-align: center;
}
.breath-stage {
  width: min(260px, 62vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}
.breath-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 157, 232, .5), rgba(155, 127, 224, .12) 62%, transparent 72%);
  animation: breathe 19s var(--ease-soft) infinite;
}
.breath-ring.r2 { animation-delay: -1.4s; opacity: .55; }
.breath-core {
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(140deg, #fff, var(--lavender-200));
  box-shadow: 0 18px 50px -18px rgba(87, 44, 135, .5);
  animation: breathe 19s var(--ease-soft) infinite;
  position: relative;
  z-index: 1;
}
@keyframes breathe {
  0%    { transform: scale(.74); }
  21%   { transform: scale(1); }
  42%   { transform: scale(1); }
  68%   { transform: scale(.74); }
  100%  { transform: scale(.74); }
}
.breath-word {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple-600);
  min-height: 1.6em;
}
.on-dark .breath-word { color: #fff; }

/* --------------------------------------------------------------- responsive */

@media (max-width: 1120px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: grid; }
  .site-header .nav-actions .btn-primary { display: none; }

  .nav-drawer {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    background: #fff;
    padding: 100px var(--gutter) 40px;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    box-shadow: var(--shadow-lg);
    z-index: 99;
    max-height: 100svh;
    overflow-y: auto;
  }
  .nav-open .nav-drawer { transform: none; }
  .nav-drawer a {
    display: block;
    font-family: var(--display);
    font-size: 1.32rem;
    color: var(--ink);
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer a[aria-current='page'] { color: var(--purple-600); }
  .nav-drawer .btn { margin-top: 26px; }
  .nav-open .site-header { background: #fff; }
  .nav-open .site-header .brand .logo-light { display: none; }
  .nav-open .site-header .brand .logo-dark { display: block; }
}
@media (min-width: 1121px) { .nav-drawer { display: none; } }

@media (max-width: 980px) {
  .hero-grid, .split, .split-40 { grid-template-columns: 1fr; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; padding: 130px 0 80px; }
  .split .media-first { order: -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 15px 26px; }
  .btn-row .btn { width: 100%; }
  .to-top { right: 16px; bottom: 16px; }
}

/* ==========================================================================
   Components
   ========================================================================== */

/* --------------------------------------------------------- hero extras */

.hero-facts {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-family: var(--display);
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
}
.hero-facts li { display: flex; align-items: center; gap: 10px; }
.hero-facts li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lavender-300);
}

.glass-panel {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(20px) saturate(1.4);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 40px 90px -50px rgba(11, 4, 20, .9);
}
.glass-eyebrow {
  font-family: var(--display);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lavender-300);
  margin: 0;
}
.glass-small {
  font-size: .88rem;
  color: rgba(255, 255, 255, .68);
  margin: 0;
  line-height: 1.7;
}

/* --------------------------------------------------------- section head */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- steps */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 34px);
  counter-reset: step;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step h3 { font-size: 1.18rem; margin-bottom: .45em; }
.step p { font-size: .95rem; color: var(--ink-3); margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- note card */

.note-card {
  background: linear-gradient(155deg, var(--plum-800), var(--purple-700) 55%, var(--violet-500));
  color: rgba(255, 255, 255, .8);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.note-card::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 70%);
  top: -90px; right: -70px;
}
.note-card h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 500; }
.note-card .pill { background: rgba(255, 255, 255, .16); color: #fff; margin-bottom: 18px; }
.note-card .link-arrow { color: #fff; margin-top: 6px; display: inline-flex; }

/* --------------------------------------------------------- tier minis */

.tier-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tier-mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier-mini.featured { border-color: var(--lavender-400); box-shadow: var(--shadow); }
.tier-mini h3 { font-size: 1.3rem; margin: 16px 0 .5em; }
.tier-mini p { font-size: .95rem; color: var(--ink-3); margin-bottom: 20px; }

.tier-chip {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
}
.tier-chip.bronze { background: linear-gradient(120deg, #A9764B, #C89A6B); }
.tier-chip.silver { background: linear-gradient(120deg, #7C7A88, #A9A7B4); }
.tier-chip.gold   { background: linear-gradient(120deg, #B08628, #DDB65A); }

/* --------------------------------------------------------- testimonials */

.t-stage {
  position: relative;
  min-height: 250px;
  display: grid;
}
.t-slide {
  margin: 0;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  pointer-events: none;
}
.t-slide.on { opacity: 1; transform: none; pointer-events: auto; }
.t-slide blockquote {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -.015em;
}
.t-slide blockquote::before {
  content: '“';
  display: block;
  font-size: 3.4rem;
  line-height: .6;
  color: var(--lavender-300);
  margin-bottom: 18px;
}
.t-slide figcaption {
  font-family: var(--display);
  font-size: .92rem;
  color: var(--violet-500);
  letter-spacing: .04em;
}
.on-dark .t-slide blockquote { color: #fff; }
.on-dark .t-slide figcaption { color: var(--lavender-300); }

.t-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 12px; }
.t-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.t-arrow:hover { border-color: var(--lavender-500); background: var(--lavender-100); }
.t-arrow svg { width: 18px; height: 18px; stroke: var(--purple-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.t-dots { display: flex; gap: 9px; }
.t-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--lavender-300);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.t-dot.on { background: var(--purple-600); width: 26px; border-radius: 100px; }

/* --------------------------------------------------------- resource chips */

.res-preview { display: flex; flex-direction: column; gap: 12px; }
.res-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 15px 26px;
  font-family: var(--display);
  font-size: .96rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.res-chip:nth-child(even) { margin-left: clamp(0px, 5vw, 46px); }
.res-chip:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.res-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple-600); flex-shrink: 0; }
.res-chip .dot.lav { background: var(--lavender-400); }

/* --------------------------------------------------------- cta band */

.cta-band { overflow: hidden; isolation: isolate; padding: clamp(80px, 10vw, 140px) 0; }
.cta-band > .shell, .cta-band > .shell-narrow { position: relative; z-index: 2; }

/* ==========================================================================
   Page components
   ========================================================================== */

.page-head { max-width: 820px; }
.footnote { font-size: .84rem; color: var(--ink-3); margin-top: 26px; }
.on-dark .footnote { color: rgba(255, 255, 255, .55); }
.footnote em { font-style: normal; opacity: .8; }
.small { font-size: .88rem; color: var(--ink-3); }
.mt-sm { margin-top: 16px; }
.req { color: var(--violet-500); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.line-big {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .5em;
}
.on-dark .line-big, .on-dark .line-big a { color: #fff; }
.line-big a { color: var(--purple-600); }

/* --------------------------------------------------------- quote block */

.quote-block {
  margin: 0;
  background: linear-gradient(155deg, var(--lavender-100), var(--lavender-200));
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '“';
  font-family: var(--display);
  font-size: 7rem;
  line-height: .7;
  color: var(--lavender-400);
  display: block;
  margin-bottom: 10px;
}
.quote-block blockquote {
  margin: 0 0 20px;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: var(--plum-900);
  letter-spacing: -.015em;
}
.quote-block figcaption {
  font-family: var(--display);
  font-size: .88rem;
  color: var(--purple-600);
  letter-spacing: .05em;
}

.mark-inline { width: 62px; height: 62px; margin-bottom: 20px; }

/* --------------------------------------------------------- dark bands */

.context-band, .approach-band, .outcomes-band, .helplines {
  overflow: hidden;
  isolation: isolate;
}
.context-band > .shell, .approach-band > .shell,
.outcomes-band > .shell, .helplines > .shell { position: relative; z-index: 2; }

/* --------------------------------------------------------- values */

.value-grid { gap: clamp(24px, 3vw, 44px); }
.value { display: flex; gap: 22px; align-items: flex-start; }
.value-no {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--lavender-400);
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
}
.value h3 { margin-bottom: .45em; }
.value p { color: var(--ink-3); margin: 0; font-size: .98rem; }

/* --------------------------------------------------------- portrait */

.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--lavender-200), var(--lavender-100) 55%, #F3E9F7);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.portrait img { width: 96px; height: 96px; opacity: .3; }
.portrait span {
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet-500);
  opacity: .7;
}

/* --------------------------------------------------------- timeline */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 34px;
  position: relative;
  max-width: 780px;
  margin-inline: auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--lavender-300), var(--lavender-200), transparent);
}
.timeline li { position: relative; padding-bottom: 42px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -34px; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--lavender-400);
}
.t-year {
  display: inline-block;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-500);
  margin-bottom: 8px;
}
.timeline h3 { font-size: 1.24rem; margin-bottom: .4em; }
.timeline p { color: var(--ink-3); margin: 0; font-size: .98rem; }

/* --------------------------------------------------------- credentials */

.cred { text-align: left; }
.cred .icon-badge { width: 52px; height: 52px; border-radius: 15px; margin-bottom: 16px; }
.cred .icon-badge svg { width: 23px; height: 23px; }
.cred h4 { margin-bottom: .4em; font-size: 1.02rem; }
.cred p { font-size: .9rem; color: var(--ink-3); margin: 0; }

/* --------------------------------------------------------- compare cols */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.compare-col h4 {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-500);
  margin-bottom: 14px;
}
.compare-col.no h4 { color: var(--grey); }
.compare-col.no svg { stroke: var(--grey); }
.compare-col .quiet-list li { font-size: .93rem; padding: 9px 0; }
@media (max-width: 560px) { .compare { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- accordion */

.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.acc-item.open { border-color: var(--lavender-300); box-shadow: var(--shadow); }
.acc-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 500;
  color: var(--ink);
  padding: 21px 60px 21px 26px;
  position: relative;
  line-height: 1.4;
}
.acc-i {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
}
.acc-i::before, .acc-i::after {
  content: '';
  position: absolute;
  background: var(--purple-600);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.acc-i::before { left: 0; top: 6.7px; width: 15px; height: 1.8px; }
.acc-i::after { left: 6.6px; top: 0; width: 1.8px; height: 15px; }
.acc-item.open .acc-i::after { transform: rotate(90deg); opacity: 0; }
.acc-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.acc-item.open .acc-a { grid-template-rows: 1fr; }
.acc-a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
  color: var(--ink-3);
  font-size: .97rem;
  transition: padding .45s var(--ease);
}
.acc-item.open .acc-a > p { padding: 0 26px 24px; }

/* --------------------------------------------------------- pricing tiers */

.tier-grid { align-items: stretch; }
.tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier.featured {
  border-color: var(--lavender-400);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff, var(--mist));
}
.tier-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--purple-600), var(--violet-500));
  color: #fff;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 7px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.tier-name { font-size: 1.65rem; margin: 16px 0 .4em; font-weight: 500; }
.tier-line { color: var(--ink-3); font-size: .95rem; min-height: 4.2em; }
.tier-price {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 18px 0 6px;
}
.tier-price .cur { font-size: 1.6rem; vertical-align: super; margin-right: 2px; }
.tier-price small { font-size: .95rem; color: var(--ink-3); font-weight: 400; letter-spacing: 0; }
.tier-sub { font-size: .86rem; color: var(--ink-3); margin-bottom: 26px; }
.tier .quiet-list { margin-bottom: 30px; flex: 1; }
.tier .quiet-list li { font-size: .94rem; }
.tier .quiet-list b { font-weight: 600; color: var(--ink); }

/* --------------------------------------------------------- compare table */

.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 700px; font-size: .95rem; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; }
.compare-table thead th { background: var(--lavender-100); }
.compare-table tbody th {
  text-align: left;
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink);
}
.compare-table tbody tr { border-top: 1px solid var(--line); }
.compare-table tbody tr:nth-child(even) { background: #FCFAFF; }
.compare-table td { color: var(--ink-3); }
.compare-table td.y { color: var(--purple-600); font-weight: 500; }
.compare-table td.n { color: #C4BCCE; }
.compare-table td b { color: var(--ink); font-size: 1.1rem; font-family: var(--display); }

/* --------------------------------------------------------- filters */

.filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter {
  font-family: var(--display);
  font-size: .92rem;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--lavender-400); }
.filter.on {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: #fff;
}

/* --------------------------------------------------------- resource cards */

.res-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.res-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.res-kind {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-500);
}
.res-card h3 { font-size: 1.22rem; margin: 14px 0 .5em; }
.res-card p { color: var(--ink-3); font-size: .95rem; flex: 1; margin-bottom: 20px; }
.res-card.locked { background: linear-gradient(180deg, #fff, var(--lavender-100)); }
.res-card.locked .res-kind { color: var(--grey); }
.res-card.locked h3::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-left: 9px;
  background: currentColor;
  opacity: .35;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 11h14v10H5zM8 11V7a4 4 0 0 1 8 0v4' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 11h14v10H5zM8 11V7a4 4 0 0 1 8 0v4' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.breath-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.member-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
  background: linear-gradient(150deg, var(--plum-800), var(--purple-700) 60%, var(--violet-500));
  color: rgba(255, 255, 255, .8);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
}
.member-prompt h2 { color: #fff; margin-bottom: .4em; }
.member-prompt .eyebrow { color: var(--lavender-300); }
.member-prompt .eyebrow::before { background: var(--lavender-400); }
.member-prompt .lead { color: rgba(255, 255, 255, .8); max-width: 46ch; }
.member-prompt .btn-ghost { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .4); color: #fff; }
.member-prompt .btn-primary { background: #fff; color: var(--purple-600); box-shadow: none; }

/* --------------------------------------------------------- testimonial wall */

.t-wall { columns: 3; column-gap: clamp(20px, 3vw, 30px); }
.t-card {
  break-inside: avoid;
  margin: 0 0 clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.t-card blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--ink-2);
}
.t-card blockquote::before {
  content: '“';
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: .55;
  color: var(--lavender-300);
  display: block;
  margin-bottom: 16px;
}
.t-card figcaption { font-family: var(--display); font-size: .9rem; }
.t-card figcaption b { display: block; color: var(--ink); font-weight: 500; }
.t-card figcaption span { color: var(--violet-500); font-size: .84rem; }
@media (max-width: 980px) { .t-wall { columns: 2; } }
@media (max-width: 620px) { .t-wall { columns: 1; } }

/* --------------------------------------------------------- enquiry */

.enquire-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: var(--shadow);
}
.enquire-aside { display: flex; flex-direction: column; gap: 20px; }
.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.aside-card h3 { font-size: 1.16rem; margin-bottom: .6em; }
.aside-card p { font-size: .94rem; color: var(--ink-3); }
.aside-card.quiet { background: var(--lavender-100); border-color: var(--lavender-200); }
.aside-card.urgent {
  background: linear-gradient(150deg, var(--plum-800), var(--purple-700));
  border: 0;
  color: rgba(255, 255, 255, .82);
}
.aside-card.urgent h3 { color: #fff; }
.aside-card.urgent p { color: rgba(255, 255, 255, .8); }
.aside-card.urgent a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.aside-card.urgent .small { color: rgba(255, 255, 255, .6); }

.mini-steps { list-style: none; margin: 0; padding: 0; counter-reset: mini; }
.mini-steps li {
  counter-increment: mini;
  position: relative;
  padding: 0 0 22px 42px;
}
.mini-steps li:last-child { padding-bottom: 0; }
.mini-steps li::before {
  content: counter(mini);
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--purple-600);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.mini-steps b { display: block; font-family: var(--display); font-weight: 500; color: var(--ink); font-size: .98rem; }
.mini-steps span { font-size: .9rem; color: var(--ink-3); }

@media (max-width: 900px) { .enquire-grid { grid-template-columns: 1fr; } }


/* ==========================================================================
   Landing page
   ========================================================================== */

/* Bare header — logo, one way back, one call to action. */
.site-header.bare .nav-actions { gap: 20px; }
.bare-link {
  font-family: var(--display);
  font-size: .93rem;
  color: rgba(255, 255, 255, .8);
  transition: color .3s var(--ease);
  white-space: nowrap;
}
.bare-link:hover { color: #fff; }
.site-header.bare.scrolled .bare-link { color: var(--ink-2); }
.site-header.bare.scrolled .bare-link:hover { color: var(--purple-600); }

.landing-hero { padding: clamp(130px, 15vh, 170px) 0 clamp(70px, 8vw, 110px); min-height: 0; }
.landing-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.landing-hero h1 { font-size: clamp(1.95rem, 3.6vw, 2.9rem); }
.landing-list { margin-top: 30px; }
.landing-list li { border-color: rgba(255, 255, 255, .15); font-size: .96rem; }
.landing-list svg { stroke: var(--lavender-300); }
.landing-list b { color: #fff; font-weight: 500; }
.landing-list span { color: rgba(255, 255, 255, .78); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 30px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .62);
}
.trust-row b { color: #fff; font-family: var(--display); font-weight: 500; }

/* The signup card — the whole point of the page. */
.signup-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 50px 100px -40px rgba(11, 4, 20, .75);
  scroll-margin-top: 110px;
}
.signup-title { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin: 10px 0 22px; font-weight: 500; }
.signup-card .glass-eyebrow { color: var(--violet-500); }
.signup-card .field { margin-bottom: 18px; }
.signup-card .form-note { margin-top: 16px; }

/* Checkbox options that look like choices, not a compliance form. */
.opt-list { display: grid; gap: 9px; }
.opt { position: relative; cursor: pointer; display: block; }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt-body {
  display: block;
  padding: 13px 16px 13px 46px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
}
.opt-body::before {
  content: '';
  position: absolute;
  left: 15px; top: 15px;
  width: 19px; height: 19px;
  border: 1.5px solid var(--lavender-400);
  border-radius: 6px;
  background: #fff;
  transition: all .25s var(--ease);
}
.opt-body::after {
  content: '';
  position: absolute;
  left: 20px; top: 19px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(.4);
  opacity: 0;
  transition: all .25s var(--ease);
}
.opt input:checked + .opt-body { border-color: var(--purple-600); background: var(--lavender-100); }
.opt input:checked + .opt-body::before { background: var(--purple-600); border-color: var(--purple-600); }
.opt input:checked + .opt-body::after { opacity: 1; transform: rotate(-45deg) scale(1); }
.opt input:focus-visible + .opt-body { outline: 3px solid var(--lavender-500); outline-offset: 2px; }
.opt-body b { display: block; font-family: var(--display); font-weight: 500; color: var(--ink); font-size: .97rem; }
.opt-body small { display: block; color: var(--ink-3); font-size: .85rem; line-height: 1.5; margin-top: 1px; }

/* Confirmation state. */
.signup-done { text-align: center; padding: 10px 0; }
.done-tick {
  width: 66px; height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--purple-600), var(--violet-500));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
}
.done-tick svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.signup-done p { color: var(--ink-3); font-size: .97rem; }

.svc-price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.03em;
  margin: 0 0 12px;
}
.svc-price small { font-size: .9rem; color: var(--ink-3); font-weight: 400; letter-spacing: 0; }

.proof-band { overflow: hidden; isolation: isolate; }
.proof-band > .shell-narrow { position: relative; z-index: 2; }
.landing-stats { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 980px) {
  /* Tighter, so the form is a single swipe away rather than two. */
  .landing-hero { padding-top: clamp(104px, 13vh, 130px); }
  .landing-grid { grid-template-columns: 1fr; gap: 34px; }
  .landing-list { margin-top: 22px; }
  .landing-list li { padding: 9px 0; }
  .trust-row { margin-top: 22px; }
  .landing-stats { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 620px) {
  .site-header.bare .bare-link { display: none; }
}

/* ==========================================================================
   Resource articles
   ========================================================================== */

.prose { font-size: 1.06rem; line-height: 1.78; }
.prose > * { position: relative; z-index: 1; }
.prose h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  margin: 2em 0 .6em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-bottom: .4em; }
.prose p { margin-bottom: 1.15em; }
.prose > .quiet-list { margin: 1.6em 0 2em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.numbered {
  list-style: none;
  margin: 2em 0;
  padding: 0;
  counter-reset: step;
}
.numbered > li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.8em 62px;
}
.numbered > li:last-child { padding-bottom: 0; }
.numbered > li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: -2px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--lavender-100), var(--lavender-200));
  color: var(--purple-600);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  display: grid;
  place-items: center;
}
.numbered p { margin: 0; color: var(--ink-2); }

.callout {
  background: linear-gradient(150deg, var(--lavender-100), var(--lavender-200));
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  margin: 2.2em 0;
}
.callout h3 { margin-bottom: .5em; color: var(--plum-900); }
.callout p { margin-bottom: .8em; color: var(--ink-2); }
.callout p:last-child { margin-bottom: 0; }

.say-block {
  margin: 1.4em 0 1.8em;
  border-left: 3px solid var(--lavender-400);
  padding-left: clamp(18px, 3vw, 28px);
}
.say-block p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.55;
  color: var(--plum-900);
  margin-bottom: .85em;
}
.say-block p:last-child { margin-bottom: 0; }

.pile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1.8em 0 2.2em;
}
.pile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.pile-mark {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}
.pile-mark.mine { background: linear-gradient(140deg, var(--purple-600), var(--violet-500)); }
.pile-mark.theirs { background: linear-gradient(140deg, var(--lavender-500), var(--lavender-400)); }
.pile-mark.weather { background: linear-gradient(140deg, #8A8894, #ABA9B4); }
.pile h3 { font-size: 1.02rem; margin-bottom: .35em; }
.pile p { font-size: .89rem; color: var(--ink-3); margin: 0; line-height: 1.6; }
@media (max-width: 620px) { .pile-grid { grid-template-columns: 1fr; } }

.crisis-inline {
  margin: 2.2em 0 0;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--mist);
  border: 1px solid var(--lavender-200);
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.crisis-inline strong { color: var(--plum-900); font-family: var(--display); font-weight: 500; }

.res-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2.6em 0 0;
}
.res-next-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  text-decoration: none;
}
.res-next-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--lavender-300); }
.res-next-card span {
  display: block;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-500);
  margin-bottom: 8px;
}
.res-next-card b { display: block; font-family: var(--display); font-weight: 500; color: var(--ink); font-size: 1.04rem; margin-bottom: 3px; }
.res-next-card small { display: block; color: var(--ink-3); font-size: .87rem; line-height: 1.5; }
@media (max-width: 620px) { .res-next { grid-template-columns: 1fr; } }

.big-breath { max-width: 560px; margin-inline: auto; text-align: center; }
.big-breath .breath-stage { width: min(320px, 70vw); margin-inline: auto; }

/* ==========================================================================
   Single session (pricing)
   ========================================================================== */

.single-band { padding-top: 0; }
.single-session {
  display: grid;
  grid-template-columns: 1.4fr .85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow);
}
.single-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 16px 0 .4em; }
.single-copy .lead { margin-bottom: 20px; }
.single-copy .quiet-list li { font-size: .96rem; }

.single-price-card {
  background: linear-gradient(155deg, var(--plum-800), var(--purple-700) 60%, var(--violet-500));
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  text-align: center;
  color: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
}
.single-eyebrow {
  font-family: var(--display);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lavender-300);
  margin: 0 0 12px;
}
.single-price {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 4.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0;
}
.single-price .cur { font-size: .42em; vertical-align: super; margin-right: 2px; }
.single-per { font-size: .92rem; color: rgba(255, 255, 255, .72); margin: 10px 0 24px; }
.single-price-card .btn-primary { background: #fff; color: var(--purple-600); box-shadow: none; }
.single-note { font-size: .82rem; color: rgba(255, 255, 255, .6); margin: 16px 0 0; line-height: 1.6; }
.single-line { font-size: 1.02rem; color: var(--ink-2); }
.single-line b { color: var(--ink); }

@media (max-width: 860px) {
  .single-session { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer newsletter sign-up
   ========================================================================== */

.footer-signup {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(26px, 3.5vw, 40px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.footer-signup-copy h4 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 .45em;
}
.footer-signup-copy p { font-size: .93rem; color: rgba(255, 255, 255, .72); margin: 0; }

.footer-field { display: flex; gap: 10px; }
.footer-field .input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, .95);
  border-color: transparent;
}
.footer-field .btn { flex-shrink: 0; white-space: nowrap; }

.footer-check {
  margin-top: 14px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
}
.footer-check input { accent-color: var(--lavender-400); }

.footer-signup-msg {
  display: none;
  margin: 12px 0 0;
  font-size: .88rem;
  padding: 10px 14px;
  border-radius: 10px;
}
.footer-signup-msg.show { display: block; }
.footer-signup-msg.ok { background: rgba(255, 255, 255, .16); color: #fff; }
.footer-signup-msg.bad { background: rgba(255, 190, 210, .18); color: #FFD9E4; }

@media (max-width: 860px) {
  .footer-signup { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-field { flex-direction: column; }
  .footer-field .btn { width: 100%; }
}

/* ==========================================================================
   Print — the two worksheets are meant to end up on paper
   ========================================================================== */

@media print {
  .site-header, .nav-drawer, .site-footer, .to-top, .cta-band,
  .scroll-cue, .aurora, .mesh, .res-next, [data-print] { display: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  .hero { min-height: 0; padding: 0 0 12pt; }
  .hero .page-head, .hero h1, .hero .lead { color: #000 !important; }
  .band { padding: 12pt 0; }
  .shell-narrow, .shell { width: 100%; }
  .callout, .crisis-inline { border: 1pt solid #999; background: none; }
  .numbered > li::before { background: none; border: 1pt solid #333; color: #000; }
  a { text-decoration: none; color: #000; }
  .prose { font-size: 11pt; line-height: 1.5; }
  .numbered > li { padding-bottom: 10pt; break-inside: avoid; }
}

/* ==========================================================================
   Touch and small-screen refinements

   Layout is fluid from 320px up and needs no help. What does need help is
   how big things are to hit with a thumb, and how the full-height hero
   behaves on a phone held sideways.
   ========================================================================== */

/* No 300ms delay on tap, and no grey flash on the brand colours. */
a, button, label, input, select, textarea, summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(155, 127, 224, .18);
}

/* Carousel dots stay small to look at, but get a proper hit area around them. */
.t-dot { position: relative; }
.t-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
}

@media (pointer: coarse) {
  /* Text links that act as buttons need thumb room, not just a tap area. */
  .link-arrow { padding: 8px 0; }
  .contact-item a.big { display: inline-block; padding: 5px 0; }
  .footer-links a { display: inline-block; padding: 5px 0; }
  .footer-base a { display: inline-block; padding: 6px 0; }
  .bare-link { display: inline-block; padding: 10px 0; }

  /* Checkboxes and radios are fiddly at 20px with a fingertip. */
  .check input, .footer-check input { width: 24px; height: 24px; }

  /* Keep the accordion rows comfortably tappable. */
  .acc-q { padding-top: 24px; padding-bottom: 24px; }
}

/* Phones held sideways: a 100svh hero leaves no room for the content. */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 0; padding: 110px 0 70px; }
  .scroll-cue { display: none; }
  .breath-stage { width: min(180px, 30vw); }
}

/* Below 380px — small and older phones. Everything already fits; this just
   stops the biggest type from dominating the screen. */
@media (max-width: 380px) {
  h1 { font-size: clamp(1.9rem, 9vw, 2.3rem); }
  .tier-price { font-size: 2.6rem; }
  .single-price { font-size: 3rem; }
  .hero-note { font-size: .78rem; }
  .t-slide blockquote { font-size: 1.12rem; }
  .footer-brand img { height: 96px; }
  .numbered > li { padding-left: 52px; }
  .numbered > li::before { width: 36px; height: 36px; font-size: .95rem; }
}

/* Very wide screens: hold the line length rather than stretching for ever. */
@media (min-width: 1800px) {
  .prose, .shell-narrow { max-width: 820px; }
}
