/* ============================================
   NPA ADD-ONS — Mega Nav, Member Gating, Resources
   Loaded after style.css. Navy + gold dominant.
   ============================================ */

/* ---- Logo image in nav/footer ---- */
.nav__logo-img { height: 34px; width: auto; display: block; }
.footer__brand-logo .nav__logo-img { height: 40px; }
@media (max-width: 480px) { .nav__logo-img { height: 28px; } }

/* ============================================
   MEGA NAV
   ============================================ */
.meganav .nav__inner { gap: var(--space-6); }

.meganav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
}

.meganav__item { position: relative; }

.meganav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-2) var(--space-3);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.meganav__link:hover,
.meganav__item:hover .meganav__link[aria-haspopup] { color: var(--color-text); }
.meganav__link .chev { width: 14px; height: 14px; transition: transform .2s var(--ease-out); opacity: .7; }
.meganav__item:hover .meganav__link .chev,
.meganav__item:focus-within .meganav__link .chev { transform: rotate(180deg); }

/* Member login text link */
.meganav__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-2);
  white-space: nowrap;
}
.meganav__login:hover { color: var(--gold-pale); }
.meganav__login svg { width: 15px; height: 15px; }

.meganav__right { display: flex; align-items: center; gap: var(--space-4); }

/* ---- Mega panel ---- */
.megapanel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 540px;
  background: rgba(20, 31, 54, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 132, 44, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
  z-index: 200;
}
.megapanel::before {
  /* hover bridge */
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0; height: 18px;
}
.meganav__item:hover > .megapanel,
.meganav__item:focus-within > .megapanel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Force-close override (added by npa-nav.js on scroll/outside-click/ESC) */
.meganav__item.force-close > .megapanel,
.meganav__item.force-close:hover > .megapanel,
.meganav__item.force-close:focus-within > .megapanel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.megapanel--wide { min-width: 920px; max-width: min(1180px, calc(100vw - 48px)); }
.megapanel--right { left: auto; right: 0; transform: translateX(0) translateY(8px); }
.meganav__item:hover > .megapanel--right,
.meganav__item:focus-within > .megapanel--right { transform: translateX(0) translateY(0); }
.megapanel--left { left: 0; right: auto; transform: translateX(0) translateY(8px); }
.meganav__item:hover > .megapanel--left,
.meganav__item:focus-within > .megapanel--left { transform: translateX(0) translateY(0); }

.megapanel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  align-items: start;
}
.megapanel__grid--2 { grid-template-columns: 1.4fr 1fr; align-items: stretch; }
.megapanel__grid--2 > div:first-child { padding-right: var(--space-2); }
.megapanel__grid--2 .megapanel__feature { min-height: 100%; }

/* Per-panel column templates */
.megapanel__grid--attorneys {
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 1.1fr) minmax(260px, 1fr);
  align-items: stretch;
}
.megapanel__grid--attorneys .megapanel__feature { min-height: 100%; }

.megapanel__grid--providers {
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.6fr) minmax(220px, 1fr);
  align-items: stretch;
}
.megapanel__grid--providers .megapanel__feature { min-height: 100%; }

.megapanel__grid--resources {
  grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(220px, 1fr);
  align-items: stretch;
}
.megapanel__grid--resources .megapanel__feature { min-height: 100%; }

.megapanel__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: 7px;
}
.megapanel__col-title .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink-accent); /* tiny pink accent */
}

.megapanel__links { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 0; margin: 0; }
.megapanel__links a {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition: background .15s var(--ease-out), color .15s var(--ease-out);
}
.megapanel__links a:hover { background: rgba(168, 132, 44, 0.12); color: var(--gold-light); }
.megapanel__links a svg {
  width: 16px; height: 16px;
  color: var(--gold); opacity: .85;
  margin-top: 2px;
  flex-shrink: 0;
}
.megapanel__links .megapanel__txt {
  display: block;
  min-width: 0;
}
.megapanel__links a small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.35;
}

/* Two-column links list (used for the wider Specialty Pages column) */
.megapanel__links--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 12px;
}
.megapanel__links--2col li { min-width: 0; }

/* member-gated link badge inside mega panel */
.megapanel__links .megapanel__txt { position: relative; }
.megapanel__txt .gated-tag { margin-left: 8px; vertical-align: middle; }
.gated-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(168,132,44,.4);
  border-radius: var(--radius-full);
  padding: 1px 7px;
  white-space: nowrap;
}
.gated-tag svg { width: 10px !important; height: 10px !important; margin: 0 !important; color: var(--gold) !important; }

