/* =========================================================
   INTRO video overlay — plays once on load, fades to site
   ========================================================= */
.intro {
  position: fixed; inset: 0;
  z-index: 9999;
  background: #f6f5f2;
  display: grid; place-items: center;
  overflow: hidden;
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), visibility 0s linear .9s;
}
.intro__stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.6vw, 32px);
  pointer-events: none;
}
.intro__letters {
  display: flex;
  gap: clamp(8px, 1.6vw, 22px);
  overflow: hidden;
  padding: 0.08em 0.08em 0.18em;
}
.intro__letter {
  display: inline-block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(64px, 12vw, 140px);
  line-height: 1;
  letter-spacing: -2px;
  color: #282828;
  will-change: transform, opacity;
}
.intro__tagline {
  position: relative;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #565451;
  opacity: 0;
  min-height: 1.4em;
}
.intro__handoff {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-rust);
  letter-spacing: 0;
  display: inline-block;
  will-change: transform;
}
/* Tagline-only sizing — scoped so it doesn't apply when JS detaches the
   handoff and promotes it to position:fixed for the Flip handoff. */
.intro__tagline .intro__handoff {
  font-size: 1.1em;
  vertical-align: -0.04em;
}
/* During the flip handoff we keep the hero's own "delivered" hidden so the
   intro span (visually identical) appears to be the only one on screen. */
.intro-handoff-active #heroDelivered { opacity: 0; }
.intro__caret {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: #565451;
  opacity: 0;
  animation: intro-caret-blink 0.9s steps(1, end) infinite;
}
.intro.is-typing .intro__caret,
.intro.is-typed  .intro__caret { opacity: 1; }
.intro.is-typed  .intro__caret { animation: intro-caret-blink 0.9s steps(1, end) infinite; }
@keyframes intro-caret-blink {
  0%, 50%   { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.intro__skip {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 3;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #282828;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .4s ease, background .2s ease;
  /* background, border, blur now provided by .lg / .lg--warp on the button */
}
.intro.is-skip-visible .intro__skip { opacity: 1; }
.intro__skip:hover { background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.55)); }
.intro.is-leaving { opacity: 0; visibility: hidden; }
.intro.is-gone { display: none; }
/* Lock body scroll while intro is active */
body.intro-locked { overflow: hidden; }
body.nav-open { overflow: hidden; }
/* ?nointro=1 testing — handled in JS */

/* =========================================================
   AVArx — visual system applying Superhuman DESIGN.md
   See DESIGN.md at project root for the full token spec.
   Three-canvas rhythm: indigo navy hero → white body → teal closing band.
   ========================================================= */

