/* ============================================================
   THE HEALTHY BRAIN CLINIC — V4 CHROME
   Top-bar, header, mobile menu, footer, page-hero, buttons,
   eyebrows, section heads. Extracted from the V4 homepage so
   every inner page wears the same suit.

   Depends on tokens.css (Round-22) for --navy / --teal / --coral
   / --paper / --cream / etc. Adds V4-specific aliases below.
   ============================================================ */

:root {
  /* V4-named aliases (homepage uses --gold-* synonyms for the teal accent) */
  --gold: var(--teal);
  --gold-soft: var(--teal-soft);
  --gold-deep: #0a4a5c;
}

/* Body, type alignment with V4 homepage */
body { line-height: 1.55; }
em { font-style: italic; color: var(--teal); font-weight: 400; }

/* Containers / sections — width and rhythm */
.v4 .container,
.v4-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ===== Top utility bar ===== */
.top-bar {
  background: var(--navy-deep);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .04em;
}
.top-bar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover { color: var(--teal-soft); }
.top-bar .icon { width: 13px; height: 13px; }
.top-bar .pipe { opacity: .3; margin: 0 10px; }
@media (max-width: 680px) {
  .top-bar { font-size: 11.5px; }
  .top-bar .container { gap: 6px 12px; padding: 8px 18px; }
  .top-bar .pipe { display: none; }
}

/* ===== Header (V4) ===== */
.v4-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251,249,245,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.v4-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand block (V4) */
.v4-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.v4-brand img { width: 40px; height: 40px; object-fit: contain; }
.v4-brand .name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
}
.v4-brand .name em { color: var(--teal); font-weight: 500; font-style: italic; }
.v4-brand .tag {
  font-size: 10.5px;
  color: var(--fg-subtle);
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Primary nav */
.v4-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.v4-nav a,
.v4-nav .has-dropdown {
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s ease;
}
.v4-nav a:hover,
.v4-nav .has-dropdown:hover { color: var(--teal); }
.v4-nav a[aria-current="page"] { color: var(--teal); }
.v4-nav .has-dropdown { cursor: pointer; }
.v4-nav .has-dropdown .icon { width: 13px; height: 13px; opacity: .6; }
@media (max-width: 980px) { .v4-nav { display: none; } }

/* Dropdown panels */
.v4-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 32px 80px -28px rgba(10,34,62,.4);
  padding: 24px;
  min-width: 360px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 100;
}
.v4-nav .has-dropdown:hover .v4-dropdown,
.v4-nav .has-dropdown:focus-within .v4-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.v4-dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px; /* hover bridge */
}
.v4-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.v4-dropdown a small {
  display: block;
  font-size: 11.5px;
  color: var(--fg-subtle);
  font-weight: 400;
  margin-top: 2px;
}
.v4-dropdown a:hover {
  background: var(--cream);
  color: var(--teal);
}

/* Header CTA cluster */
.v4-cta-row { display: flex; gap: 10px; align-items: center; }
.v4-cta-row .btn-mobile-menu {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.v4-cta-row .btn-mobile-menu:hover {
  border-color: var(--navy);
  background: var(--cream);
}
@media (max-width: 980px) {
  .v4-cta-row .btn-mobile-menu { display: inline-flex; }
  .v4-cta-row .btn-ghost { display: none; }
}

/* ===== Buttons (V4 — coexist with Round-22 .btn--primary etc.) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 20px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .icon { width: 15px; height: 15px; }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(214,95,55,.6);
}
.btn-primary:hover { transform: translateY(-1px); background: #c4502a; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--cream); color: var(--navy); }
.btn-gold {
  background: var(--teal);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-deep); color: #fff; }

/* ===== Page hero (inner pages — V4 navy gradient) ===== */
.v4-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 100px);
  overflow: hidden;
}
.v4-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(52,212,224,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 92% 78%, rgba(214,95,55,.08) 0%, transparent 60%);
  pointer-events: none;
}
.v4-page-hero > .container { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.v4-page-hero .breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.v4-page-hero .breadcrumb a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s ease;
}
.v4-page-hero .breadcrumb a:hover { color: #fff; }
.v4-page-hero .breadcrumb__sep { margin: 0 8px; opacity: .5; }
.v4-page-hero .eyebrow,
.v4-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 600;
  margin-bottom: 24px;
}
.v4-page-hero .eyebrow::before,
.v4-page-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-soft);
}
.v4-page-hero h1,
.v4-page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 20ch;
  text-wrap: balance;
}
.v4-page-hero h1 em,
.v4-page-hero__title em {
  color: var(--teal-soft);
  font-style: italic;
  font-weight: 400;
}
.v4-page-hero .lead,
.v4-page-hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 58ch;
  margin: 0;
}
@media (max-width: 780px) {
  .v4-page-hero h1,
  .v4-page-hero__title { font-size: clamp(32px, 7vw, 48px); }
  .v4-page-hero .lead,
  .v4-page-hero__lead { font-size: 17px; }
}

/* Apply V4 page-hero look to existing Round-22 .page-hero blocks too */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(52,212,224,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 92% 78%, rgba(214,95,55,.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container,
.page-hero .page-hero__inner { position: relative; z-index: 1; }
.page-hero__title,
.page-hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  max-width: 20ch;
  text-wrap: balance;
}
.page-hero__title em,
.page-hero h1 em { color: var(--teal-soft); font-style: italic; font-weight: 400; }
.page-hero__lead,
.page-hero .lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 58ch;
}
.page-hero .eyebrow {
  color: var(--teal-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.page-hero .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-soft);
}
.page-hero .breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb__sep { margin: 0 8px; opacity: .5; }

/* Round-22 page-hero copy column — overrides for dark navy background */
.page-hero .eyebrow,
.page-hero__eyebrow {
  color: var(--teal-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  background: transparent !important;
}
.page-hero .eyebrow::before,
.page-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-soft);
}
.page-hero .page-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.page-hero .btn--primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.page-hero .btn--primary:hover { background: #c4502a; border-color: #c4502a; }
.page-hero .btn--secondary,
.page-hero .btn--ghost,
.page-hero .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}
.page-hero .btn--secondary:hover,
.page-hero .btn--ghost:hover,
.page-hero .btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
/* Round-22 hero 2-column layout */
.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__visual {
    display: block;          /* SHOW on mobile, stacked below the text */
    aspect-ratio: 4 / 5;     /* portrait — matches our clinical photos */
    max-height: 560px;
    min-height: 280px;
    width: 100%;
    max-width: 360px;        /* don't stretch beyond reasonable phone width */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
  }
}
.page-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background-size: cover !important;
  background-position: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1);
  min-height: 420px;
}

/* ===== Eyebrow + section head (light sections) ===== */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 18px; text-wrap: balance; }
.section-head .lead { font-size: 18px; color: var(--fg-muted); line-height: 1.6; max-width: 60ch; }

/* ===== V4 footer ===== */
.v4-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 64px 0 32px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.v4-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(52,212,224,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(214,95,55,.06) 0%, transparent 55%);
  pointer-events: none;
}
.v4-footer > * { position: relative; z-index: 1; }
.v4-footer .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.v4-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 980px) {
  .v4-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .v4-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
.v4-footer h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 16px;
}
.v4-footer a {
  display: block;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: color .2s ease;
}
.v4-footer a:hover { color: var(--teal-soft); }