/* featured callout column */
.megapanel__feature {
  background: linear-gradient(155deg, rgba(168,132,44,0.16), rgba(28,43,74,0.2));
  border: 1px solid rgba(168, 132, 44, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.megapanel__feature h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
.megapanel__feature p { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.5; }
.megapanel__feature .btn { margin-top: auto; width: 100%; }

/* ============================================
   MOBILE NAV (accordion)
   ============================================ */
.meganav__panel-mobile { display: none; }

@media (max-width: 960px) {
  .meganav__menu,
  .meganav__right .meganav__login,
  .meganav__right .meganav__cta-desktop { display: none; }

  .nav__hamburger { display: flex; }

  .mobile-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 88vw);
    background: rgba(16, 26, 46, 0.99);
    backdrop-filter: blur(24px);
    z-index: 300;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
    overflow-y: auto;
    padding: 90px var(--space-6) var(--space-10);
    border-left: 1px solid rgba(168,132,44,.25);
  }
  .mobile-nav.active { transform: translateX(0); }

  .mobile-nav__backdrop {
    position: fixed; inset: 0;
    background: rgba(8, 14, 26, 0.6);
    backdrop-filter: blur(2px);
    z-index: 299;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .mobile-nav__backdrop.active { opacity: 1; visibility: visible; }

  .macc { border-bottom: 1px solid var(--color-divider); }
  .macc__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* audit fix: 44px min touch target */
    min-height: 44px;
    padding: var(--space-4) 0;
    background: none; border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
  }
  .macc__head svg { width: 18px; height: 18px; transition: transform .25s var(--ease-out); color: var(--gold); }
  .macc.open .macc__head svg { transform: rotate(180deg); }
  .macc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease-out);
  }
  .macc.open .macc__body { max-height: 1500px; }
  .macc__body ul { list-style: none; padding: 0 0 var(--space-4); display: flex; flex-direction: column; gap: 2px; }
  .macc__body a {
    display: flex; align-items: center; gap: 8px;
    /* audit fix: 44px min touch target */
    min-height: 44px;
    padding: 10px var(--space-3);
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
  }
  .macc__body a:hover { color: var(--gold-light); background: rgba(168,132,44,.1); }
  .macc__body .gated-tag { margin-left: auto; }
  .macc__sub-title { font-size: var(--text-xs); font-weight:700; text-transform:uppercase; letter-spacing:.08em; color: var(--gold); padding: var(--space-3) var(--space-3) var(--space-1); }

  .mobile-nav__footer { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-3); }
  .mobile-nav__footer .btn { width: 100%; }
  .mobile-nav__login {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: var(--gold-light); font-weight: 600; text-decoration: none;
    padding: var(--space-3); border: 1px solid rgba(168,132,44,.35); border-radius: var(--radius-full);
  }
  .mobile-nav__close {
    position: absolute; top: 16px; right: 16px;
    /* audit fix: 44x44 min touch target */
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 9px;
    background: none; border: none; color: var(--color-text); cursor: pointer;
  }
  .mobile-nav__close svg { width: 26px; height: 26px; }
}

@media (min-width: 961px) {
  .nav__hamburger { display: none; }
  .mobile-nav, .mobile-nav__backdrop { display: none; }
}

/* ============================================
   MEMBER-GATED CONTENT SIGNALS
   ============================================ */
.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(168, 132, 44, 0.12);
  border: 1px solid rgba(168, 132, 44, 0.4);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}
.gate-badge svg { width: 13px; height: 13px; }

.gated-card {
  position: relative;
  border: 1px solid rgba(168, 132, 44, 0.25);
  background: rgba(36, 53, 86, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.gated-card__lock {
  position: absolute; top: var(--space-5); right: var(--space-5);
  color: var(--gold); opacity: .7;
}
.gated-card__lock svg { width: 20px; height: 20px; }

/* ============================================
   GENERIC PAGE-HEADER (for new sub pages)
   ============================================ */
.page-head {
  padding-top: 104px;
  padding-bottom: var(--space-10);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-head { padding-top: 112px; padding-bottom: var(--space-12); }
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(20,31,54,0.92) 0%, rgba(20,31,54,0.78) 50%, rgba(20,31,54,0.45) 100%),
    radial-gradient(ellipse at 85% 10%, rgba(168,132,44,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.page-head--with-image {
  background-color: var(--navy);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.page-head--with-image::after {
  background:
    linear-gradient(95deg, rgba(20,31,54,0.96) 0%, rgba(20,31,54,0.82) 45%, rgba(20,31,54,0.5) 80%, rgba(20,31,54,0.35) 100%),
    radial-gradient(ellipse at 85% 0%, rgba(168,132,44,0.12) 0%, transparent 55%);
}
.page-head__inner { position: relative; z-index: 1; }
.page-head__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-4);
}
.page-head__eyebrow .dot { width:6px; height:6px; border-radius:50%; background: var(--pink-accent); }
.page-head__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: var(--text-2xl); color: var(--color-text); line-height: 1.08; max-width: 18ch;
}
.page-head__title em { font-style: normal; color: var(--gold); }
.page-head__sub { margin-top: var(--space-5); font-size: var(--text-lg); color: var(--color-text-muted); max-width: 60ch; line-height: 1.5; }

/* breadcrumb */
.crumbs { display:flex; gap:8px; align-items:center; font-size: var(--text-xs); color: var(--color-text-faint); margin-bottom: var(--space-5); }
.crumbs a { color: var(--color-text-muted); text-decoration:none; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs span.sep { opacity:.5; }

/* ---- Region grid (facilities) ---- */
.region-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: var(--space-5); }
.region-card {
  background: rgba(36, 53, 86, 0.55);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color .2s, transform .2s;
}
.region-card:hover { border-color: rgba(168,132,44,.4); transform: translateY(-3px); }
.region-card__top { display:flex; align-items:baseline; justify-content:space-between; gap: var(--space-3); margin-bottom: var(--space-3); }
.region-card__name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--color-text); }
.region-card__count { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 800; color: var(--gold); line-height: 1; }
.region-card__count span { font-size: var(--text-xs); font-weight:600; color: var(--color-text-muted); display:block; text-transform:uppercase; letter-spacing:.06em; }
.region-card__cities { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; margin-bottom: var(--space-4); min-height: 3em; }
.region-card__cta { display:inline-flex; align-items:center; gap:6px; min-height:44px; padding:6px 0; font-size: var(--text-xs); font-weight:600; color: var(--gold-light); text-decoration:none; } /* audit fix: 44px touch */
.region-card__cta svg { width:13px; height:13px; }
.region-card__cta:hover { color: var(--gold-pale); }