:root {
  /* Brand & accent (joinamble-aligned) */
  --primary:        #282828;     /* charcoal — dark CTAs / buttons */
  --primary-deep:   #1c1c1c;     /* pressed-state lift */
  --on-primary:     #ffffff;
  --violet-soft:    #c9b4fa;     /* legacy alias — kept for chips/highlights */
  --teal-deep:      #0e3030;     /* closing CTA band */
  --teal-mid:       #155555;

  /* AVArx brand — Clinical Trust palette
     Distinct from amble/joinamble's violet/orange/teal; reads premium-medical. */
  --brand-indigo:      #2d3561;    /* How section bg + "Anti-aging" hero word */
  --brand-indigo-deep: #1f2547;    /* overlay deepen */
  --brand-rust:        #c4593c;    /* WLB section bg + "Weight loss" hero word */
  --brand-rust-deep:   #a44530;    /* overlay deepen */
  --brand-sage:        #7a8b6b;    /* Why section bg + "Skin care" hero word */
  --brand-sage-deep:   #5f7252;    /* overlay deepen */
  --brand-honey:       #d4a574;    /* warm accent — chips, dividers, italic emphasis */
  --brand-cream:       #f6f5f2;    /* body bg */
  --brand-sand:        #efeee8;    /* cat-card bg */
  --brand-dark-sand:   #e6e2d7;    /* button-secondary bg */
  /* Legacy aliases — keep names alive in case other rules still reference them */
  --brand-orange:      var(--brand-rust);
  --brand-violet:      var(--brand-indigo);
  --brand-violet-deep: var(--brand-indigo-deep);
  --brand-teal:        var(--brand-sage);

  /* Surface */
  --canvas:         #f6f5f2;     /* warm off-white body */
  --canvas-soft:    #efeee8;     /* sand — cards / alternating rows */
  --hairline:       #e6e2d7;
  --hairline-dark:  rgba(40,40,40,0.16);

  /* Ink */
  --ink:            #292827;     /* warm dark grey, never pure black */
  --ink-mute:       #73706d;
  --ink-faint:      #9a9794;
  --on-dark-mute:   rgba(255,255,255,0.74);
  --on-dark-faint:  rgba(255,255,255,0.46);

  /* Type — Geist for everything (display + body) */
  --font-body:      'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head:      'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-italic:    'Instrument Serif', Georgia, serif;

  /* Variation weights — Superhuman picks 460 / 540 / 600 */
  --wt-body: 500;
  --wt-medium: 600;
  --wt-strong:      600;
  --wt-emph:        700;

  /* Sizing */
  --gutter: 24px;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;    /* button radius */
  --radius-lg: 12px;   /* card radius */
  --radius-xl: 16px;
  --radius-pill: 9999px;

  /* Legacy aliases used in existing rules */
  --bg:             var(--canvas);
  --bg-soft:        var(--canvas-soft);
  --ink-soft:       var(--ink);
  --grey:           var(--ink-mute);
  --line:           var(--hairline);
  --line-strong:    rgba(41,40,39,0.18);
  --radius-card:    var(--radius-lg);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  /* Reserve scrollbar gutter always so the layout doesn't shift left when
     the intro overlay's `body.intro-locked { overflow:hidden }` is removed. */
  scrollbar-gutter: stable;
}

/* ScrollSmoother wrapper — keeps layout intact when GSAP smooths scroll on desktop.
   On touch / no-hover devices ScrollSmoother is NOT initialized; wrapper just renders inline. */
#smooth-wrapper { position: relative; }
#smooth-content { width: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--brand-rust);
}
.italic.grey { color: var(--brand-honey); }

/* ===== Buttons (Superhuman tokens) =====
   Body CTAs = rounded-rectangle 8px (button-primary-dark)
   Hero CTA  = pale-violet pill (button-on-dark-pill) — use .btn--pill
   Teal band = white rounded-rectangle on teal (button-on-teal)        */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-deep); }
.btn--pill {
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
}
.btn--pill:hover { background: var(--primary-deep); }
.btn--invert {
  background: var(--canvas);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
}
.btn--invert:hover { background: var(--canvas-soft); }
.btn--outline {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline-dark);
}
.btn--outline:hover { background: var(--canvas-soft); }
.btn--sm {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
}
.btn--lg { padding: 14px 24px; font-size: 16px; }
.btn__arrow { width: 14px; height: 10px; }

/* =========================================================
   AVARX BUTTON SYSTEM — Luxury Telehealth (Figma Make port)
   Primary: warm-charcoal soft pill with restrained micro-shadows
   Secondary: minimal outline with 10px radius, warm-ivory base
   --on-dark: inverted primary for colored section backgrounds
   --sm: 44px mobile-size variant

   Structure:
     <a class="btn-avarx">
       <span>Find your treatment</span>
       <svg class="btn-avarx__arrow" …><path d="M5 12h14M13 5l7 7-7 7"/></svg>
     </a>
   ========================================================= */
.btn-avarx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  padding: 0 36px;
  border: 0;
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  border-radius: 9999px;
  background: #2c2a27;
  color: #ffffff;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 2px 4px rgba(44,42,39,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}