.v4-footer .v4-brand {
  color: #fff;
}
.v4-footer .v4-brand img { filter: brightness(0) invert(1); }
.v4-footer .v4-brand .name { color: #fff; }
.v4-footer .v4-brand .name em { color: var(--teal-soft); }
.v4-footer .v4-brand .tag { color: var(--teal-soft); }
.v4-footer .v4-brand p,
.v4-footer__tag {
  font-size: 13.5px;
  margin-top: 18px;
  color: rgba(255,255,255,.65);
  max-width: 36ch;
  line-height: 1.6;
}

.scope-block {
  margin-top: 48px;
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
}
.scope-block strong {
  color: var(--teal-soft);
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.scope-block .crisis {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.15);
}
.scope-block .crisis strong { color: var(--coral-warm); }
.scope-block .crisis .num { color: #fff; font-weight: 600; }

.v4-footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.v4-footer-bottom a {
  display: inline;
  margin-left: 14px;
  color: rgba(255,255,255,.5);
}
.v4-footer-bottom a:hover { color: #fff; }

/* Newsletter form (column 5 in footer) */
.v4-footer .newsletter p {
  font-size: 13px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.65);
  max-width: none;
}
.v4-footer .newsletter form {
  display: flex;
  gap: 8px;
}
.v4-footer .newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 13px;
  font-family: inherit;
}
.v4-footer .newsletter input::placeholder { color: rgba(255,255,255,.4); }
.v4-footer .newsletter input:focus {
  outline: 0;
  border-color: var(--teal-bright);
  background: rgba(255,255,255,.08);
}
.v4-footer .newsletter button {
  padding: 10px 16px;
  border-radius: 8px;
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: background .2s ease;
  font-family: inherit;
}
.v4-footer .newsletter button:hover { background: var(--gold-deep); }

/* ===== V4 Mobile menu ===== */
.v4-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.v4-mobile-menu.is-open { transform: translateX(0); }
.v4-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(251,249,245,.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1;
}
.v4-mobile-menu__close {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.v4-mobile-menu__close:hover { border-color: var(--navy); background: var(--cream); }
.v4-mobile-menu__body { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 28px; }
.v4-mobile-menu__group h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 600;
  margin: 0 0 12px;
}
.v4-mobile-menu__group ul { list-style: none; padding: 0; margin: 0; }
.v4-mobile-menu__group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.v4-mobile-menu__group a:hover { color: var(--teal); }
.v4-mobile-menu__group a::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-subtle);
  font-weight: 400;
}
.v4-mobile-menu__cta {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v4-mobile-menu__cta .btn { justify-content: center; padding: 14px 24px; font-size: 15px; }

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

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 999;
  font-weight: 600;
  font-size: 13px;
}
.skip-link:focus { left: 16px; top: 16px; outline: 3px solid var(--coral); }

/* ===== Utility icons ===== */
.icon { display: inline-block; vertical-align: middle; }

/* ============================================================
   V4 PATTERN LIBRARY — extends Round-22 component CSS so that
   inner-page body markup automatically inherits the homepage
   visual language. Pulled verbatim from the V4 homepage's
   inline <style> block.
   ============================================================ */

/* ===== Mini-brain badge (page-hero corner / above headline) ===== */
.v4-mini-brain {
  width: 180px;
  height: 130px;
  position: relative;
  z-index: 2;
  overflow: visible;
  perspective: 900px;
}
.v4-mini-brain svg {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: mb-tilt 14s ease-in-out infinite;
}
@keyframes mb-tilt {
  0%, 100% { transform: rotateX(8deg) rotateY(-6deg); }
  50%      { transform: rotateX(12deg) rotateY(6deg); }
}
.v4-mini-brain .node {
  filter: drop-shadow(0 0 6px rgba(125,240,247,.9));
  animation: mb-pulse 2.6s ease-in-out infinite;
}
.v4-mini-brain .node.near  { fill: #7df0f7; }
.v4-mini-brain .node.mid   { fill: #34d4e0; filter: drop-shadow(0 0 4px rgba(52,212,224,.7)); }
.v4-mini-brain .node.far   { fill: #1a8a9a; opacity: .7; filter: drop-shadow(0 0 3px rgba(26,138,154,.5)); }
.v4-mini-brain .node.coral { fill: #ff8a6b; filter: drop-shadow(0 0 6px rgba(255,138,107,.95)); }
.v4-mini-brain .link {
  fill: none;
  stroke-dasharray: 1.5 2.5;
  animation: mb-flow 6s linear infinite;
}
.v4-mini-brain .link.near { stroke: rgba(125,240,247,.55); stroke-width: .8; }
.v4-mini-brain .link.mid  { stroke: rgba(52,212,224,.35);  stroke-width: .6; }
.v4-mini-brain .link.far  { stroke: rgba(52,212,224,.18);  stroke-width: .45; }
@keyframes mb-pulse {
  0%, 100% { opacity: .4; transform: scale(.85); }
  50%      { opacity: 1;  transform: scale(1.18); }
}
@keyframes mb-flow { to { stroke-dashoffset: -30; } }

/* Position the mini-brain top-right of the page hero, decoratively */
.page-hero .v4-mini-brain,
.v4-page-hero .v4-mini-brain {
  position: absolute;
  top: clamp(80px, 14vw, 140px);
  right: clamp(24px, 5vw, 64px);
  width: clamp(160px, 22vw, 280px);
  height: auto;
  opacity: .9;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 980px) {
  .page-hero .v4-mini-brain,
  .v4-page-hero .v4-mini-brain {
    /* Keep visible on mobile but constrain — top-right corner of hero */
    display: block;
    width: 140px;
    height: auto;
    top: 16px;
    right: 16px;
    opacity: 0.55;
  }
}

/* ===== Symptoms / conditions card grid ===== */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .symptoms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .symptoms-grid { grid-template-columns: 1fr; } }
.symp-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 24px;
  text-decoration: none;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  display: block;
}
.symp-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.symp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.symp-card:hover::before { transform: scaleY(1); }
.symp-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(14,122,138,.08);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--teal);
}
.symp-card .icon-wrap .glyph { width: 22px; height: 22px; }
.symp-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
}
.symp-card p { font-size: 13.5px; color: var(--fg-muted); line-height: 1.5; margin: 0 0 16px; }
.symp-card .more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.symp-card .more .arr { transition: transform .2s; }
.symp-card:hover .more .arr { transform: translateX(4px); }

/* ===== 4-Tier service journey ===== */
.journey {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  position: relative;
  padding: 96px 0;
}
@media (max-width: 780px) { .journey { padding: 64px 0; } }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 1100px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .journey-grid { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 26px 28px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.step .tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.step .tier-badge::before { content: ""; width: 18px; height: 1px; background: var(--teal); }
.step .tier-cost {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 18px;
}
.step h3 {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--navy);
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; margin: 0 0 18px; }
.step ul {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.step ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--fg);
}
.step ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px rgba(14,122,138,.18);
}
.step.featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.step.featured h3,
.step.featured .tier-badge { color: #fff; }
.step.featured .tier-badge::before { background: var(--teal-soft); }
.step.featured .tier-cost { color: var(--teal-soft); }
.step.featured p { color: rgba(255,255,255,.78); }
.step.featured ul { border-top-color: rgba(255,255,255,.14); }
.step.featured ul li { color: rgba(255,255,255,.88); }
.step.featured ul li::before { background: var(--teal-bright); box-shadow: 0 0 0 2px rgba(52,212,224,.25); }

/* ===== 12-week clinical timeline block ===== */
.timeline-block {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 680px) { .timeline-block { padding: 28px 22px; } }
.timeline-block .tl-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.timeline-block .tl-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.timeline-block h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
}
.timeline {
  list-style: none;
  padding: 0; margin: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 980px) { .timeline { grid-template-columns: 1fr; gap: 18px; } }