/* spec / chip lists */
.spec-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: var(--space-5); }
.spec-card {
  background: rgba(36,53,86,.5); border:1px solid var(--color-divider);
  border-radius: var(--radius-lg); padding: var(--space-6);
}
.spec-card__icon { width:46px; height:46px; border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; background: rgba(168,132,44,.14); color: var(--gold); margin-bottom: var(--space-4); }
.spec-card__icon svg { width:22px; height:22px; }
.spec-card h3 { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-2); }
.spec-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height:1.55; }

.tag-row { display:flex; flex-wrap:wrap; gap:8px; }
.tag {
  font-size: var(--text-xs); font-weight:600;
  color: var(--color-text-muted);
  border:1px solid var(--color-divider);
  border-radius: var(--radius-full);
  padding: 5px 12px;
}

/* FAQ */
.faq-list { max-width: 800px; margin-inline:auto; }
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-item__q {
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap: var(--space-4);
  padding: var(--space-5) 0; color: var(--color-text);
  font-family: var(--font-display); font-size: var(--text-lg); font-weight:600;
}
.faq-item__q svg { width:20px; height:20px; color: var(--gold); flex-shrink:0; transition: transform .25s; }
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height:0; overflow:hidden; transition: max-height .3s var(--ease-out); }
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p { padding-bottom: var(--space-5); color: var(--color-text-muted); font-size: var(--text-base); line-height:1.6; }

/* steps (how it works) */
.steps { display:grid; gap: var(--space-6); counter-reset: step; }
.step {
  display:grid; grid-template-columns: auto 1fr; gap: var(--space-5); align-items:start;
  background: rgba(36,53,86,.4); border:1px solid var(--color-divider);
  border-radius: var(--radius-lg); padding: var(--space-6);
}
.step__num {
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:800; font-size: var(--text-xl);
  color: var(--gold); border: 2px solid rgba(168,132,44,.4);
  background: rgba(168,132,44,.08);
}
.step h3 { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-base); color: var(--color-text-muted); line-height:1.6; }

/* insights / blog cards reuse existing; placeholder note */
.coming-soon-note {
  text-align:center; padding: var(--space-16) var(--space-6);
  border:1px dashed rgba(168,132,44,.3); border-radius: var(--radius-xl);
  background: rgba(36,53,86,.3);
}
.coming-soon-note svg { width:40px; height:40px; color: var(--gold); margin:0 auto var(--space-4); }
.coming-soon-note h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); margin-bottom: var(--space-3); }
.coming-soon-note p { color: var(--color-text-muted); max-width: 50ch; margin-inline:auto; }

/* member portal interstitial */
.portal-hero { min-height: 86vh; display:flex; align-items:center; justify-content:center; text-align:left; position:relative; overflow:hidden; background: var(--navy); }
.portal-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(ellipse at 50% 40%, rgba(168,132,44,.16) 0%, transparent 60%); }
.portal-hero__inner { position:relative; z-index:1; max-width: 620px; padding: 120px var(--space-6) var(--space-16); }
.portal-hero__lock {
  width: 76px; height:76px; border-radius:50%; margin: 0 auto var(--space-6);
  display:flex; align-items:center; justify-content:center;
  background: rgba(168,132,44,.12); border:1px solid rgba(168,132,44,.4); color: var(--gold);
}
.portal-hero__lock svg { width:34px; height:34px; }

/* utility */
.lead-narrow { max-width: 65ch; }
.section__title em, .cta-section__title em { font-style: normal; color: var(--gold); }