.btn-avarx:hover {
  background: #3a3835;
  transform: translateY(-1.5px);
  box-shadow:
    0 2px 3px rgba(0,0,0,0.1),
    0 3px 8px rgba(44,42,39,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-avarx:active {
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.1),
    inset 0 1px 1px rgba(0,0,0,0.1);
}
.btn-avarx__arrow {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke-width: 1.5;
  transition: transform 200ms ease-out;
}
.btn-avarx:hover .btn-avarx__arrow { transform: translateX(3px); }

/* Secondary — minimal outline with 10px radius */
.btn-avarx--secondary {
  background: #fdfcfb;
  color: #2c2a27;
  border: 1px solid rgba(44,42,39,0.1);
  border-radius: 10px;
  padding: 0 28px;
  gap: 10px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-avarx--secondary:hover {
  background: #ffffff;
  border-color: rgba(44,42,39,0.14);
  transform: translateY(-1.5px);
  box-shadow:
    0 2px 3px rgba(0,0,0,0.06),
    0 3px 6px rgba(44,42,39,0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-avarx--secondary:active {
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.06),
    inset 0 1px 1px rgba(0,0,0,0.04);
}

/* On dark — inverted primary for colored section backgrounds */
.btn-avarx--on-dark {
  color: #2c2a27;
}
.btn-avarx--on-dark.lg {
  background: #fff;
  border-color: rgba(255,255,255,0.88);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 12px 28px rgba(44,42,39,0.18);
}
.btn-avarx--on-dark.lg:hover {
  background: #fff;
  border-color: rgba(255,255,255,0.96);
  transform: translateY(-1.5px);
}

/* Mobile / compact */
.btn-avarx--sm {
  height: 44px;
  padding: 0 28px;
  font-size: 13px;
  gap: 10px;
}
.btn-avarx--secondary.btn-avarx--sm {
  padding: 0 24px;
  gap: 8px;
}

/* Disabled */
.btn-avarx[disabled],
.btn-avarx[aria-disabled="true"] {
  background: #d8d3cd;
  color: #9b9790;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}
.btn-avarx--secondary[disabled],
.btn-avarx--secondary[aria-disabled="true"] {
  background: #f5f2ee;
  color: #b3aea8;
  border-color: rgba(0,0,0,0.05);
  box-shadow: none;
}

/* =========================================================
   Main nav
   ========================================================= */
/* Floating pill nav — detached from the viewport edges, sticky on scroll. */
.nav {
  background: transparent;
  position: sticky; top: 14px; z-index: 50;
  padding: 14px var(--gutter) 0;
  overflow: visible;
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: visible;
  border-radius: 999px;
  transition: box-shadow .25s ease, background .25s ease;
  /* background, border, shadow now come from .lg / .lg--warp */
}
.nav.is-scrolled .nav__inner {
  box-shadow:
    0 2px 4px rgba(40,40,40,0.06),
    0 12px 32px rgba(40,40,40,0.10);
}
.nav__logo {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--font-italic);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1;
  text-shadow:
    0 0 0.5px rgba(255, 238, 205, 1),
    0 0 0.5px rgba(255, 238, 205, 1),
    0 0 1.5px rgba(255, 230, 190, 0.95),
    0 0 1.5px rgba(255, 230, 190, 0.95),
    0 0 3px   rgba(252, 218, 168, 0.65),
    0 0 5px   rgba(248, 208, 150, 0.35);
}
.nav__menu {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  white-space: nowrap;
}
.nav__link:hover { color: var(--brand-violet); }
.nav__link svg { width: 10px; height: 6px; }
.nav__divider { display: none; }

/* Nav category dropdowns */
.nav__item { position: relative; flex-shrink: 0; }
.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 2px;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1.2;
}
.nav__trigger svg {
  width: 10px;
  height: 6px;
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.nav__item.is-open .nav__trigger { color: var(--brand-violet); }
.nav__item.is-open .nav__trigger svg { transform: rotate(180deg); }
.nav__trigger:hover { color: var(--brand-violet); }

/* Full-width mega panel — sits below the pill, out of the link row */
.nav__inner.is-mega-open {
  z-index: 81;
}
.nav__mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 80;
  padding: 22px 24px 20px;
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity .28s cubic-bezier(.22,.61,.36,1),
    transform .28s cubic-bezier(.22,.61,.36,1),
    visibility 0s linear .28s;
  box-shadow:
    0 4px 8px rgba(40,40,40,0.05),
    0 20px 56px rgba(40,40,40,0.14);
}
.nav__mega.lg {
  background: linear-gradient(180deg, #fffdfa, #f8f5ef);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(40,40,40,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 8px 20px rgba(40,40,40,0.08),
    0 28px 72px rgba(40,40,40,0.18);
}
.nav__mega.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity .28s cubic-bezier(.22,.61,.36,1),
    transform .28s cubic-bezier(.22,.61,.36,1),
    visibility 0s;
}
.nav__mega-panel[hidden] { display: none !important; }

.nav__mega-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.nav__mega-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.nav__mega-panel--rust .nav__mega-eyebrow { color: var(--brand-rust); }
.nav__mega-panel--indigo .nav__mega-eyebrow { color: var(--brand-indigo); }
.nav__mega-panel--sage .nav__mega-eyebrow { color: var(--brand-sage); }
.nav__mega-blurb {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-mute);
}
.nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.nav__product {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav__product:hover {
  background: rgba(255,255,255,0.62);
  border-color: rgba(40,40,40,0.06);
  transform: translateY(-1px);
}
.nav__product-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
}
.nav__product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: 10px;
}
.nav__product-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.nav__product-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.35px;
  color: var(--ink);
  line-height: 1.2;
}
.nav__product-meta {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.35;
}
.nav__product-arrow {
  width: 14px;
  height: 14px;
  color: var(--ink-soft);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav__product:hover .nav__product-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 769px) {
  .nav__mega-panel--indigo .nav__mega-grid,
  .nav__mega-panel--sage .nav__mega-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.nav__right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
/* Nav login is a .btn-avarx.btn-avarx--sm; these overrides keep the
   pill nav compact (38px tall instead of the default 44px). */
.nav__login {
  height: 38px;
  padding: 0 18px;
  font-size: 13px;
}
.nav__cta {
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}
.nav__cta:hover { background: var(--primary-deep); }
.nav__burger { display: none; width: 44px; height: 44px; position: relative; flex-shrink: 0; }
.nav__burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--ink);
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 18px; }
.nav__burger span:nth-child(3) { top: 24px; }