.timeline::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-soft) 0%, var(--teal) 50%, var(--teal-soft) 100%);
  z-index: 0;
}
@media (max-width: 980px) { .timeline::before { display: none; } }
.timeline li {
  padding: 0 12px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline li .wk-marker {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-deep);
  font-weight: 700;
}
.timeline li.featured-wk .wk-marker {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(14,122,138,.18);
}
.timeline li .wk {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.timeline li .what { font-size: 13.5px; color: var(--fg-muted); line-height: 1.5; }
@media (max-width: 980px) {
  .timeline li { flex-direction: row; align-items: flex-start; gap: 14px; padding: 0; }
  .timeline li .wk-marker { flex-shrink: 0; margin-top: 2px; }
}

/* ===== qEEG strip — brain region tiles ===== */
.brain-strip {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.brain-strip h2 { color: #fff; margin-bottom: 18px; }
.brain-strip h2 em { color: var(--teal-soft); font-style: italic; }
.brain-strip .lead { color: rgba(255,255,255,.72); max-width: 60ch; margin-bottom: 48px; font-size: 17px; }
.maps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .maps-row { grid-template-columns: repeat(2, 1fr); } }
.brain-tile {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}
.brain-tile:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--teal);
  transform: translateY(-4px);
}
.brain-tile svg { width: 80%; height: auto; margin: 0 auto; display: block; }
.brain-tile .name { font-family: var(--font-display); font-size: 16px; font-weight: 500; margin-top: 14px; color: #fff; }
.brain-tile .hz {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--teal-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 3px;
}
.brain-tile .cap { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 8px; line-height: 1.4; font-style: italic; }

/* ===== Stats row ===== */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 12% 50%, rgba(52,212,224,.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 88% 50%, rgba(214,95,55,.08) 0%, transparent 55%);
  pointer-events: none;
}
.stats > * { position: relative; z-index: 1; }
.stats .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 780px) { .stats .row { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: left;
}
.stat-cell:last-child { border-right: 0; }
@media (max-width: 780px) {
  .stat-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 24px 28px; }
  .stat-cell:nth-child(2n) { border-right: 0; }
}
.stat-cell .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.stat-cell .num em { color: var(--coral-warm); font-style: normal; font-weight: 400; }
.stat-cell .lbl {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin-top: 10px;
  letter-spacing: .02em;
  line-height: 1.4;
}

/* ===== Service feedback (NOT outcome testimonials — AHPRA-safe) ===== */
.feedback { background: var(--cream); padding: 96px 0; }
.fb-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .fb-track { grid-template-columns: 1fr; } }
.fb-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.fb-card .qmark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: .5;
  color: var(--teal);
  position: absolute;
  top: 24px;
  right: 28px;
  opacity: .4;
}
.fb-card blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--navy);
  text-wrap: balance;
  font-style: italic;
}
.fb-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.fb-card .tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .04em;
}
.fb-disclaimer {
  margin-top: 32px;
  padding: 18px 22px;
  background: rgba(214,95,55,.06);
  border: 1px solid rgba(214,95,55,.18);
  border-radius: 14px;
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.fb-disclaimer .icon { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }

/* ===== Conditions A-Z grid ===== */
.az-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
@media (max-width: 780px) { .az-grid { grid-template-columns: 1fr; } }
.az-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--navy);
  transition: all .2s;
  font-size: 15px;
}
.az-row:hover {
  padding-left: 12px;
  color: var(--coral);
  background: linear-gradient(90deg, rgba(214,95,55,.04), transparent);
}
.az-row .arr { font-family: var(--font-mono); font-size: 14px; opacity: .4; transition: all .2s; }
.az-row:hover .arr { opacity: 1; transform: translateX(4px); color: var(--coral); }

/* ===== Location cards ===== */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.loc-card .map { height: 180px; position: relative; background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep)); overflow: hidden; }
.loc-card .map svg { width: 100%; height: 100%; }
.loc-card .body { padding: 24px; }
.loc-card h3 { font-size: 22px; margin-bottom: 6px; font-family: var(--font-display); font-weight: 500; color: var(--navy); }
.loc-card .addr { font-size: 13.5px; color: var(--fg-muted); margin-bottom: 14px; line-height: 1.5; }
.loc-card .hrs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.loc-card .hrs .row { display: flex; justify-content: space-between; }
.loc-card .hrs .row span:first-child { color: var(--fg-muted); }
.loc-card .hrs .row span:last-child { font-weight: 500; }
.loc-card .actions { display: flex; gap: 10px; align-items: center; }
.loc-card .lnk { font-size: 12.5px; color: var(--teal); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* ===== Team grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr; } }
.tm {
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.tm .photo {
  height: 280px;
  background-size: cover;
  background-position: center top;
  background-color: var(--navy-mid);
  position: relative;
}
.tm .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(4,16,31,.4)); }
.tm .body { padding: 24px; }
.tm h4 { font-size: 20px; font-family: var(--font-display); font-weight: 500; margin-bottom: 4px; color: var(--navy); }
.tm .role {
  font-size: 13px;
  color: var(--coral);
  margin-bottom: 14px;
  letter-spacing: .04em;
  font-weight: 600;
  text-transform: uppercase;
}
.tm .creds { display: flex; flex-wrap: wrap; gap: 6px; }
.tm .cred {
  font-size: 10.5px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* ===== Final CTA band — appears just above footer on every page ===== */
.final-cta {
  background: var(--cream);
  text-align: center;
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(14,122,138,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(214,95,55,.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.final-cta .eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
}
.final-cta .eyebrow::before,
.final-cta .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.final-cta h2 {
  margin: 0 auto 20px;
  text-wrap: balance;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--navy);
}
.final-cta h2 em { color: var(--coral); font-style: italic; font-weight: 400; }
.final-cta .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--navy);
  margin: 0 auto 28px;
  max-width: 36ch;
  line-height: 1.45;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.final-cta .tagline::before,
.final-cta .tagline::after { content: ""; flex: 0 0 36px; height: 1px; background: var(--teal); }
.final-cta .lead {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 54ch;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta .ctas .btn { padding: 14px 28px; font-size: 15px; }
.final-cta .or-call {
  font-size: 14px;
  color: var(--fg-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 320px;
  margin: 0 auto;
}
.final-cta .or-call a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
}
.final-cta .or-call a:hover { border-bottom-color: var(--coral); color: var(--coral); }

/* ===== Hero with clinical media (inner pages) — auto-applied via .page-hero__visual ===== */
.page-hero__visual.has-video {
  position: relative;
  overflow: hidden;
  background: none;
}
.page-hero__visual.has-video video,
.page-hero__visual.has-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.page-hero__visual.has-video::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 60%, rgba(4,16,31,.35) 100%);
  pointer-events: none;
}

