/* psyflo.com — marketing homepage
   Responsive, desktop-first, mobile-aware. Builds on site/styles.css tokens.
   Patient-safe: no billing/revenue framing anywhere in this layout. */

.home {
  background: var(--cream-50, #FBF8F2);
  color: var(--ink-900, #1A1A1A);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Hairline paper/fabric texture — diagonal, a whisper over cream.
     Applied only to low-text bands (CTA sections, pull-quotes). */
  --tex-stripes: repeating-linear-gradient(45deg, rgba(120,95,54,0.037) 0 1px, transparent 1px 7px);
}
.home * { box-sizing: border-box; }
.home a { color: inherit; text-decoration: none; }
.home button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
/* Accessibility: visible keyboard focus throughout */
.home a:focus-visible, .home button:focus-visible, .home image-slot:focus-visible {
  outline: 2px solid var(--navy-700, #303F87); outline-offset: 3px; border-radius: 6px;
}
.home .cred a:focus-visible, .home .foot a:focus-visible { outline-color: #fff; }

/* ── Layout primitives ─────────────────────────────────────────── */
.home .wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.home .section { padding-block: clamp(72px, 11vw, 132px); }
.home .section--tight { padding-block: clamp(40px, 6vw, 64px); }
.home .section--cream2 { background: var(--band, #F4EBD7); }
.home .section--navy { background: var(--navy-950, #141C4A); color: #fff; }
/* text treatments inside a deep navy section */
.home .section--navy .eyebrow { color: var(--gold-400, #C9A35E); }
.home .section--navy .h2, .home .section--navy .h3 { color: #fff; }
.home .section--navy .lede { color: rgba(255,255,255,.74); }

/* ── Type ──────────────────────────────────────────────────────── */
.home .eyebrow {
  font-size: clamp(11px, 1.1vw, 12px);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-700, #7A5F36); font-weight: 600; margin: 0;
}
.home .display {
  font-family: var(--headline-font); font-weight: var(--headline-weight);
  letter-spacing: -0.025em; line-height: 0.98;
  font-size: clamp(40px, 7.2vw, 92px);
  color: #0A0A0A; margin: 0; text-wrap: balance;
}
.home .h2 {
  font-family: var(--headline-font); font-weight: var(--headline-weight);
  letter-spacing: -0.02em; line-height: 1.1;
  font-size: clamp(31px, 4.8vw, 54px);
  color: #0A0A0A; margin: 0; text-wrap: balance;
}
.home .h3 {
  font-family: var(--headline-font); font-weight: var(--headline-weight);
  letter-spacing: -0.015em; line-height: 1.12;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #0A0A0A; margin: 0; text-wrap: balance;
}
.home .accent-italic {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic; font-weight: 400; color: var(--accent-700);
}
/* When headline is set to sans, keep the accent word serif-italic for editorial bite */
.home .lede {
  font-size: clamp(17px, 1.55vw, 21px); line-height: 1.5;
  color: var(--ink-600, #525252); margin: 0; text-wrap: pretty;
}
.home .meta { font-size: 13px; color: var(--ink-500, #737373); line-height: 1.5; }

/* ── Nav ───────────────────────────────────────────────────────── */
.home .nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #F2EDDF;
}
.home .nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.home .nav__left { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.home .nav__links { display: flex; gap: 28px; font-size: 14.5px; color: var(--ink-600, #525252); }
.home .nav__links a { transition: color 140ms ease; position: relative; display: inline-flex; align-items: center; padding-block: 11px; margin-block: -11px; }
.home .nav__links a:hover { color: #0A0A0A; }
.home .nav__links a.is-active { color: #0A0A0A; font-weight: 500; }
.home .nav__links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  border-radius: 1px; background: var(--accent-500);
}

/* Product dropdown */
.home .nav__item--menu { position: relative; display: flex; align-items: center; }
.home .nav__menutrigger { display: inline-flex; align-items: center; gap: 5px; position: relative; color: var(--ink-600, #525252); transition: color 140ms ease; padding-block: 11px; margin-block: -11px; cursor: pointer; }
.home .nav__menutrigger:hover, .home .nav__item--menu:focus-within .nav__menutrigger { color: #0A0A0A; }
.home .nav__menutrigger.is-active { color: #0A0A0A; font-weight: 500; }
.home .nav__caret { transition: transform 160ms ease; opacity: .7; }
.home .nav__item--menu:hover .nav__caret, .home .nav__item--menu:focus-within .nav__caret, .home .nav__item--menu.is-open .nav__caret { transform: rotate(180deg); }
.home .nav__dropdown { position: absolute; top: 100%; left: -12px; margin-top: 12px; min-width: 224px; background: #fff; border: 1px solid var(--cream-300, #DFD3B7); border-radius: 12px; box-shadow: 0 1px 2px rgba(20,28,74,.05), 0 16px 36px -14px rgba(20,28,74,.28); padding: 6px; display: grid; gap: 2px; visibility: hidden; transform: translateY(-6px); transition: transform 150ms ease; z-index: 60; }
.home .nav__dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.home .nav__item--menu:hover .nav__dropdown, .home .nav__item--menu:focus-within .nav__dropdown, .home .nav__item--menu.is-open .nav__dropdown { visibility: visible; transform: none; }
.home .nav__dropdown a { display: flex; align-items: center; min-height: 44px; margin: 0 4px; padding: 11px 13px; border-radius: 8px; font-size: 14.5px; line-height: 1.3; color: var(--ink-700, #404040); position: static; transition: background 130ms ease, color 130ms ease; }
.home .nav__dropdown a::after { display: none; }
.home .nav__dropdown a:hover { background: var(--cream-100, #F6F1E8); color: #0A0A0A; }
.home .nav__dropdown a:focus-visible { outline: none; background: var(--cream-100, #F6F1E8); color: #0A0A0A; box-shadow: 0 0 0 2px var(--navy-500, #5870A8); }
.home .nav__dropdown a.is-active { color: var(--accent-700, #7A5F36); font-weight: 500; }
.home .nav__signin { font-size: 14.5px; color: var(--ink-600, #525252); transition: color 140ms ease; }
.home .nav__signin:hover { color: #0A0A0A; }
.home .nav__right { display: flex; align-items: center; gap: 16px; }
.home .wordmark {
  font-family: var(--headline-font); font-weight: 500;
  letter-spacing: -0.02em; font-size: 25px; line-height: 1; color: #0A0A0A;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.home .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 500; line-height: 1; white-space: nowrap;
  border-radius: 10px; transition: transform 140ms var(--ease-out, ease), background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.home .btn:hover { transform: translateY(-1px); }
.home .btn--primary { background: var(--navy-900, #1E2A6B); color: #fff; }
.home .btn--primary:hover { background: var(--navy-700, #303F87); }
.home .btn--ghost { background: transparent; color: #0A0A0A; border: 1px solid var(--cream-300, #DFD3B7); }
.home .btn--ghost:hover { border-color: #B8A580; background: rgba(255,255,255,.5); }
.home .btn--white { background: #fff; color: #0A0A0A; border: 1px solid rgba(255,255,255,.25); }
.home .btn--lg { height: 52px; padding-inline: 26px; font-size: 15.5px; }
.home .btn--md { height: 44px; padding-inline: 18px; font-size: 14.5px; }

/* ── Hero ──────────────────────────────────────────────────────── */
.home .hero { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(8px, 3vw, 36px); }
.home .hero__eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: clamp(24px, 3vw, 36px); }
.home .hero__eyebrow-row .eyebrow { white-space: nowrap; }
.home .hero__rule { width: 38px; height: 1px; background: #1A1A1A; flex: 0 0 38px; }
/* let the eyebrow row span the full text column on the two-col hero */
.home .hero2 .hero__eyebrow-row .eyebrow { flex: 0 0 auto; }
.home .hero2 .hero__eyebrow-row::after { content: ''; flex: 1 1 auto; height: 1px; background: var(--cream-300, #DFD3B7); }
.home .hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); align-items: end; }
.home .hero__lede-col { max-width: 620px; }
.home .hero__cta-row { margin-top: clamp(28px, 3vw, 38px); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.home .hero__reassure { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--ink-500, #737373); align-items: center; }
.home .hero__reassure .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--cream-500, #B8A580); }

/* Backed-by row, sits below the trust tags in the hero */
.home .hero__backed { margin-top: clamp(22px, 2.6vw, 30px); padding-top: clamp(18px, 2vw, 24px); border-top: 1px solid var(--cream-300, #DFD3B7); display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; }
.home .hero__backed-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500, #737373); font-weight: 600; flex: 0 0 auto; white-space: nowrap; }
.home .hero__backed-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.home .hero__backed-list li { font-size: 14px; color: var(--ink-700, #404040); font-weight: 500; position: relative; }
.home .hero__backed-list li:not(:last-child)::after { content: '·'; position: absolute; right: -11px; color: var(--cream-500, #B8A580); }

/* ── Two-column hero ───────────────────────────────────────────── */
.home .hero2 {
  display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
}
.home .hero2__text { max-width: 600px; }
.home .hero2 .display { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.02; }
.home .hero2 .lede { margin-top: clamp(20px, 2.4vw, 28px); max-width: 540px; }
.home .hero2__visual { min-width: 0; }

/* Stage scales to the column width (JS-driven); children sit at native size */
.home .hero2__stagewrap { position: relative; width: 100%; max-width: 588px; margin-inline: auto; }
.home .hero2__stage { position: absolute; top: 0; left: 0; transform-origin: top left; }
.home .hero2__panel { position: absolute; top: 0; right: 0; }
.home .hero2__phone { position: absolute; left: -10px; bottom: 0; z-index: 2; }

@media (max-width: 900px) {
  .home .hero2 { grid-template-columns: 1fr; gap: 8px; align-items: start; }
  .home .hero2__text { max-width: 640px; }
  .home .hero2__visual { margin-top: clamp(28px, 6vw, 48px); }
}

/* Hero product visual */
.home .heroviz { position: relative; margin-top: clamp(48px, 7vw, 96px); }
.home .heroviz__plate {
  position: absolute; inset: 0; top: clamp(40px, 6vw, 90px);
  background: #F6F1E8; border-radius: clamp(20px, 3vw, 32px); z-index: 0;
}
.home .heroviz__inner {
  position: relative; z-index: 1;
  padding: clamp(24px, 4vw, 44px) clamp(20px, 4vw, 44px) clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: flex-end;
}
.home .heroviz__panel { transform: translateY(-18px); min-width: 0; }
.home .heroviz__phone { display: flex; justify-content: center; }

/* Product shot on small screens: allow horizontal scroll to stay legible */
.home .panel-scroll { min-width: 0; }
@media (max-width: 860px) {
  .home .panel-scroll {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
            mask-image: linear-gradient(90deg, #000 92%, transparent);
  }
  .home .panel-scroll > * { min-width: 680px; }
}

/* ── Generic two-column feature blocks ─────────────────────────── */
.home .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.home .split--clin { grid-template-columns: 1fr 1.35fr; align-items: flex-start; }
.home .col-sticky { position: sticky; top: 100px; }
.home .lede--block { margin-top: 24px; max-width: 540px; }

/* Check list */
.home .checklist { margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 15px; }
.home .checklist li { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; }
.home .checklist .ico { color: var(--accent-700); padding-top: 3px; }
.home .checklist b { font-weight: 500; color: #0A0A0A; }
.home .checklist span.sub { color: var(--ink-600, #525252); }

/* Plain clinician feature list */
.home .featlist { margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.home .featlist .t { font-size: 16px; font-weight: 500; color: #0A0A0A; }
.home .featlist .d { font-size: 14.5px; color: var(--ink-600, #525252); margin-top: 4px; line-height: 1.5; }

/* Phones stage */
.home .phones { position: relative; min-height: 600px; display: flex; align-items: center; justify-content: center; }
.home .phones__glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: var(--accent-50); filter: blur(24px); opacity: .85; }
.home .phones__a { position: absolute; transform: translate(-92px, -8px) rotate(-4deg); }
.home .phones__b { position: absolute; transform: translate(96px, 30px) rotate(4deg); }

/* ── Problem decay timeline ────────────────────────────────────── */
.home .decay { margin-top: clamp(48px, 6vw, 72px); position: relative; }
.home .decay__line {
  position: absolute; top: 30px; left: 6%; right: 6%; height: 2px; border-radius: 1px; opacity: .38;
  background: linear-gradient(90deg, #2F8F4F 0%, #2F8F4F 10%, #7BA083 26%, #B8956A 50%, #CA8A04 72%, #C45050 90%, #C45050 100%);
}
.home .decay__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 2vw, 24px); }
.home .decay__node { position: relative; height: 60px; }
.home .decay__dot { position: absolute; left: 50%; top: 23px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transform: translateX(-50%); }
.home .decay__day { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-600, #525252); font-weight: 600; text-align: center; margin-top: -6px; }
.home .decay__label { margin-top: 8px; text-align: center; }
.home .decay__sub { font-size: 13.5px; color: var(--ink-600, #525252); margin-top: 8px; text-align: center; line-height: 1.5; text-wrap: balance; }

/* care stats (problem) */
.home .carestats { margin-top: clamp(56px, 8vw, 96px); padding-top: clamp(40px, 5vw, 56px); border-top: 1px solid var(--cream-300, #DFD3B7); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 40px); }
.home .carestats .big { font-family: var(--headline-font); font-weight: var(--headline-weight); letter-spacing: -0.02em; font-size: clamp(54px, 6vw, 78px); line-height: 1; color: var(--navy-900, #1E2A6B); }
.home .carestats .lab { font-size: 16px; color: #1A1A1A; margin-top: 14px; line-height: 1.5; max-width: 340px; }
.home .carestats .cite { font-size: 12px; color: var(--ink-600, #525252); margin-top: 14px; line-height: 1.5; }

/* ── A morning with Psyflo ─────────────────────────────────────── */
.home .morning { margin-top: clamp(48px, 6vw, 76px); position: relative; }
.home .morning__rail { position: absolute; left: 95px; top: 14px; bottom: 14px; width: 2px; background: var(--cream-300, #DFD3B7); }
.home .mstep { display: grid; grid-template-columns: 78px 28px 1fr; gap: 22px; align-items: start; padding-block: clamp(20px, 3vw, 34px); }
.home .mstep__time { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 13px; color: var(--ink-500, #737373); font-feature-settings: 'tnum'; text-align: right; padding-top: 3px; letter-spacing: -0.02em; }
.home .mstep__node { position: relative; display: flex; justify-content: center; padding-top: 2px; }
.home .mstep__dot { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-50); border: 1px solid var(--accent-200); color: var(--accent-700); display: grid; place-items: center; z-index: 1; }
.home .mstep__body { min-width: 0; }
.home .mstep__title { font-size: clamp(20px, 2.3vw, 26px); font-family: var(--headline-font); font-weight: var(--headline-weight); letter-spacing: -0.015em; color: #0A0A0A; line-height: 1.15; }
.home .mstep__desc { font-size: 16px; color: var(--ink-600, #525252); margin-top: 8px; line-height: 1.55; max-width: 560px; }
.home .mstep__visual { margin-top: 18px; }

/* mini pinned-row visual */
.home .pinrow { background: #fff; border: 1px solid #E8E2D2; border-left: 3px solid #C45050; border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 14px; max-width: 460px; box-shadow: var(--shadow-sm, 0 2px 4px rgba(34,44,80,.06)); }
.home .pinrow__av { width: 30px; height: 30px; border-radius: 50%; background: #FBF8F2; border: 1px solid #E8E2D2; color: #737373; display: grid; place-items: center; font-size: 11px; font-weight: 600; flex: 0 0 30px; }
.home .pinrow__name { font-size: 14px; font-weight: 500; color: #0A0A0A; }
.home .pinrow__meta { font-size: 12px; color: #C45050; font-weight: 500; margin-top: 2px; }
.home .pinrow__pin { margin-left: auto; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-500,#737373); font-weight: 600; }

/* keystroke chip */
.home .keystroke { display: inline-flex; align-items: center; gap: 10px; background: #0A0A0A; color: #FAFAFA; border-radius: 10px; padding: 12px 16px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 13.5px; }
.home .keystroke kbd { font-family: inherit; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 5px; padding: 2px 7px; font-size: 12px; }
.home .keystroke .caret { width: 7px; height: 15px; background: var(--accent-400, #C9A35E); display: inline-block; border-radius: 1px; animation: caret 1.1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

/* ── Impact stats ──────────────────────────────────────────────── */
.home .impact { margin-top: clamp(48px, 7vw, 80px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 5vw, 56px); }
.home .impact .big { font-family: var(--headline-font); font-weight: var(--headline-weight); letter-spacing: -0.02em; font-size: clamp(56px, 7vw, 84px); line-height: 1; color: var(--navy-900, #1E2A6B); }
.home .impact .lab { font-size: 17px; color: #0A0A0A; font-weight: 500; margin-top: 12px; }
.home .impact .cite { font-size: 12px; color: var(--ink-500, #737373); margin-top: 8px; line-height: 1.5; max-width: 280px; }
/* impact stats inside a navy section */
.home .section--navy .impact .big { color: var(--gold-400, #C9A35E); }
.home .section--navy .impact .lab { color: #fff; }
.home .section--navy .impact .cite { color: rgba(255,255,255,.66); }

/* ── Comparison: without vs. with ──────────────────────────────── */
.home .compare__table { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--cream-300, #DFD3B7); border-radius: 18px; overflow: hidden; background: #fff; }
/* ── What Psyflo offers ────────────────────────────────────────── */
.home .offer__grid { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 30px); }
.home .offer__card { background: #fff; border: 1px solid var(--cream-300, #DFD3B7); border-radius: 18px; padding: clamp(28px, 3.4vw, 40px); }
.home .offer__k { font-family: var(--headline-font); font-weight: var(--headline-weight); letter-spacing: -0.015em; font-size: clamp(21px, 2.4vw, 27px); color: #0A0A0A; margin: 0; line-height: 1.15; }
.home .offer__d { font-size: 16px; line-height: 1.6; color: var(--ink-600, #525252); margin: 14px 0 0; }
.home .offer__pts { margin: 22px 0 0; padding: 22px 0 0; list-style: none; display: grid; gap: 13px; border-top: 1px solid var(--cream-200, #ECE4D2); }
.home .offer__pts li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: 15px; color: var(--ink-700, #404040); line-height: 1.5; }
.home .offer__ico { color: var(--accent-700, #7A5F36); padding-top: 2px; }
.home .compare__head { padding: 16px clamp(20px, 2.6vw, 30px); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.home .compare__head--no { color: var(--ink-500, #737373); background: var(--cream-50, #FBF8F2); border-bottom: 1px solid var(--cream-200, #ECE4D2); }
.home .compare__head--yes { color: var(--accent-700, #7A5F36); background: var(--accent-50, #FAF3E6); border-bottom: 1px solid var(--accent-200, #ECD9B0); }
.home .compare__cell { padding: clamp(16px, 2vw, 22px) clamp(20px, 2.6vw, 30px); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.45; display: flex; gap: 13px; align-items: flex-start; border-bottom: 1px solid var(--cream-200, #ECE4D2); }
.home .compare__cell:nth-last-child(-n+2) { border-bottom: none; }
.home .compare__cell--no { color: var(--ink-600, #525252); }
.home .compare__cell--yes { color: #0A0A0A; font-weight: 500; background: rgba(250,243,230,.55); border-bottom-color: var(--accent-200, #ECD9B0); }
.home .compare__mark { flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.home .compare__mark--no { background: var(--cream-200, #ECE4D2); }
.home .compare__mark--no::before { content: ''; width: 9px; height: 1.5px; border-radius: 1px; background: var(--ink-400, #A3A3A3); }
.home .compare__mark--yes { background: var(--accent-500, #B8956A); color: #fff; }
.home .compare__mark--yes svg { width: 12px; height: 12px; }
.home .compare__foot { margin-top: clamp(22px, 3vw, 30px); font-size: 15px; color: var(--ink-600, #525252); text-align: center; }

/* shared product-mock caption */
.home .mock-cap { margin-top: 16px; display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-600, #525252); line-height: 1.4; }
.home .mock-cap::before { content: ''; flex: 0 0 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-500, #B8956A); }
.home .mock-cap--center { justify-content: center; text-align: center; }
.home .phones__cap { position: absolute; bottom: -6px; left: 0; right: 0; }

/* ── Reimbursement understatement ──────────────────────────────── */
.home .reimburse2 { border-top: 1px solid var(--cream-300, #DFD3B7); }
.home .reimburse2__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.home .reimburse2__link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--navy-700, #303F87); }
.home .reimburse2__link:hover { color: var(--navy-900, #1E2A6B); }
.home .reimburse2__steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 30px); }
.home .reimburse2__steps li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.home .reimburse2__n { width: 28px; height: 28px; border-radius: 8px; background: var(--accent-50, #FAF3E6); border: 1px solid var(--accent-200, #ECD9B0); color: var(--accent-700, #7A5F36); display: grid; place-items: center; font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }
.home .reimburse2__t { display: block; font-size: 16px; font-weight: 600; color: #0A0A0A; }
.home .reimburse2__d { display: block; font-size: 14px; color: var(--ink-600, #525252); line-height: 1.5; margin-top: 5px; }
@media (max-width: 880px) {
  .home .reimburse2__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .home .reimburse2__steps { grid-template-columns: 1fr; }
}

/* ── Human-centered clinician band ─────────────────────────────── */
.home .clinicianband { display: grid; grid-template-columns: 1.08fr 0.92fr; min-height: clamp(420px, 48vw, 600px); }
.home .clinicianband > image-slot { display: block; width: 100%; height: 100%; min-height: clamp(320px, 40vw, 600px); background: var(--cream-200, #ECE4D2); }
.home .clinicianband__panel { background: var(--navy-950, #141C4A); color: #fff; display: flex; align-items: center; padding: clamp(40px, 6vw, 88px); }
.home .clinicianband__quote { font-family: var(--headline-font); font-weight: var(--headline-weight); letter-spacing: -0.015em; line-height: 1.2; font-size: clamp(26px, 3vw, 40px); color: #fff; margin: 18px 0 0; text-wrap: pretty; }
.home .clinicianband__cap { font-size: 14px; color: rgba(255,255,255,.62); margin-top: clamp(24px, 3vw, 32px); padding-top: clamp(20px, 2.4vw, 26px); border-top: 1px solid rgba(255,255,255,.16); }

/* image-slot empty-state — warm, legible placeholder before a photo is dropped */
.home image-slot:not([data-filled]), .about image-slot:not([data-filled]), .patientpage image-slot:not([data-filled]) {
  background: var(--cream-100, #F6F1E8);
}

/* ── Final CTA ─────────────────────────────────────────────────── */
.home .finalcta { padding-block: clamp(72px, 10vw, 120px); background-image: var(--tex-stripes); }
.home .finalcta__card {
  background: var(--accent-50); border: 1px solid var(--accent-200);
  border-radius: clamp(18px, 3vw, 28px);
  padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 72px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(36px, 5vw, 56px); align-items: center;
}
.home .finalcta__card--green { background: #EEF2EC; border-color: #C8D4C0; }
.home .finalcta__card--green .incl { border-color: #C8D4C0; }
.home .finalcta__card--green .incl .ico { color: #4A5E49; }
.home .incl { background: #fff; border: 1px solid var(--accent-200); border-radius: 16px; padding: clamp(24px, 3vw, 32px); }
.home .incl ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.home .incl li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: 15px; color: #1A1A1A; }
.home .incl .ico { color: var(--accent-700); padding-top: 2px; }

/* ── Footer ────────────────────────────────────────────────────── */
.home .foot { background: var(--navy-950, #141C4A); color: #fff; padding-block: clamp(56px, 7vw, 88px) 36px; }

/* Crisis-resources line — calm, set slightly apart, in every footer */
.home .crisis { margin-top: clamp(28px, 3.4vw, 44px); padding: clamp(18px, 2vw, 22px) clamp(20px, 2.4vw, 26px); display: flex; gap: 14px; align-items: flex-start; max-width: 820px; border-radius: 12px; }
.home .crisis__ico { flex: 0 0 auto; margin-top: 1px; }
.home .crisis__text { font-size: 13.5px; line-height: 1.6; margin: 0; }
.home .crisis__text a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
/* dark tone — on the navy footers */
.home .crisis--dark { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.home .crisis--dark .crisis__ico { color: var(--gold-400, #C9A35E); }
.home .crisis--dark .crisis__text { color: rgba(255,255,255,.72); }
.home .crisis--dark .crisis__text a { color: #fff; }
/* light tone — on the patient cream footer */
.home .crisis--light { background: rgba(255,255,255,.6); border: 1px solid rgba(184,165,128,.3); margin-inline: auto; }
.home .crisis--light .crisis__ico { color: var(--gold-700, #7A5F36); }
.home .crisis--light .crisis__text { color: var(--ink-600, #525252); }
.home .crisis--light .crisis__text a { color: var(--navy-700, #303F87); }
.home .foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(36px, 4vw, 56px); align-items: flex-start; }
.home .foot__about { font-size: 15px; color: rgba(255,255,255,.66); margin-top: 18px; max-width: 360px; line-height: 1.55; }
.home .foot__contact { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 22px; }
.home .foot__coltitle { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
.home .foot__col ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.home .foot__col a { font-size: 14.5px; color: rgba(255,255,255,.86); transition: color 140ms ease; display: inline-flex; align-items: center; padding-block: 7px; margin-block: -7px; }
.home .foot__col a:hover { color: #fff; }
.home .foot__bar { margin-top: clamp(48px, 6vw, 72px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,.5); }
.home .foot__legal { display: flex; gap: 24px; }

/* ── Responsive collapses ──────────────────────────────────────── */
@media (max-width: 880px) {
  .home .clinicianband { grid-template-columns: 1fr; }
  .home .clinicianband > image-slot { min-height: clamp(280px, 60vw, 420px); }
}
@media (max-width: 1000px) {
  .home .foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .home .foot__about-col { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .home .nav__links { display: none; }
  .home .hero__grid { grid-template-columns: 1fr; }
  .home .heroviz__inner { grid-template-columns: 1fr; gap: 36px; }
  .home .heroviz__panel { transform: none; }
  .home .split, .home .split--clin { grid-template-columns: 1fr; gap: 44px; }
  .home .col-sticky { position: static; }
  .home .finalcta__card { grid-template-columns: 1fr; }
  .home .impact { grid-template-columns: 1fr; gap: 36px; }
  .home .carestats { grid-template-columns: 1fr; gap: 36px; }
  .home .phones { min-height: 520px; }
}
@media (max-width: 720px) {
  .home .decay__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .home .decay__line { display: none; }
  .home .decay__node { height: auto; }
  .home .decay__dot { position: static; transform: none; margin: 0 auto 8px; }
  .home .decay__day { margin-top: 0; }
  .home .morning__rail { left: 13px; }
  .home .mstep { grid-template-columns: 28px 1fr; gap: 8px 16px; }
  .home .mstep__node { grid-column: 1; grid-row: 1 / span 2; }
  .home .mstep__time { grid-column: 2; grid-row: 1; text-align: left; padding-top: 3px; }
  .home .mstep__body { grid-column: 2; grid-row: 2; }
  .home .foot__grid { grid-template-columns: 1fr; }
  .home .phones { transform: scale(.82); transform-origin: top center; min-height: 460px; }
  .home .compare__table { grid-template-columns: 1fr; }
  .home .offer__grid { grid-template-columns: 1fr; }
  .home .compare__head { display: none; }
  .home .compare__cell { border-bottom: 1px solid var(--cream-200, #ECE4D2); }
  .home .compare__cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--cream-200, #ECE4D2); }
  .home .compare__cell:last-child { border-bottom: none; }
  .home .compare__cell--no { background: var(--cream-50, #FBF8F2); }
}
@media (max-width: 480px) {
  .home .phones { transform: scale(.66); min-height: 380px; }
}

/* ── Lean public-site additions ────────────────────────────────── */
.home .offer__grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .home .offer__grid--three { grid-template-columns: 1fr; } }

.home .foot__grid--lean { grid-template-columns: 1.7fr 1fr 1fr; }
@media (max-width: 1000px) {
  .home .foot__grid--lean { grid-template-columns: 1fr 1fr; }
  .home .foot__grid--lean .foot__about-col { grid-column: 1 / -1; }
}
@media (max-width: 720px) { .home .foot__grid--lean { grid-template-columns: 1fr; } }

/* ── Mobile / tablet nav (lean 2-link nav stays visible) ──────────── */
/* Override the legacy rule that hid nav links below 880px (it existed for
   the old dropdown menus). The current nav is just two short links. */
@media (max-width: 880px) {
  .home .nav__links { display: flex; gap: 22px; }
}
@media (max-width: 560px) {
  .home .nav__inner { padding-block: 14px; }
  .home .nav__left { gap: 16px; }
  .home .nav__links { gap: 16px; font-size: 14px; }
  .home .wordmark { font-size: 22px; }
  .home .nav .btn--md { height: 40px; padding-inline: 14px; font-size: 13.5px; }
}
@media (max-width: 380px) {
  .home .nav__links { gap: 13px; }
  .home .nav__left { gap: 12px; }
  .home .nav .btn--md { padding-inline: 12px; font-size: 13px; }
}

/* Guard against any accidental horizontal overflow on small screens */
@media (max-width: 560px) {
  .home .wrap { padding-inline: 20px; }
  .home .finalcta__card,
  .home .offer__card { padding-left: 22px; padding-right: 22px; }
}