/* =========================================================
   HERO
   ========================================================= */
/* =========================================================
   HERO — cream canvas, dark text, color-cycling rotator word
   (joinamble-style: white-bg with rotating colored display word)
   ========================================================= */
.hero {
  background:
    /* Horizontal warm wash that reaches the utility marquee */
    linear-gradient(180deg, rgba(212,165,116,0.40) 0px, rgba(212,165,116,0.22) 180px, transparent 480px),
    /* Soft left-side honey emphasis */
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(212,165,116,0.35), transparent 70%),
    var(--canvas);
  padding: 0 var(--gutter);
  position: relative;
  overflow: hidden;
  /* Bleed UP behind the floating pill nav so the warm glow extends
     continuously around the pill — eliminates the visible cream band. */
  margin-top: -110px;
  padding-top: 120px;
}
.hero::before { content: none; }

.hero__inner { position: relative; z-index: 1; }
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 0 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "h1       portrait"
    "sub      portrait"
    "cta      portrait"
    "cards    portrait";
  row-gap: 20px;
  column-gap: 48px;
  align-items: start;
}
.hero__payments { display: none; }
.hero__h1 { grid-area: h1; margin: 0; padding: 0; }
.hero__sub { grid-area: sub; }
.hero__cta { grid-area: cta; justify-self: start; margin-top: 8px; }
.hero__cards { grid-area: cards; }
.hero__visual {
  grid-area: portrait;
  align-self: stretch;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__h1 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 76px;
  line-height: 1.0;
  letter-spacing: -2.8px;
  color: var(--ink);
  text-wrap: balance;
}
.hero__h1 .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--brand-rust);
}
.hero__rotator {
  display: block;
  line-height: 1.0;
  position: relative;
  min-height: 72px;
}
.hero__word {
  position: absolute; left: 0; top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, color .5s ease, visibility 0s linear .5s;
  white-space: nowrap;
  color: var(--ink);
}
.hero__word.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, color .5s ease, visibility 0s;
}
/* Rotating brand color per data-color attribute (Clinical Trust palette) */
.hero__word[data-color="orange"] { color: var(--brand-rust); }   /* Weight loss */
.hero__word[data-color="violet"] { color: var(--brand-indigo); } /* Anti-aging */
.hero__word[data-color="ink"]    { color: var(--brand-sage); }   /* Skin care */