/* ===== Trust strip (inline beneath page-hero) ===== */
.trust-strip-inline {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
.trust-strip-inline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 18% 50%, rgba(52,212,224,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 82% 50%, rgba(214,95,55,.06) 0%, transparent 60%);
  pointer-events: none;
}
.trust-strip-inline > * { position: relative; z-index: 1; }
.trust-strip-inline .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.trust-strip-inline .trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-family: var(--font-body);
}
.trust-strip-inline .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}
.trust-strip-inline .trust-item .icon {
  width: 15px;
  height: 15px;
  color: var(--teal-bright);
  flex-shrink: 0;
}
.trust-strip-inline .trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.15);
}
@media (max-width: 780px) {
  .trust-strip-inline .trust-divider { display: none; }
  .trust-strip-inline .trust-row { gap: 10px 20px; }
  .trust-strip-inline .trust-item { font-size: 12.5px; }
}

/* ============================================================
   V4 ALIAS LAYER
   Legacy Round-22 body markup classes (.info-card, .cta-band,
   .scope-safety, .faq, .pathway-step, .card, .article) inherit
   the V4 visual treatment automatically — no per-page rewrite.
   ============================================================ */

/* ---- .info-grid → V4 4-col responsive grid ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* ---- .info-card → V4 symp-card aesthetic ---- */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.info-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.info-card:hover::before { transform: scaleY(1); }
.info-card .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.info-card .eyebrow::before { display: none; }
.info-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.25;
}
.info-card p {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0 0 14px;
}
.info-card p:last-child { margin-bottom: 0; margin-top: auto; }
.info-card a {
  color: var(--coral);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.info-card a:hover { color: #c4502a; }

/* ---- .card → V4 surface card ---- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.card__title,
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}
.card__desc { color: var(--fg-muted); font-size: 14.5px; line-height: 1.55; }
.card--image { padding: 0; overflow: hidden; }
.card--image .card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 8px; }

/* ---- .cta-band (legacy) → V4 cream band (matches .final-cta) ---- */
.cta-band {
  background: var(--cream);
  padding: clamp(72px, 9vw, 112px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(14,122,138,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(214,95,55,.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .container,
.cta-band__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-band__title,
.cta-band__heading,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.cta-band__title em,
.cta-band__heading em,
.cta-band h2 em { color: var(--coral); font-style: italic; }
.cta-band__lead,
.cta-band__sub,
.cta-band p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 54ch;
  margin: 0 auto 28px;
}
.cta-band__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band__actions .btn,
.cta-band__actions a {
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s ease, background .2s ease;
}
.cta-band__actions .btn--primary,
.cta-band__actions .btn-primary {
  background: var(--coral); color: #fff;
  box-shadow: 0 10px 24px -12px rgba(214,95,55,.6);
}
.cta-band__actions .btn--primary:hover,
.cta-band__actions .btn-primary:hover { background: #c4502a; transform: translateY(-1px); }
.cta-band__actions .btn--secondary,
.cta-band__actions .btn-ghost {
  background: transparent; color: var(--navy); border: 1px solid var(--border);
}
.cta-band__actions .btn--secondary:hover,
.cta-band__actions .btn-ghost:hover { border-color: var(--navy); background: var(--cream); }

/* CTA band navy / amber variants */
.cta-band--amber {
  background: linear-gradient(135deg, var(--coral) 0%, #c4502a 100%);
  color: #fff;
}
.cta-band--amber .cta-band__title,
.cta-band--amber h2 { color: #fff; }
.cta-band--amber .cta-band__lead,
.cta-band--amber p { color: rgba(255,255,255,.92); }
.cta-band--amber .btn--secondary,
.cta-band--amber .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}
.cta-band--amber .btn--secondary:hover,
.cta-band--amber .btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.cta-band--navy,
.cta-band--deep {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
}
.cta-band--navy .cta-band__title,
.cta-band--deep .cta-band__title,
.cta-band--navy h2,
.cta-band--deep h2 { color: #fff; }
.cta-band--navy .cta-band__lead,
.cta-band--deep .cta-band__lead,
.cta-band--navy p,
.cta-band--deep p { color: rgba(255,255,255,.85); }

/* ---- .scope-safety → V4 full-width band ---- */
/* When the section has NO .scope-safety__icon child (the new pattern
   used by 52 pages), Round-22's grid (48px + 1fr) collapses the entire
   text into the 48px column. Force a block layout so paragraphs flow
   at full container width. The 6 legacy pages that DO have an icon
   keep their original grid behaviour via the :has() exception. */
.scope-safety {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  margin: 0;
  border-radius: 0;
  display: block !important;
  grid-template-columns: none !important;
}
.scope-safety:has(> .scope-safety__icon) {
  /* Restore the icon-side-by-side grid for legacy pages */
  display: grid !important;
  grid-template-columns: 48px 1fr !important;
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--cream);
  border-radius: var(--radius-lg);
  margin-block: var(--space-12);
  border-top: 0;
  border-bottom: 0;
}
.scope-safety .container,
.scope-safety .container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.scope-safety__title,
.scope-safety h2 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.scope-safety__title::before,
.scope-safety h2::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.scope-safety p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0 0 12px;
}
.scope-safety strong { color: var(--navy); font-weight: 600; }
.scope-safety__urgent {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  font-size: 14px;
}

/* ---- .pathway-step → V4 step card ---- */
.pathway { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; counter-reset: ps; }
@media (max-width: 1100px) { .pathway { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pathway { grid-template-columns: 1fr; } }
.pathway-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  counter-increment: ps;
  display: flex;
  flex-direction: column;
}
.pathway-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.pathway-step::before {
  content: counter(ps, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--coral);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.pathway-step__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.pathway-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}
.pathway-step p {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- .faq accordion — V4 polished ---- */
.faq {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color .2s ease;
}
.faq__trigger:hover { color: var(--teal); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  transition: transform .3s ease, background .2s ease;
}
.faq__icon::before { content: "+"; font-size: 16px; line-height: 1; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--cream); }
.faq__body {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}
.faq__body p { margin: 0 0 12px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body a { color: var(--teal); font-weight: 500; }

/* ---- .article / blog post layout — V4 magazine ---- */
.article {
  display: grid;
  grid-template-columns: 1fr min(680px, 100%) 1fr;
  margin: 64px 0;
  gap: 0;
}
.article > * {
  grid-column: 2;
}
.article__body p,
.article__body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
}
.article__body p { margin: 0 0 1.2em; }
.article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--navy);
  margin: 56px 0 24px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.article__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 36px 0 14px;
}
.article__body blockquote {
  border-left: 3px solid var(--teal);
  padding: 4px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
}
.article__body ul, .article__body ol { padding-left: 20px; }
.article__body li { margin: 6px 0; }
.article__sidebar {
  grid-column: 2;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0;
}
.article__sidebar h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 12px;
}

/* ---- .tag (chip) — V4 styling ---- */
.tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag:hover { background: var(--teal-soft); border-color: var(--teal); color: var(--navy-deep); }

/* ---- .grid-2 / .grid-3 — explicit responsive grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Section eyebrow lines on light backgrounds ---- */
section .eyebrow,
section.section .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
section .eyebrow::before,
section.section .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}

/* Override for v4-styled pages (already styled) */
.page-hero .eyebrow,
.final-cta .eyebrow,
.trust-strip-inline .trust-item {
  /* keep their own treatments */
}

/* ---- Hero CTA buttons in page-hero ---- */
.page-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.page-hero__cta .btn,
.page-hero__cta a {
  padding: 13px 24px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.page-hero__cta .btn--primary,
.page-hero__cta .btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(214,95,55,.6);
}
.page-hero__cta .btn--primary:hover,
.page-hero__cta .btn-primary:hover { background: #c4502a; transform: translateY(-1px); }


/* ---- .domain-card → V4 polished card with icon ---- */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .domain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .domain-grid { grid-template-columns: 1fr; } }
.domain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.domain-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
  color: var(--navy);
}
.domain-card:hover::before { transform: scaleY(1); }
.domain-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(14,122,138,.08);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.domain-card__icon svg { width: 24px; height: 24px; }
.domain-card__title,
.domain-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.domain-card__desc,
.domain-card p {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0;
}
.domain-card__list {
  list-style: none;
  padding: 0;
  margin: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.domain-card__list li {
  background: var(--cream);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  font-family: var(--font-mono);
}
.domain-card__link {
  margin-top: auto;
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.domain-card__link::after {
  content: "→";
  transition: transform .2s;
}
.domain-card:hover .domain-card__link::after { transform: translateX(4px); }

/* ---- Network/tier pill style — used in various hub pages ---- */
.tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(14,122,138,.08);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---- Section variations for hub pages ---- */
.section-tight { padding: 56px 0; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--navy {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
}
.section--navy h2,
.section--navy h3 { color: #fff; }
.section--navy h2 em,
.section--navy h3 em { color: var(--teal-soft); font-style: italic; }
.section--navy p { color: rgba(255,255,255,.78); }
.section--navy .eyebrow { color: var(--teal-soft); }
.section--navy .eyebrow::before { background: var(--teal-soft); }


/* ============================================================
   READER FEATURES (Round-33)
   ============================================================ */

/* ---- Reading progress bar (top of viewport on long pages) ---- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bright) 50%, var(--coral) 100%);
  z-index: 250;
  transition: width .1s ease-out;
  pointer-events: none;
}
.reading-progress.is-hidden { opacity: 0; }

/* ---- Scroll-to-top button (appears after 800px scroll) ---- */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  transform: translateY(8px);
  box-shadow: 0 10px 30px -8px rgba(10,34,62,.4);
}
.scroll-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-to-top:hover { background: var(--navy-deep); }
.scroll-to-top .icon { width: 18px; height: 18px; }
@media (max-width: 780px) {
  .scroll-to-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }
}

/* ---- Related articles widget (blog posts) ---- */
.related-articles {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}
.related-articles .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.related-articles__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.related-articles__head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}
.related-articles__head h2 em { color: var(--coral); font-style: italic; }
.related-articles__head .more {
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.related-articles__head .more:hover { color: var(--navy); }
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .related-articles__grid { grid-template-columns: 1fr; } }
.related-articles__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-articles__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.related-articles__card .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
}
.related-articles__card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 6px;
}
.related-articles__card p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}
.related-articles__card .read-more {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-top: 8px;
}