/* ============ MEMBER LOGIN ============ */
.portal-hero { min-height: 100vh; padding: 96px 0 var(--space-12); }
.portal-login {
  width: 100%;
  max-width: 460px;
  padding: 0 var(--space-6);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.portal-login__brand {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: var(--space-7);
}
.portal-login__logo { height: 64px; width: auto; opacity: 0.95; }
.portal-login__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.portal-login__card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 36px 32px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
}
.portal-login__title {
  font-family: var(--font-display, 'Lora', Georgia, serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-align: left;
}
.portal-login__sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0 0 26px;
  text-align: left;
}
.portal-login__form { display: flex; flex-direction: column; gap: 16px; }
.portal-login__field { display: flex; flex-direction: column; gap: 7px; }
.portal-login__field-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.portal-login__field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  text-transform: none;
}
.portal-login__forgot {
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.portal-login__forgot:hover { opacity: 0.8; text-decoration: underline; }
.portal-login__field input[type="email"],
.portal-login__field input[type="password"],
.portal-login__field input[type="text"] {
  width: 100%;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}
.portal-login__field input::placeholder { color: rgba(255,255,255,0.32); }
.portal-login__field input:hover {
  border-color: rgba(255,255,255,0.20);
}
.portal-login__field input:focus {
  border-color: var(--gold);
  background: rgba(0,0,0,0.28);
  box-shadow: 0 0 0 3px rgba(168,132,44,0.18);
}
.portal-login__password { position: relative; }
.portal-login__password input { padding-right: 44px; }
.portal-login__toggle {
  position: absolute;
  right: 4px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; /* audit fix: 44px min */
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}
.portal-login__toggle:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
.portal-login__remember {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  user-select: none;
  margin: 4px 0 4px;
}
.portal-login__remember input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
}
.portal-login__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 14.5px;
  padding: 13px 20px;
  position: relative;
}
.portal-login__submit[disabled] { opacity: 0.85; cursor: progress; }
.portal-login__submit-label { display: inline-flex; align-items: center; gap: 8px; }
.portal-login__spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(28,43,74,0.25);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: portal-spin 0.7s linear infinite;
}
@keyframes portal-spin { to { transform: rotate(360deg); } }
.portal-login__error {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(215,99,136,0.10);
  border: 1px solid rgba(215,99,136,0.32);
  color: #F4C2D4;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 4px;
}
.portal-login__error i { flex-shrink: 0; margin-top: 2px; color: #D76388; }
.portal-login__divider {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0 16px;
  color: rgba(255,255,255,0.42);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portal-login__divider::before,
.portal-login__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.10);
}
.portal-login__request {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 20px;
}
.portal-login__trust {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.portal-login__trust span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}
.portal-login__trust i { color: var(--gold); opacity: 0.75; }
.portal-login__footnote {
  text-align: center;
  margin-top: 18px;
  font-size: 12px; /* audit fix: min readable */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

@media (max-width: 520px) {
  .portal-login__card { padding: 28px 22px 24px; }
  .portal-login__title { font-size: 22px; }
}

/* ============================================================
   WORLD-CLASS HERO PASS — Trust strip, audience grid, process
   banner, response promise, metric float cards, toast stack
   ============================================================ */

/* ============================================================
   HERO — SPLIT LAYOUT (professional two-column with image card)
   ============================================================ */

/* Override legacy hero to accommodate split layout */
.hero.hero--split {
  position: relative;
  min-height: 0;
  padding: 140px 0 72px;
  display: block;
  background: var(--navy);
  overflow: hidden;
  align-items: unset;
}

/* Hide legacy hero children that don't apply to split layout */
.hero.hero--split > .hero__bg-image,
.hero.hero--split > .hero__overlay {
  display: none;
}

.hero--split .hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.55;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__col--text {
  padding-right: 0;
}

.hero__col--text .hero__badge {
  margin-bottom: var(--space-6);
}

.hero__col--text .hero__headline {
  max-width: 16ch;
  margin-bottom: var(--space-6);
}

.hero__col--text .hero__sub {
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

/* Desktop: image sits top-right beside badge+headline; paragraph + CTAs flow
   full-width beneath the image to reduce overall section height.
   Using display: contents on .hero__col--text so its children participate
   directly in .hero__grid's grid. */
@media (min-width: 1024px) {
  .hero--split .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto auto;
    grid-template-areas:
      "badge    image"
      "headline image"
      "body     body"
      "ctas     ctas";
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: 0;
    align-items: start;
  }
  .hero--split .hero__col--text {
    display: contents;
  }
  .hero--split .hero__col--text > .hero__badge {
    grid-area: badge;
    justify-self: start;
    align-self: start;
    margin-bottom: var(--space-6);
  }
  .hero--split .hero__col--text > .hero__headline {
    grid-area: headline;
    justify-self: start;
    align-self: start;
    margin: 0 0 var(--space-6) 0;
    max-width: 16ch;
  }
  .hero--split .hero__col--text > .hero__sub {
    grid-area: body;
    justify-self: start;
    max-width: 82ch;
    margin: var(--space-6) 0 var(--space-6) 0;
  }
  .hero--split .hero__col--text > .hero__ctas {
    grid-area: ctas;
    justify-self: start;
    margin: 0;
  }
  .hero--split .hero__col--image {
    grid-area: image;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

/* ---- Image card: contained, proper aspect ratio, framed ---- */
.hero__col--image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__image-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translateY(0);
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    #000 14%,
    #000 78%,
    transparent 100%);
          mask-image: linear-gradient(180deg,
    transparent 0%,
    #000 14%,
    #000 78%,
    transparent 100%);
}

/* Soft golden glow behind the card */
.hero__image-glow {
  position: absolute;
  top: -8%;
  right: -8%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at center,
    rgba(197, 165, 91, 0.35) 0%,
    rgba(197, 165, 91, 0.12) 40%,
    rgba(197, 165, 91, 0) 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.hero__image-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}

/* Follow strip — Facebook CTA row */
.follow-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 32, 60, 0.9), rgba(15, 24, 44, 0.85));
  border: 1px solid rgba(197, 165, 91, 0.2);
}
.follow-strip__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  margin: 8px 0 6px;
  color: #f5f0e6;
}
.follow-strip__sub {
  color: rgba(245, 240, 230, 0.7);
  max-width: 520px;
  margin: 0;
}
.follow-strip__ctas {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.follow-strip__cta {
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .follow-strip { padding: 32px 24px; }
  .follow-strip__ctas { flex-direction: column; width: 100%; }
  .follow-strip__cta { width: 100%; justify-content: center; }
}

/* Bottom scrim removed — mask fade handles blending into navy background */
.hero__image-card::after { content: none; }

.hero__image-wrap {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__image-wrap .hero__image-card {
  max-width: none;
}

.hero__image-caption {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__image-caption-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-10);
  }
  .hero__col--image {
    justify-content: center;
  }
  .hero__image-card {
    max-width: 560px;
    aspect-ratio: 4 / 3;
  }
  .hero__image-photo {
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .hero--split {
    padding: 120px 0 72px;
  }
  .hero__image-card {
    aspect-ratio: 4 / 3;
    max-width: 100%;
    border-radius: 16px;
  }
  .hero__image-caption {
    bottom: 18px;
    left: 20px;
    right: 20px;
    font-size: 11px;
  }
}

/* ---- METRIC FLOAT CARDS (replaces emoji-y status cards) ---- */
.float-card--metric {
  background: linear-gradient(180deg, rgba(28, 43, 74, 0.92), rgba(28, 43, 74, 0.78));
  border: 1px solid rgba(168, 132, 44, 0.35);
  box-shadow:
    0 18px 48px -20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: var(--space-4) var(--space-5);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-4);
  min-width: 260px;
}
.float-card__num {
  font-family: var(--font-display, "Cabinet Grotesk", serif);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--gold, #A8842C);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.float-card__unit {
  font-size: 16px;
  font-weight: 600;
  margin-left: 2px;
  color: rgba(168, 132, 44, 0.85);
}
.float-card--metric .float-card__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #F0EDE8;
  display: block;
}
.float-card--metric .float-card__text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(240, 237, 232, 0.65);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* ---- TRUST STRIP (proof bar directly under hero) ---- */
.trust-strip {
  background: #131F38;
  border-top: 1px solid rgba(168, 132, 44, 0.18);
  border-bottom: 1px solid rgba(168, 132, 44, 0.18);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.trust-strip__list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.trust-strip__icon {
  width: 22px;
  height: 22px;
  color: var(--gold, #A8842C);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-strip__item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #F0EDE8;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.trust-strip__item span {
  display: block;
  font-size: 12px;
  color: rgba(240, 237, 232, 0.6);
  margin-top: 2px;
  line-height: 1.35;
}
@media (max-width: 1280px) {
  .trust-strip__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .trust-strip__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .trust-strip { padding: 22px 0; }
  .trust-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
  .trust-strip__item strong { font-size: 13px; }
  .trust-strip__item span { font-size: 12px; } /* audit fix: was 11px */
}

/* ---- AUDIENCE GRID (3-up: Attorneys / Providers / Injured) ---- */
.audience-section { padding-top: 72px; padding-bottom: 88px; }
.audience-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.audience-card {
  position: relative;
  display: block;
  background: linear-gradient(180deg, rgba(28, 43, 74, 0.7), rgba(28, 43, 74, 0.35));
  border: 1px solid rgba(168, 132, 44, 0.18);
  border-radius: 18px;
  padding: 32px 30px;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease-out, cubic-bezier(.2,.7,.2,1)),
              border-color .35s, background .35s, box-shadow .35s;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(168, 132, 44, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 132, 44, 0.55);
  background: linear-gradient(180deg, rgba(28, 43, 74, 0.92), rgba(28, 43, 74, 0.55));
  box-shadow: 0 24px 64px -28px rgba(0, 0, 0, 0.7);
}
.audience-card:hover::before { opacity: 1; }
.audience-card--primary {
  border-color: rgba(168, 132, 44, 0.45);
  background: linear-gradient(180deg, rgba(168, 132, 44, 0.12), rgba(28, 43, 74, 0.55));
}
.audience-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #A8842C);
  background: rgba(168, 132, 44, 0.14);
  border: 1px solid rgba(168, 132, 44, 0.4);
  padding: 5px 10px;
  border-radius: 999px;
}
.audience-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(168, 132, 44, 0.12);
  border: 1px solid rgba(168, 132, 44, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #A8842C);
  margin-bottom: 22px;
}
.audience-card__icon i { width: 26px; height: 26px; }
.audience-card__title {
  font-family: var(--font-display, "Cabinet Grotesk", serif);
  font-size: 26px;
  font-weight: 700;
  color: #F5F2EC;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.audience-card__copy {
  color: rgba(240, 237, 232, 0.72);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 22px;
}
.audience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold, #A8842C);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.audience-card__cta i { width: 16px; height: 16px; transition: transform .3s; }
.audience-card:hover .audience-card__cta i { transform: translateX(4px); }