.hero__h1-line2 { display: block; color: var(--ink); }

.hero__sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.135px;
  color: var(--ink-mute);
  margin: 8px 0 0;
  max-width: 460px;
}

.hero__cta { /* btn--pill applied in HTML */ }

.hero__cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cat-card {
  /* Background, border, and rim come from .lg / .lg--warp on the element */
  border-radius: 24px;
  padding: 20px;
  display: flex; flex-direction: column;
  min-height: 280px;
  color: var(--ink);
  transition: background .2s ease, border-color .2s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.cat-card.lg:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.50));
  border-color: rgba(255,255,255,0.75);
}
.cat-card__img {
  flex: 1;
  display: grid; place-items: center;
  margin-bottom: 12px;
  min-height: 100px;
  background: transparent;
  border-radius: var(--radius-md);
}
.cat-card__img img {
  max-height: 130px;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.cat-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cat-card__label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.cat-card__highlight { color: var(--ink); }
.cat-card__highlight--orange { color: var(--brand-rust); }
.cat-card__highlight--violet { color: var(--brand-indigo); }
.cat-card__arrow {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.cat-card:hover .cat-card__arrow { transform: translate(2px, -2px); }
.cat-card__arrow svg { width: 14px; height: 14px; }

/* =========================================================
   Eyebrow caption (used across colored sections + doctors strip)
   Hims-style label that sits above an editorial title.
   ========================================================= */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-honey);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.eyebrow__rule {
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  transform-origin: left center;
  /* GSAP scales this from 0 → 1 on scroll-in. Initial state set in JS. */
}
.eyebrow--on-dark { color: rgba(255,255,255,0.72); }

/* =========================================================
   SHARED — split-panel colored sections (How / WLB / Why)
   Photo on one side, content stacked on the other.
   Distinct from the joinamble photo-behind-glass-cards pattern.
   ========================================================= */
.how, .wlb, .why {
  position: relative;
  background: var(--canvas);
  padding: 56px var(--gutter);
  scroll-margin-top: 88px;
}
.treatments, .doctors, .faq, .cta, .hero {
  scroll-margin-top: 88px;
}
.how__inner, .wlb__inner, .why__inner {
  max-width: 1344px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-radius: 36px;
  overflow: hidden;
  min-height: 640px;
  color: #fff;
  isolation: isolate;
}
.how__media, .wlb__media, .why__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.how__photo, .wlb__photo, .why__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
}
.how__content, .wlb__content, .why__content {
  padding: 56px 56px 48px;
  display: flex; flex-direction: column;
  gap: 24px;
  position: relative;
}
.how__head, .wlb__head, .why__head {
  display: flex; flex-direction: column;
  gap: 0;
}
.how__title, .wlb__title, .why__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: #fff;
  margin: 0;
  overflow: visible;
}
.how__title .italic, .wlb__title .italic, .why__title .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-honey);
  letter-spacing: -1px;
}
.how__cta, .wlb__cta, .why__cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ----- HOW: indigo, photo LEFT, steps RIGHT ----- */
.how__inner { background: var(--brand-indigo); }
.how__steps {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 18px;
  counter-reset: step;
}
.how__step {
  display: flex; gap: 18px;
  padding: 0 0 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.how__step:last-child { border-bottom: 0; padding-bottom: 0; }
.how__step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  background: transparent;
  margin: 0;
  letter-spacing: 0;
}
.how__step-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #fff;
  margin: 0 0 4px;
}
.how__step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* =========================================================
   DOCTOR-TRUSTED TREATMENTS
   ========================================================= */