/* ============================================================
   PRINT STYLESHEET — quiet, clean, body-only
   ============================================================ */
@media print {
  *, *::before, *::after { background: transparent !important; box-shadow: none !important; text-shadow: none !important; color: #000 !important; }
  body { font-family: Georgia, serif; line-height: 1.5; color: #000; background: #fff; }
  /* Hide non-content chrome */
  .top-bar, .v4-header, .v4-mobile-menu, .v4-footer,
  .final-cta, .scroll-to-top, .reading-progress,
  .mobile-cta, .sticky-cta, .trust-strip-inline,
  .v4-cta-row, .btn-mobile-menu,
  .page-hero__cta, .ctas, .cta-band__actions,
  .v4-mini-brain, .mini-brain, .hero-net,
  .platform-show__visual, .hero-image, .montage,
  iframe, video, audio, .reveal { display: none !important; }
  /* Hero — keep heading, lose background */
  .page-hero, .v4-page-hero {
    background: #fff !important;
    padding: 24px 0 12px !important;
    color: #000 !important;
  }
  .page-hero h1, .v4-page-hero h1 {
    color: #000 !important;
    font-size: 24pt !important;
    margin-bottom: 12pt;
  }
  .page-hero__lead, .v4-page-hero__lead {
    color: #333 !important;
    font-size: 11pt !important;
  }
  /* Body */
  h1 { font-size: 22pt; page-break-after: avoid; }
  h2 { font-size: 16pt; page-break-after: avoid; margin-top: 18pt; }
  h3 { font-size: 13pt; page-break-after: avoid; }
  p, li { font-size: 10.5pt; orphans: 3; widows: 3; }
  a { color: #000 !important; text-decoration: underline; }
  /* Expand links: print URL after them, but only for external */
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  /* Don't expand internal anchors / tel: / mailto: */
  a[href^="#"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after { content: ""; }
  /* Don't break content awkwardly */
  img, .card, .info-card, .step, .symp-card { page-break-inside: avoid; }
  /* Cards: simplify for print */
  .info-card, .card, .step, .symp-card {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    padding: 12pt !important;
    background: #fff !important;
  }
  /* Container width: respect print margins */
  .container { max-width: 100% !important; padding: 0 !important; }
}


/* ============================================================
   ROUND-34: CONTRAST + DARK RHYTHM PASS
   Tightens body-text colour so light sections don't read as faded.
   ============================================================ */

/* Body paragraphs should default to full fg (dark navy), not muted */
section p,
section.section p,
section.section li {
  color: var(--fg);
}

/* But .lead and intro text can stay slightly softer */
.section-head .lead,
.page-hero__lead,
.lead {
  color: var(--fg-muted) !important;
}

/* Card body text in plain content cards — keep darker */
.info-card p,
.card p,
.card__desc,
.symp-card p,
.domain-card__desc,
.domain-card p {
  color: var(--fg-muted);
}

/* Strong borders on cards for crisp definition on cream/paper */
.info-card,
.card,
.symp-card,
.domain-card,
.step,
.loc-card {
  border-color: rgba(10, 34, 62, 0.14);
}

/* Section header eyebrow — slightly stronger contrast */
section .eyebrow {
  color: var(--gold-deep);
}
section.section--navy .eyebrow,
.stats .eyebrow,
.trust-strip-inline .eyebrow {
  color: var(--teal-soft);
}

/* Page-hero — deeper, more atmospheric */
.page-hero,
.v4-page-hero {
  background: linear-gradient(135deg, #02060c 0%, var(--navy-deep) 35%, var(--navy) 100%);
}

/* Stronger h2 contrast on light sections */
section h2,
section.section h2 { color: var(--navy); }

/* h2 em accents — coral pop for visual emphasis */
section h2 em,
section.section h2 em { color: var(--coral); font-style: italic; }

/* Section--cream / paper — match homepage tokens exactly so inner
   pages read identical to the homepage on every display. */
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }

/* ============================================================
   ROUND-65 / ROUND-69: SECTION RHYTHM
   ------------------------------------------------------------
   Bare <section class="section"> blocks need a real background
   instead of pure transparency. Use homepage's exact paper→cream
   gradient (the same one .journey uses on the homepage) so inner
   page rhythm is identical across every display.
   ============================================================ */
section.section:not([class*="--"]):not(.section-tight):not(.section--white) {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
section.section.section-tight:not([class*="--"]) {
  background: var(--paper);
}

/* Two bare .section blocks in a row — alternate so adjacent
   sections read as composed bands. */
section.section:not([class*="--"]) + section.section:not([class*="--"]) {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

/* ============================================================
   ROUND-68: NAVY CLOSING BAND for inner pages
   ------------------------------------------------------------
   Homepage closes with: .magnet (navy "Free Snapshot") → .final-cta
   (cream "Your brain. Your choice."). Inner pages have NO .magnet,
   so they close with .journey (light) → .final-cta (cream) — two
   pale sections at the bottom, missing the homepage's dark presence.
   :has() scoping: only pages WITHOUT a .magnet get the navy treatment;
   homepage's cream .final-cta stays cream because magnet sits before
   it and provides the closing rhythm there.
   ============================================================ */

/* ============================================================
   ROUND-77: NAVY .journey on inner pages — Rolls Royce closing
   ------------------------------------------------------------
   Inner pages have method-band (navy) → journey (cream) → final-cta
   (navy) → footer (navy). The cream journey in the middle reads as
   a "pale void" on middle-gamut displays (MacBook Pro). Convert
   inner-page .journey to a navy band so the closing reads as one
   unified anchored dark close — matching the homepage's premium feel.
   :has(.magnet) scope keeps the homepage's mid-page .journey cream.
   ============================================================ */
body:not(:has(.magnet)) section.journey {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}
body:not(:has(.magnet)) section.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 14% 20%, rgba(52,212,224,.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 86% 80%, rgba(214,95,55,.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(201,164,92,.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
body:not(:has(.magnet)) section.journey > * {
  position: relative;
  z-index: 1;
}

/* Headings + body text on navy */
body:not(:has(.magnet)) section.journey h2,
body:not(:has(.magnet)) section.journey h3,
body:not(:has(.magnet)) section.journey h4 { color: #fff !important; }
body:not(:has(.magnet)) section.journey h2 em { color: var(--coral) !important; font-style: italic; }
body:not(:has(.magnet)) section.journey .eyebrow { color: var(--teal-soft) !important; }
body:not(:has(.magnet)) section.journey .eyebrow::before,
body:not(:has(.magnet)) section.journey .eyebrow::after { background: var(--teal-soft) !important; }
body:not(:has(.magnet)) section.journey .lead,
body:not(:has(.magnet)) section.journey p { color: rgba(255,255,255,.82) !important; }

/* Tier card panels (.step) restyled for navy bg — translucent dark cards */
body:not(:has(.magnet)) section.journey .step {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
}
body:not(:has(.magnet)) section.journey .step .tier-badge { color: var(--teal-soft) !important; }
body:not(:has(.magnet)) section.journey .step .tier-cost { color: var(--coral) !important; }
body:not(:has(.magnet)) section.journey .step h3 { color: #fff !important; }
body:not(:has(.magnet)) section.journey .step p { color: rgba(255,255,255,.80) !important; }
body:not(:has(.magnet)) section.journey .step ul li { color: rgba(255,255,255,.76) !important; }
body:not(:has(.magnet)) section.journey .step a { color: var(--coral) !important; }

/* And .final-cta itself becomes the navy closing band — mirrors
   .magnet from the homepage. The "AT the end" dark anchor. */
body:not(:has(.magnet)) .final-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #02060c 100%) !important;
  color: #fff;
}
body:not(:has(.magnet)) .final-cta::before {
  background:
    radial-gradient(ellipse 50% 50% at 12% 12%, rgba(52,212,224,.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 88% 88%, rgba(214,95,55,.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 100%, rgba(201,164,92,.10) 0%, transparent 60%) !important;
}
body:not(:has(.magnet)) .final-cta h2,
body:not(:has(.magnet)) .final-cta h3 { color: #fff !important; }
body:not(:has(.magnet)) .final-cta h2 em { color: var(--coral-warm) !important; }
body:not(:has(.magnet)) .final-cta .tagline { color: #fff !important; }
body:not(:has(.magnet)) .final-cta .tagline::before,
body:not(:has(.magnet)) .final-cta .tagline::after { background: var(--teal-soft) !important; }
body:not(:has(.magnet)) .final-cta .lead,
body:not(:has(.magnet)) .final-cta p { color: rgba(255,255,255,.82) !important; }
body:not(:has(.magnet)) .final-cta .eyebrow { color: var(--teal-soft) !important; }
body:not(:has(.magnet)) .final-cta .eyebrow::before,
body:not(:has(.magnet)) .final-cta .eyebrow::after { background: var(--teal-soft) !important; }
body:not(:has(.magnet)) .final-cta .or-call {
  color: rgba(255,255,255,.68) !important;
  border-top-color: rgba(255,255,255,.18) !important;
}
body:not(:has(.magnet)) .final-cta .or-call a {
  color: var(--teal-soft) !important;
  border-bottom-color: var(--teal-soft) !important;
}
body:not(:has(.magnet)) .final-cta .or-call a:hover {
  color: var(--coral-warm) !important;
  border-bottom-color: var(--coral-warm) !important;
}

/* Buttons on navy bg — coral primary stays coral; ghost gets light
   border + transparent fill to match homepage magnet treatment. */
body:not(:has(.magnet)) .final-cta .btn-primary,
body:not(:has(.magnet)) .final-cta .btn--primary {
  background: var(--coral) !important;
  color: #fff !important;
  border-color: var(--coral) !important;
}
body:not(:has(.magnet)) .final-cta .btn-primary:hover,
body:not(:has(.magnet)) .final-cta .btn--primary:hover {
  background: var(--coral-warm) !important;
  border-color: var(--coral-warm) !important;
}
body:not(:has(.magnet)) .final-cta .btn-ghost,
body:not(:has(.magnet)) .final-cta .btn--ghost,
body:not(:has(.magnet)) .final-cta .btn--secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.42) !important;
}
body:not(:has(.magnet)) .final-cta .btn-ghost:hover,
body:not(:has(.magnet)) .final-cta .btn--ghost:hover,
body:not(:has(.magnet)) .final-cta .btn--secondary:hover {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.72) !important;
  color: #fff !important;
}

/* ============================================================
   ROUND-35: METHOD BAND — dark mid-page navy break
   Mirrors the homepage's brain-strip/magnet aesthetic so every
   inner page has a strong dark band breaking up the light body
   content.
   ============================================================ */
.method-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: clamp(72px, 9vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.method-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 14% 30%, rgba(52,212,224,.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 92% 80%, rgba(214,95,55,.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(201,164,92,.08) 0%, transparent 55%);
  pointer-events: none;
}
.method-band > * { position: relative; z-index: 1; }
.method-band .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.method-band__head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.method-band__head .eyebrow {
  color: var(--teal-soft);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: center;
}
.method-band__head .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-soft);
}
.method-band__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 18px;
  text-wrap: balance;
}
.method-band__head h2 em { color: var(--teal-soft); font-style: italic; font-weight: 400; }
.method-band__head .lead {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0;
}

.method-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .method-band__grid { grid-template-columns: 1fr; gap: 20px; } }

.method-pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.method-pillar:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(125,240,247,.35);
  transform: translateY(-3px);
}
.method-pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(52,212,224,.12);
  display: grid;
  place-items: center;
  color: var(--teal-bright);
  flex-shrink: 0;
}
.method-pillar__icon .icon { width: 24px; height: 24px; }
.method-pillar__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.method-pillar__tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal-soft);
}
.method-pillar h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -.005em;
}
.method-pillar p {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0;
}
.method-band__footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--teal-soft);
  font-style: italic;
  letter-spacing: .02em;
  font-family: var(--font-display);
}

/* ============================================================
   ROUND-36: CASCADE-WINNING OVERRIDES
   Old concerns.css and styles.css have .page-hero rules at the
   same specificity as v4-chrome.css. v4-chrome.css already loads
   last so it should win — but to make absolutely sure nothing
   else can override our V4 dark-hero treatment, we bump specificity
   here using body-rooted selectors. Identical visual rules, just
   guaranteed-winning specificity.
   ============================================================ */

body .page-hero,
body .v4-page-hero {
  background: linear-gradient(135deg, #02060c 0%, var(--navy-deep) 35%, var(--navy) 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}

body .page-hero::before,
body .v4-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(52,212,224,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 92% 78%, rgba(214,95,55,.08) 0%, transparent 60%) !important;
  pointer-events: none;
  z-index: 0;
}

body .page-hero > *,
body .page-hero .container,
body .page-hero .page-hero__inner,
body .v4-page-hero > * {
  position: relative;
  z-index: 1;
}

body .page-hero .page-hero__title,
body .page-hero__title,
body .page-hero h1,
body .v4-page-hero h1 {
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  max-width: 22ch;
  text-wrap: balance;
}

body .page-hero .page-hero__title em,
body .page-hero h1 em,
body .v4-page-hero h1 em {
  color: var(--teal-soft) !important;
  font-style: italic;
  font-weight: 400;
}

body .page-hero .page-hero__lead,
body .page-hero__lead,
body .page-hero .lead,
body .v4-page-hero .lead {
  color: rgba(255,255,255,.82) !important;
  font-size: 19px;
  line-height: 1.6;
  max-width: 58ch;
}

body .page-hero .eyebrow,
body .page-hero__eyebrow {
  color: var(--teal-soft) !important;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  background: transparent !important;
}
body .page-hero .eyebrow::before,
body .page-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-soft) !important;
  display: inline-block;
}