@media (max-width: 960px) {
  .audience-grid { grid-template-columns: 1fr; gap: 14px; }
  .audience-card { padding: 26px 24px; }
}

/* ---- PROCESS BANNER (callout over numbered steps) ---- */
.process-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(168, 132, 44, 0.14), rgba(168, 132, 44, 0.04));
  border: 1px solid rgba(168, 132, 44, 0.4);
  border-radius: 999px;
  padding: 12px 22px;
  margin: 24px 0 36px;
  color: #F0EDE8;
  font-size: 14.5px;
  line-height: 1.4;
}
.process-banner i {
  width: 18px;
  height: 18px;
  color: var(--gold, #A8842C);
  flex-shrink: 0;
}
.process-banner strong { color: var(--gold, #A8842C); font-weight: 700; }
@media (max-width: 640px) {
  .process-banner {
    display: flex;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 13.5px;
  }
}

/* ---- RESPONSE PROMISE MODULE (24hr commitment near footer) ---- */
.response-promise {
  padding: 80px 0;
  background:
    radial-gradient(60% 80% at 20% 50%, rgba(168, 132, 44, 0.08), transparent 60%),
    var(--navy, #1C2B4A);
  border-top: 1px solid rgba(168, 132, 44, 0.18);
}
.response-promise__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.response-promise__title {
  font-family: var(--font-display, "Cabinet Grotesk", serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  color: #F5F2EC;
  line-height: 1.12;
  margin: 14px 0 18px;
  letter-spacing: -0.015em;
}
.response-promise__title em {
  font-style: normal;
  color: var(--gold, #A8842C);
}
.response-promise__copy {
  font-size: 17px;
  color: rgba(240, 237, 232, 0.72);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 26px;
}
.response-promise__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  color: rgba(240, 237, 232, 0.65);
}
.response-promise__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.response-promise__meta i {
  width: 16px;
  height: 16px;
  color: var(--gold, #A8842C);
}
.response-promise__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.response-promise__right .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) {
  .response-promise__inner { grid-template-columns: 1fr; gap: 32px; }
  .response-promise__right .btn { width: auto; }
}

/* ============================================================
   LIVE TOAST NOTIFICATIONS — real-feel recent activity
   ============================================================ */
.npa-toast-stack {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  pointer-events: none;
  max-width: min(380px, calc(100vw - 48px));
}
.npa-toast {
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(19, 31, 56, 0.98), rgba(19, 31, 56, 0.94));
  color: #F0EDE8;
  border: 1px solid rgba(168, 132, 44, 0.35);
  border-radius: 14px;
  padding: 14px 16px 14px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: 0 22px 60px -22px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition: opacity .42s ease, transform .42s cubic-bezier(.2,.7,.2,1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.npa-toast.is-in { opacity: 1; transform: translateY(0) scale(1); }
.npa-toast.is-out { opacity: 0; transform: translateY(8px) scale(.98); }
.npa-toast__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(168, 132, 44, 0.16);
  color: var(--gold, #A8842C);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.npa-toast__icon svg { width: 18px; height: 18px; }
.npa-toast__icon--green { background: rgba(76, 175, 80, 0.16); color: #66BB6A; }
.npa-toast__icon--blue  { background: rgba(66, 165, 245, 0.16); color: #5BA8E8; }
.npa-toast__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.npa-toast__title {
  font-size: 13.5px;
  font-weight: 700;
  color: #F5F2EC;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.npa-toast__meta {
  font-size: 12px;
  color: rgba(240, 237, 232, 0.62);
  line-height: 1.35;
}
.npa-toast__time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(168, 132, 44, 0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.npa-toast__time::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #66BB6A;
  box-shadow: 0 0 0 4px rgba(102, 187, 106, 0.18);
  animation: npa-toast-pulse 1.8s ease-in-out infinite;
}
@keyframes npa-toast-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(102, 187, 106, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(102, 187, 106, 0.06); }
}
.npa-toast__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: 0;
  color: rgba(240, 237, 232, 0.4);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.npa-toast__close:hover { color: #F0EDE8; background: rgba(255,255,255,0.05); }
.npa-toast { position: relative; padding-right: 28px; }

@media (max-width: 520px) {
  .npa-toast-stack {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .npa-toast { grid-template-columns: auto 1fr; padding-right: 32px; }
  .npa-toast__time { grid-column: 2 / 3; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .npa-toast { transition: opacity .2s ease; transform: none !important; }
  .npa-toast__time::before { animation: none; }
}

/* ============================================================
   Process Grid — Editorial 3-column step layout
   Used on index.html diagram-section (navy background)
============================================================ */
.process-grid {
  list-style: none;
  margin: var(--space-12) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  counter-reset: pg;
  position: relative;
}

.process-grid__step {
  position: relative;
  padding: 36px 30px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(168, 132, 44, 0.22);
  border-radius: 14px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, background .35s;
  overflow: hidden;
}

.process-grid__step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 132, 44, 0.6), transparent);
  opacity: 0.6;
}

.process-grid__step:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 132, 44, 0.55);
  background: linear-gradient(180deg, rgba(168, 132, 44, 0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.process-grid__num {
  display: inline-block;
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #A8842C;
  margin-bottom: 18px;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.process-grid__title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #F0EDE8;
  margin: 0 0 12px;
}

.process-grid__copy {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.72);
  margin: 0;
  max-width: 38ch;
}

/* Step 03 — "You choose" — highlight the decision moment */
.process-grid__step:nth-child(3) {
  border-color: rgba(168, 132, 44, 0.55);
  background: linear-gradient(180deg, rgba(168, 132, 44, 0.08) 0%, rgba(168, 132, 44, 0.02) 100%);
}
.process-grid__step:nth-child(3)::after {
  content: "Your decision";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A8842C;
  background: rgba(168, 132, 44, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168, 132, 44, 0.35);
}

/* Step 06 — "You come back to NPA" — loop visual */
.process-grid__step:nth-child(6) {
  border-color: rgba(168, 132, 44, 0.45);
  background: linear-gradient(180deg, rgba(28, 43, 74, 0.5) 0%, rgba(168, 132, 44, 0.04) 100%);
}
.process-grid__step:nth-child(6) .process-grid__num::after {
  content: "↻";
  display: inline-block;
  margin-left: 8px;
  font-size: 32px;
  color: rgba(168, 132, 44, 0.7);
  vertical-align: 6px;
}
.process-grid__step:nth-child(6)::after {
  content: "Back to step 01";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A8842C;
  background: rgba(168, 132, 44, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168, 132, 44, 0.35);
}

/* Connectors removed — were clipped by parent overflow:hidden anyway (audit) */

/* Process banner refinement */
.process-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: var(--space-6) 0 0;
  padding: 10px 18px;
  background: rgba(168, 132, 44, 0.12);
  border: 1px solid rgba(168, 132, 44, 0.4);
  border-radius: 999px;
  color: #F0EDE8;
  font-size: 14px;
  line-height: 1.4;
}
.process-banner i, .process-banner svg { color: #A8842C; width: 16px; height: 16px; }
.process-banner strong { color: #F0EDE8; font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid__step { padding: 32px 26px 28px; }
  .process-grid__num { font-size: 48px; margin-bottom: 14px; }
  .process-grid__title { font-size: 20px; }
}

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; gap: 18px; margin-top: var(--space-8); }
  .process-grid__step { padding: 28px 22px 24px; }
  .process-grid__num { font-size: 44px; margin-bottom: 10px; }
  .process-grid__title { font-size: 19px; }
  .process-grid__copy { font-size: 14.5px; }
  .process-grid__step:nth-child(3)::after,
  .process-grid__step:nth-child(6)::after { font-size: 9px; padding: 4px 8px; }
}

/* Audience card — current page state */
.audience-card--current {
  border-style: dashed;
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}
.audience-card--current .audience-card__cta {
  color: rgba(168, 132, 44, 0.85);
  font-style: italic;
}

/* ============================================================
   Live Pipeline (dashboard) — 6-step animated referral
============================================================ */
.live-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: var(--space-10) 0 var(--space-6);
  padding: 28px 16px;
}

/* Background track behind the steps */
.live-pipeline__track {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 64px;
  height: 2px;
  background: rgba(168, 132, 44, 0.18);
  border-radius: 2px;
  z-index: 0;
}
.live-pipeline__track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #A8842C 0%, #D8B65E 100%);
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 14px rgba(168, 132, 44, 0.55);
}

.live-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 12px 8px 14px;
  border-radius: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s;
}

.live-step__num {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #0F1B33;
  border: 2px solid rgba(168, 132, 44, 0.3);
  color: rgba(240, 237, 232, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 18px;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
}
.live-step__num span { display: inline-block; transition: opacity .25s, transform .25s; }
.live-step__check {
  position: absolute;
  width: 22px;
  height: 22px;
  color: #0F1B33;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .35s, transform .35s cubic-bezier(.2,.7,.2,1);
}

.live-step__title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 15px;
  font-weight: 500;
  color: rgba(240, 237, 232, 0.85);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
  transition: color .3s;
}
.live-step__copy {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(240, 237, 232, 0.55);
  max-width: 18ch;
  margin: 0 auto 8px;
}
.live-step__status {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .3s;
}

/* Active state — currently processing */
.live-step.is-active .live-step__num {
  border-color: #A8842C;
  color: #A8842C;
  box-shadow: 0 0 0 6px rgba(168, 132, 44, 0.12), 0 0 22px rgba(168, 132, 44, 0.35);
  animation: live-step-pulse 1.4s ease-in-out infinite;
}
.live-step.is-active .live-step__title { color: #F0EDE8; }
.live-step.is-active .live-step__status {
  color: #A8842C;
  background: rgba(168, 132, 44, 0.1);
  border-color: rgba(168, 132, 44, 0.35);
}
.live-step.is-active .live-step__status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A8842C;
  margin-right: 6px;
  vertical-align: 1px;
  animation: live-dot 1s ease-in-out infinite;
}

@keyframes live-step-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(168, 132, 44, 0.12), 0 0 22px rgba(168, 132, 44, 0.35); }
  50%      { box-shadow: 0 0 0 10px rgba(168, 132, 44, 0.18), 0 0 30px rgba(168, 132, 44, 0.5); }
}
@keyframes live-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

.live-step.is-active .live-step__status {
  /* will become "Processing..." via JS */
}
/* When activated, the status text is dynamically set; the dot is purely decorative */

/* Complete state — done */
.live-step.is-complete .live-step__num {
  background: #A8842C;
  border-color: #A8842C;
  color: #0F1B33;
  box-shadow: 0 0 0 4px rgba(168, 132, 44, 0.12), 0 0 18px rgba(168, 132, 44, 0.4);
  animation: none;
}
.live-step.is-complete .live-step__num span { opacity: 0; transform: scale(.6); }
.live-step.is-complete .live-step__check { opacity: 1; transform: scale(1); }
.live-step.is-complete .live-step__title { color: #F0EDE8; }
.live-step.is-complete .live-step__status {
  color: #0F1B33;
  background: rgba(168, 132, 44, 0.95);
  border-color: rgba(168, 132, 44, 1);
  font-weight: 700;
}

/* Loop step (06) — reinforces the return-to-NPA loop */
.live-step--loop.is-complete .live-step__num {
  background: linear-gradient(135deg, #A8842C 0%, #D8B65E 100%);
  animation: loop-spin-once .9s cubic-bezier(.2,.7,.2,1);
}
.live-step--loop.is-complete .live-step__check {
  color: #0F1B33;
}
@keyframes loop-spin-once {
  0%   { transform: rotate(0deg) scale(1); }
  60%  { transform: rotate(-180deg) scale(1.08); }
  100% { transform: rotate(-360deg) scale(1); }
}

.live-pipeline__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: var(--space-6);
}
.live-pipeline__caption {
  font-size: 13.5px;
  color: rgba(240, 237, 232, 0.65);
  font-style: italic;
  flex: 1;
  min-width: 240px;
}

/* Responsive */
@media (max-width: 1024px) {
  .live-pipeline { grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }
  .live-pipeline__track { display: none; }
}
@media (max-width: 640px) {
  .live-pipeline { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; padding: 20px 8px; }
  .live-step__num { width: 48px; height: 48px; font-size: 16px; margin-bottom: 10px; }
  .live-step__title { font-size: 14px; }
  .live-step__copy { font-size: 12px; }
}

/* ============================================================
   Nav bell — live activity indicator
============================================================ */
.nav-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; /* audit fix: 44px min */
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(168, 132, 44, 0.25);
  color: rgba(240, 237, 232, 0.85);
  cursor: pointer;
  margin-right: 6px;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
}
.nav-bell i, .nav-bell svg { width: 18px; height: 18px; }
.nav-bell:hover {
  border-color: rgba(168, 132, 44, 0.6);
  color: #F0EDE8;
  background: rgba(168, 132, 44, 0.06);
}
.nav-bell:active { transform: scale(.96); }

.nav-bell__dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 2px var(--color-navy, #1C2B4A);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .25s, transform .25s;
}
.nav-bell--has-activity .nav-bell__dot {
  opacity: 1;
  transform: scale(1);
  animation: nav-bell-dot-pulse 1.6s ease-in-out infinite;
}
@keyframes nav-bell-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--color-navy, #1C2B4A), 0 0 0 0 rgba(34, 197, 94, 0.55); }
  60%      { box-shadow: 0 0 0 2px var(--color-navy, #1C2B4A), 0 0 0 7px rgba(34, 197, 94, 0); }
}

.nav-bell__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #A8842C;
  color: #0F1B33;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--color-navy, #1C2B4A);
  animation: nav-bell-count-pop .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes nav-bell-count-pop {
  0%   { transform: scale(.4); opacity: 0; }
  70%  { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(1); }
}

/* Bell pulse: shake + ring on each step completion */
.nav-bell--pulse {
  animation: nav-bell-pulse .9s cubic-bezier(.2,.7,.2,1);
}
.nav-bell--pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 2px solid rgba(168, 132, 44, 0.65);
  opacity: 0;
  animation: nav-bell-ring .9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
@keyframes nav-bell-pulse {
  0%   { transform: rotate(0) scale(1); }
  15%  { transform: rotate(-12deg) scale(1.08); }
  30%  { transform: rotate(10deg)  scale(1.08); }
  45%  { transform: rotate(-6deg)  scale(1.04); }
  60%  { transform: rotate(4deg)   scale(1.02); }
  100% { transform: rotate(0)      scale(1); }
}
@keyframes nav-bell-ring {
  0%   { opacity: 0.9; transform: scale(.85); }
  100% { opacity: 0;   transform: scale(1.5); }
}

/* ============================================================
   Nav glow (case-closed reinforcement) — fires when step 06
   completes. Soft gold halo across the entire nav bar.
============================================================ */
.nav--reinforced {
  position: relative;
  animation: nav-reinforce 6s ease-out forwards;
}
.nav--reinforced::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(168, 132, 44, 0.32) 0%, rgba(168, 132, 44, 0) 60%),
    linear-gradient(180deg, rgba(168, 132, 44, 0.16) 0%, rgba(168, 132, 44, 0) 100%);
  opacity: 0;
  animation: nav-reinforce-glow 6s ease-out forwards;
  z-index: 0;
}
.nav--reinforced::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #A8842C 30%, #D8B65E 50%, #A8842C 70%, transparent 100%);
  box-shadow: 0 0 18px rgba(168, 132, 44, 0.7);
  opacity: 0;
  animation: nav-reinforce-line 6s ease-out forwards;
  pointer-events: none;
  z-index: 2;
}
.nav--reinforced .nav__inner,
.nav--reinforced .container { position: relative; z-index: 1; }