.treatments {
  background: var(--canvas-soft);
  padding: 96px var(--gutter);
}
.treatments__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.treatments__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: -2.24px;
  color: var(--ink);
  text-align: left;
  margin: 0 0 48px;
  max-width: 18ch;
}
.treatments__title .italic { color: var(--primary); font-weight: 400; }
.treatments__slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}
.prod-card {
  /* background, border, rim now come from .lg / .lg--warp on the element */
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  scroll-snap-align: start;
  min-width: 0;
  text-align: center;
  transition: border-color .2s ease, transform .25s ease, background .2s ease;
}
.prod-card.lg:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.52));
  border-color: rgba(255,255,255,0.80);
}
.prod-card__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  min-height: 2.3em;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0;
  text-align: left;
}
.prod-card__img {
  background: transparent;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  padding: 8px;
}
.prod-card__img img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.prod-card__cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.prod-card__cta-row .btn {
  width: 100%;
  justify-content: center;
}
.prod-card__safety {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-align: center;
  display: inline-block;
  padding: 6px 4px;
  min-height: 44px;
  line-height: 1.4;
}
.prod-card__safety:hover { color: var(--ink); }

/* ----- WLB: rust, content LEFT, photo RIGHT, stats as 2x2 grid ----- */
.wlb__inner {
  background: var(--brand-rust);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.wlb__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 10px;
}
.wlb__stat {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,0.24);
}
.wlb__stat-num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: -1.6px;
  color: #fff;
}
.wlb__stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  margin-top: 4px;
}
.wlb__stat-fine {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  margin: 2px 0 0;
}

/* ----- WHY: sage, photo LEFT, value pills RIGHT ----- */
.why__inner { background: var(--brand-sage); }
.why__pills {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.why__pill {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
}
.why__pill.lg {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.40);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 10px 24px rgba(30,45,30,0.12);
}
.why__pill strong {
  font-weight: 600;
  color: #fff;
}
.why__pill-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.why__pill-icon svg { width: 18px; height: 18px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--canvas-soft);
  padding: 96px var(--gutter);
}
.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}
.faq__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: -2.24px;
  color: var(--ink);
  text-align: left;
  margin: 0 0 48px;
  max-width: 18ch;
}
.faq__title .italic { color: var(--primary); font-weight: 400; }
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.66px;
  color: var(--ink);
}
.faq__q:hover { color: var(--primary); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-mute);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 4px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 70ch;
}

/* =========================================================
   Closing CTA — deep-teal band (Superhuman signature)
   ========================================================= */