body .page-hero .breadcrumb,
body .page-hero .breadcrumb a {
  color: rgba(255,255,255,.70) !important;
}
body .page-hero .breadcrumb a:hover { color: #fff !important; }
body .page-hero .breadcrumb__sep { color: rgba(255,255,255,.4) !important; }

/* Hero 2-column layout (legacy markup) */
body .page-hero .page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) 32px clamp(60px, 10vw, 100px);
}
@media (max-width: 980px) {
  body .page-hero .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 96px 24px 56px;
  }
}

body .page-hero .page-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 32px 80px -28px rgba(0,0,0,.5);
}
@media (max-width: 980px) {
  body .page-hero .page-hero__visual {
    aspect-ratio: 4/5;
    max-height: 560px;
    max-width: 360px;
    margin: 0 auto;
  }
  body .page-hero .page-hero__visual img,
  body .page-hero .page-hero__visual video {
    object-position: center 25%;    /* faces are in the upper third of our portraits — anchor crop low */
  }
}
body .page-hero .page-hero__visual video,
body .page-hero .page-hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .page-hero .page-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4,16,31,.5) 100%);
  pointer-events: none;
}

/* Hero CTA buttons on dark navy */
body .page-hero .page-hero__cta .btn--primary,
body .page-hero .page-hero__cta .btn-primary {
  background: var(--coral) !important;
  color: #fff !important;
  border-color: var(--coral) !important;
}
body .page-hero .page-hero__cta .btn--secondary,
body .page-hero .page-hero__cta .btn--ghost,
body .page-hero .page-hero__cta .btn-ghost {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  background: rgba(255,255,255,.06) !important;
}
body .page-hero .page-hero__cta .btn--secondary:hover,
body .page-hero .page-hero__cta .btn-ghost:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: #fff !important;
}