@keyframes nav-reinforce {
  0%   { box-shadow: 0 0 0 0 rgba(168, 132, 44, 0); }
  10%  { box-shadow: 0 6px 40px rgba(168, 132, 44, 0.35), inset 0 0 0 1px rgba(168, 132, 44, 0.35); }
  60%  { box-shadow: 0 6px 28px rgba(168, 132, 44, 0.18), inset 0 0 0 1px rgba(168, 132, 44, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(168, 132, 44, 0); }
}
@keyframes nav-reinforce-glow {
  0%   { opacity: 0; }
  12%  { opacity: 1; }
  70%  { opacity: 0.5; }
  100% { opacity: 0; }
}
@keyframes nav-reinforce-line {
  0%   { opacity: 0; transform: scaleX(.2); }
  15%  { opacity: 1; transform: scaleX(1); }
  85%  { opacity: 0.7; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .live-step.is-active .live-step__num { animation: none; }
  .live-pipeline__track-fill { transition: width .2s linear; }
  .nav-bell--has-activity .nav-bell__dot { animation: none; }
  .nav-bell--pulse { animation: none; }
  .nav-bell--pulse::after { animation: none; opacity: 0; }
  .nav--reinforced, .nav--reinforced::before, .nav--reinforced::after { animation-duration: .2s; }
}

/* ===== Specialty Link Grid (providers.html) ===== */
.specialty-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.specialty-link-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(168, 132, 44, 0.18);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.specialty-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 132, 44, 0.45);
  background: rgba(255, 255, 255, 0.035);
}
.specialty-link-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(168, 132, 44, 0.12);
  color: #A8842C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.specialty-link-card__content strong {
  display: block;
  color: #F0EDE8;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.specialty-link-card__content span {
  display: block;
  color: rgba(240, 237, 232, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.specialty-link-card__content em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A8842C;
  font-weight: 600;
  transition: gap .25s ease;
}
.specialty-link-card:hover .specialty-link-card__content em {
  gap: 10px;
}