.cta {
  background: var(--canvas);
  padding: 0 var(--gutter) 0;
}
.cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(201,180,250,0.18) 0%, transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(21,85,85,0.6) 0%, transparent 60%),
    var(--teal-deep);
  color: var(--on-primary);
  border-radius: var(--radius-xl);
  padding: 96px 64px;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 320px;
  overflow: hidden;
}
.cta__copy { position: relative; z-index: 1; }
.cta__icon { display: none; }
.cta__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: -2.24px;
  color: var(--on-primary);
  margin: 0 0 16px;
  max-width: 14ch;
}
.cta__title .italic.grey { color: var(--violet-soft); font-weight: 400; }
.cta__sub {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.135px;
  color: var(--on-dark-mute);
  margin: 0;
  max-width: 420px;
}
.cta__person { display: none; }
.cta__btn {
  position: relative;
  justify-self: end;
  align-self: center;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--canvas);
  color: var(--ink-mute);
  padding: 64px var(--gutter) 32px;
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
}
.footer__logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.63px;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer__tag {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-mute);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.4;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: 0;
}
.footer__col a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  padding: 10px 0;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
}
.footer__col a:hover { color: var(--ink); text-decoration-color: var(--ink); }
.footer__bottom {
  padding-top: 24px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-faint);
  max-width: 800px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .nav__menu { gap: 24px; }
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "h1"
      "sub"
      "cta"
      "portrait"
      "cards";
  }
  .hero__payments { justify-self: start; }
  .hero__cta { justify-self: start; }
  .hero__visual {
    min-height: 380px;
    margin-top: 8px;
  }
  .hero__cards { grid-template-columns: 1fr 1fr; }
  .how__steps { grid-template-columns: 1fr 1fr; }
  .wlb__stats { grid-template-columns: 1fr 1fr; }
  .why__pills { grid-template-columns: 1fr 1fr; }
  .treatments__slider { grid-template-columns: repeat(4, 280px); overflow-x: auto; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 16px; }

  .nav__menu { display: none; }
  .nav__menu.is-open {
    display: flex;
    position: fixed;
    top: 72px;
    left: var(--gutter);
    right: var(--gutter);
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 24px;
    padding: 8px 8px;
    gap: 0;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    box-shadow:
      0 1px 2px rgba(40,40,40,0.04),
      0 12px 32px rgba(40,40,40,0.10);
  }
  .nav__menu.is-open .nav__trigger {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    color: var(--ink);
    justify-content: space-between;
  }
  .nav__menu.is-open .nav__trigger:hover,
  .nav__menu.is-open .nav__item.is-open .nav__trigger {
    background: var(--canvas-soft);
    color: var(--ink);
  }
  .nav__menu.is-open .nav__item { width: 100%; }
  .nav__mobile-panel {
    padding: 4px 8px 14px;
  }
  .nav__mobile-panel[hidden] { display: none !important; }
  .nav__mobile-panel .nav__mega-head {
    padding: 4px 10px 10px;
    margin-bottom: 8px;
  }
  .nav__mobile-panel .nav__mega-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0 4px;
  }
  .nav__mobile-panel .nav__product {
    grid-template-columns: 64px 1fr auto;
    padding: 10px;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--hairline);
  }
  .nav__mobile-panel .nav__product-img { width: 64px; height: 64px; }
  .nav__mobile-panel .nav__product-arrow { opacity: 1; transform: none; }

  /* Desktop mega hidden on mobile */
  .nav__mega { display: none !important; }
  .nav__burger { display: block; }
  .nav__login { display: none; }

  .hero__inner { padding: 20px 0 40px; }
  .hero__h1 { font-size: 56px; line-height: 56px; letter-spacing: -2.24px; }
  .hero__rotator { line-height: 64px; height: 64px; }
  .hero__visual { min-height: 280px; border-radius: 20px; }
  .hero__cards { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
  .cat-card { min-height: 200px; padding: 16px; }

  .how, .wlb, .why { padding: 32px var(--gutter); }
  .how__content, .wlb__content, .why__content { padding: 28px 20px; }
  .how__title, .wlb__title, .why__title,
  .faq__title, .treatments__title {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -1.44px;
  }
  .cta__title { font-size: 44px; line-height: 44px; letter-spacing: -1.76px; }
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 48px 24px;
  }
  .cta__btn {
    justify-self: start;
    width: min(100%, 220px);
  }
  .wlb__title { font-size: 44px; line-height: 44px; letter-spacing: -1.76px; }

  .how__steps { grid-template-columns: 1fr; }
  .wlb__stats { grid-template-columns: 1fr; }
  .why__pills { grid-template-columns: 1fr; }

  .treatments { padding: 72px var(--gutter) 48px; }
  .treatments__title { margin-bottom: 28px; padding-top: 8px; }
  .treatments__slider {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: visible !important;
    scroll-snap-type: none;
    padding-bottom: 0;
    padding-right: 0 !important;
    cursor: default !important;
    touch-action: auto !important;
  }
  .prod-card {
    padding: 14px;
    gap: 10px;
    border-radius: 16px;
  }
  .prod-card__name {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .prod-card__img { padding: 4px; }
  .prod-card .spin-video { display: none; }
  .prod-card__cta-row .btn-avarx--secondary { display: none; }
  .prod-card__cta-row .btn-avarx--sm {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }
  .prod-card__safety { font-size: 11px; }

  .footer__top { gap: 28px; padding-bottom: 32px; }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
  }
  .footer__logo { font-size: 36px; letter-spacing: -1.44px; }
  .footer__col h4 { margin-bottom: 6px; }
  .footer__col a {
    display: flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 0;
    line-height: 1.3;
  }
  .footer__bottom { padding-top: 20px; }
}