/* ============================================================
   ROUND-37: HOTFIX — .reveal animation hides all content
   The Round-22 .reveal class sets opacity:0 and transform:translateY
   waiting for an IntersectionObserver to add .is-visible. But on
   inner pages the observer isn't firing reliably, so most of the
   page-hero copy, headlines, body text and CTAs remain invisible.
   Force everything visible — animation is not essential.
   ============================================================ */
.reveal,
.reveal.is-hidden,
.page-hero .reveal,
.page-hero__copy.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Lighter version of the fade-in: keep the transition for any
   element that DOES get .is-visible added, but don't hide by
   default. Net result: smooth fade if observer fires, no
   invisibility if it doesn't. */

/* ============================================================
   ROUND-39: BRAIN-ENCAP — lateral brain silhouette + clipped
   network animation behind every page-hero headline.
   Mirrors the homepage's signature visual element.
   ============================================================ */
.brain-encap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 92%);
  aspect-ratio: 5 / 4;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
}
@media (max-width: 980px) {
  .brain-encap {
    width: min(440px, 90%);
    opacity: .62;
  }
}

.brain-encap .brain-silhouette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brain-encap .brain-outline {
  fill: none;
  stroke: rgba(125, 240, 247, 0.45);
  stroke-width: .7;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(52, 212, 224, 0.45));
}
.brain-encap .brain-fissure {
  fill: none;
  stroke: rgba(125, 240, 247, 0.32);
  stroke-width: .55;
  stroke-linecap: round;
}
.brain-encap .brain-gyri {
  fill: none;
  stroke: rgba(125, 240, 247, 0.20);
  stroke-width: .5;
  stroke-linecap: round;
}
.brain-encap .brain-stem {
  fill: none;
  stroke: rgba(125, 240, 247, 0.40);
  stroke-width: .6;
  stroke-linecap: round;
}

.brain-encap .hero-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Round-73: clip-path:url(#brainClip) removed — iOS 15 Safari wipes the
     entire canvas to nothing. Brain-shaped clipping now happens inside the
     canvas via Path2D.clip(), which works on every Safari from 11+. */
}
.brain-encap { overflow: hidden; }

/* Make sure page-hero content sits ABOVE the brain-encap */
body .page-hero .page-hero__inner,
body .page-hero .container,
body .v4-page-hero > .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   ROUND-40: brain-encap inside page-hero__copy (homepage parity)
   The brain-encap was moved INSIDE the text column. These rules
   make it fill the column as a backdrop with the headline overlaying.
   ============================================================ */