/* =========================================================
   Animations — inspired by Good Life Meds
   ========================================================= */

/* Hover-to-play spin video — fades over the still product image */
.spin-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.cat-card__img,
.prod-card__img {
  position: relative;
  overflow: hidden;
}
[data-spin] .cat-card__img img,
[data-spin] .prod-card__img img {
  transition: opacity .35s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
[data-spin].is-hover .cat-card__img img,
[data-spin].is-hover .prod-card__img img { opacity: 0; }
[data-spin].is-hover .spin-video.is-loaded { opacity: 1; }
.cat-card { transition: background .25s ease, transform .35s cubic-bezier(.2,.7,.2,1); }
.cat-card.is-hover { transform: translateY(-3px); }
.prod-card { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.prod-card.is-hover { transform: translateY(-3px); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}
.reveal--in {
  opacity: 1;
  transform: none;
}

/* Drag-to-scroll slider */
.treatments__slider {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.treatments__slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.treatments__slider.is-dragging * { pointer-events: none; }

/* Section backgrounds now use full-bleed <img> elements; no bg-position parallax */

/* =========================================================
   DOCTORS strip — credibility row (Hims-borrow)
   ========================================================= */
.doctors {
  background: var(--canvas);
  padding: 96px var(--gutter);
}
.doctors__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  text-align: center;
}
.doctors__head { max-width: 640px; }
.doctors__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.doctors__title .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-rust);
  letter-spacing: -0.8px;
}
.doctors__sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 16px 0 0;
}
.doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
.doctor {
  margin: 0;
  display: flex; flex-direction: column;
  gap: 16px;
  text-align: left;
}
.doctor__photo {
  aspect-ratio: 1 / 1.15;
  border-radius: 22px;
  overflow: hidden;
  background: var(--canvas-soft);
}
.doctor__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}
.doctor__name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.doctor__cred {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.doctors__head .eyebrow { justify-content: center; }
@media (max-width: 1024px) {
  .doctors__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Split-panel responsive collapse */
@media (max-width: 900px) {
  .how__inner, .wlb__inner, .why__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .how__media, .wlb__media, .why__media { min-height: 320px; }
  .how__content, .wlb__content, .why__content { padding: 32px 28px; }
  .wlb__inner { grid-template-columns: 1fr; }
  .wlb__inner .wlb__media { order: -1; }
  .how__title, .wlb__title, .why__title { font-size: 36px; letter-spacing: -1.2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .spin-video { display: none; }
}