body .page-hero__copy {
  position: relative;
}
body .page-hero__copy > .brain-encap {
  position: absolute;
  /* Anchor near the top of the copy column so it sits BEHIND the
     headline area only — not the lead copy or CTAs beneath */
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  width: min(580px, 100%);
  aspect-ratio: 5 / 4;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
@media (max-width: 980px) {
  body .page-hero__copy > .brain-encap {
    top: 28%;
    width: min(420px, 92%);
    opacity: 0.6;
  }
}
/* Headline / breadcrumb / eyebrow / lead / CTAs sit ABOVE the brain */
body .page-hero__copy > * {
  position: relative;
  z-index: 1;
}
body .page-hero__copy > .brain-encap {
  z-index: 0;
}
/* Add subtle inner-shadow gradient so the text reads cleanly even
   over the brightest part of the brain animation */
body .page-hero__copy::before {
  content: "";
  position: absolute;
  /* Darken only the upper area where the brain animation lives,
     so the headline reads cleanly without darkening the lead copy below. */
  left: 0; right: 0; top: 0;
  height: 65%;
  background: radial-gradient(ellipse 70% 80% at 30% 40%, rgba(4,16,31,.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   ROUND-52: MOBILE PARITY WITH HOMEPAGE APPEAL
   Inner pages were losing their visual impact on phones because
   the hero __visual column was display:none below 980px. This
   block restores the cinema-quality mobile experience.
   ============================================================ */

@media (max-width: 780px) {
  /* Tighter hero padding so first impression is content, not chrome */
  body .page-hero .page-hero__inner {
    padding: clamp(48px, 8vw, 80px) 20px clamp(40px, 6vw, 64px);
    gap: 28px;
  }

  /* Reduce excessive vertical white-space inside hero copy */
  body .page-hero h1,
  body .page-hero .page-hero__title {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1.04;
    margin-bottom: 16px;
    max-width: 14ch;
  }

  body .page-hero .page-hero__lead,
  body .page-hero__lead,
  body .page-hero .lead {
    font-size: 16.5px;
    line-height: 1.55;
  }

  /* Hero CTAs side-by-side on mobile, both full-impact */
  .page-hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .page-hero__cta .btn,
  .page-hero__cta a {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }

  /* Container padding tighter on mobile */
  body .v4-page-hero > .container,
  body section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Reduce section padding on mobile so pages don't feel sparse */
  section { padding: 56px 0; }
  section.section { padding: 56px 0; }

  /* Trust strip — single column, more legible */
  .trust-strip-inline { padding: 16px 0; }
  .trust-strip-inline .trust-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 4px;
  }
  .trust-strip-inline .trust-divider { display: none; }
  .trust-strip-inline .trust-item { font-size: 12.5px; }

  /* Stats row — 2x2 grid is fine, but more padding */
  .stat-cell { padding: 22px 20px; }
  .stat-cell .num { font-size: clamp(34px, 9vw, 44px); }
  .stat-cell .lbl { font-size: 12.5px; }

  /* Method band tighter padding */
  .method-band { padding: 56px 0; }
  .method-band__head { margin-bottom: 36px; }
  .method-band__head h2 { font-size: clamp(28px, 7vw, 38px); }
  .method-band__head .lead { font-size: 16px; }
  .method-pillar { padding: 24px 22px; gap: 12px; }
  .method-pillar h3 { font-size: 20px; }
  .method-pillar p { font-size: 14px; }

  /* Journey tier-bridge */
  .journey { padding: 56px 0 64px; }
  .step { padding: 24px 22px 22px; }
  .step h3 { font-size: 20px; }

  /* Final CTA tighter */
  .final-cta { padding: 64px 0 56px; }
  .final-cta h2 { font-size: clamp(28px, 7.5vw, 40px); }
  .final-cta .tagline { font-size: 17px; }
  .final-cta .lead { font-size: 15.5px; padding: 0 4px; }
  .final-cta .ctas .btn { width: 100%; max-width: 320px; }

  /* Cards in grids — single column with proper breathing room */
  .info-grid,
  .domain-grid,
  .symptoms-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Footer column stack */
  .v4-footer { padding-top: 48px; padding-bottom: 24px; }
  .v4-footer h5 { font-size: 14px; margin-bottom: 12px; }

  /* Mini-brain even smaller below 560 */
  @media (max-width: 560px) {
    .page-hero .v4-mini-brain,
    .v4-page-hero .v4-mini-brain {
      width: 110px;
      top: 12px;
      right: 12px;
      opacity: 0.45;
    }
  }
}

/* On very narrow phones, make sure brain-encap doesn't overflow */
@media (max-width: 560px) {
  body .page-hero__copy > .brain-encap {
    width: min(360px, 96%);
    top: 30%;
  }
  body .page-hero h1,
  body .page-hero .page-hero__title {
    font-size: clamp(30px, 9vw, 42px);
  }
}

/* Mobile hero visual — portrait container for portrait source photos.
   Videos (landscape) get a different aspect ratio. */
@media (max-width: 980px) {
  body .page-hero .page-hero__visual {
    aspect-ratio: 4/5;
    max-height: 560px;
    min-height: 280px;
    max-width: 360px;
    margin: 0 auto;
  }
  /* Landscape videos use 16/10 inside the same column */
  body .page-hero .page-hero__visual.has-video {
    aspect-ratio: 16/10;
    max-height: 280px;
    max-width: 100%;
  }
}


/* ============================================================
   ROUND-55: KILL CREAM TOPIC GRADIENTS ON HERO
   concerns.css defines .page-hero--mood / --focus / --memory /
   --recovery / --learning / --sleep with light cream gradients.
   On iOS Safari my body-rooted !important rule was losing to these
   single-class selectors when the page had both classes
   (e.g. page-hero page-hero--mood).
   Solution: explicit higher-specificity override per variant,
   using background-image longhand (more reliable !important
   behaviour in Safari than the shorthand 'background').
   ============================================================ */
body .page-hero,
body .page-hero.page-hero--mood,
body .page-hero.page-hero--focus,
body .page-hero.page-hero--memory,
body .page-hero.page-hero--recovery,
body .page-hero.page-hero--learning,
body .page-hero.page-hero--sleep,
body .page-hero[class*="page-hero--"] {
  background-color: var(--navy-deep) !important;
  background-image: linear-gradient(135deg, #02060c 0%, var(--navy-deep) 35%, var(--navy) 100%) !important;
  color: #fff !important;
}

/* Also kill any cream gradient that might be applied via the
   ::before radial that concerns.css adds — keep our navy glow */
body .page-hero[class*="page-hero--"]::before {
  background:
    radial-gradient(ellipse 60% 50% at 18% 30%, rgba(52,212,224,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 92% 78%, rgba(214,95,55,.08) 0%, transparent 60%) !important;
}

/* ============================================================
   ROUND-60: UNIFORM .symp-card hint subtitle + flex tweaks
   The performance/index.html section uses .symp-card with a
   .symp-card__hint (e.g. "Athletes · performers · high-demand work")
   between the title and the description. Style it as a mono-font
   eyebrow-style subtitle for visual rhythm, and lock the card
   layout so titles/hints/descriptions/links align across cards
   regardless of how many lines each one wraps to.
   ============================================================ */
.symp-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}
.symp-card h3 + .symp-card__hint {
  margin-top: -4px;
}
.symp-card__hint {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.4;
}
.symp-card p {
  flex: 1;       /* push the .more link to the bottom — uniform alignment */
}
.symp-card .more {
  margin-top: auto;
}
/* Sub-links inside symp-card descriptions inherit muted style */
.symp-card p a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.symp-card p a:hover {
  color: var(--navy);
  text-decoration-thickness: 2px;
}

/* ============================================================
   ROUND-61: keep "Explore →" on a single line + stronger card
   visual containment (border-radius + shadow + clear background)
   ============================================================ */
.symp-card .more {
  white-space: nowrap;        /* "Explore" + "→" never split across lines */
  align-self: flex-start;     /* don't stretch across the card */
}
/* Strengthen card visual containment so they read as separate units */
.symp-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.symp-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
