/* ══════════════════════════════════════════════════════════
   Sexual Abuse Center: Design System
   /css/styles.css  · shared across every page
   Structure follows the CPCenter system; palette is tuned for
   survivor-facing legal content (teal = sexual assault awareness).
══════════════════════════════════════════════════════════ */

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

:root {
  --navy-deep:  #0B1F33;
  --navy:       #12395B;
  --navy-light: #2E6B93;
  --teal:       #17A398;
  --teal-light: #9BE3DC;
  --rose:       #D9636B;
  --amber:      #E0A33D;
  --sand:       #F8F6F1;
  --mist:       #E6E4DF;
  --white:      #FFFFFF;
  --slate:      #3B4A59;
  --muted:      #7D8B99;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(11,31,51,0.06);
  --shadow-md: 0 4px 20px rgba(11,31,51,0.08);
  --shadow-lg: 0 8px 40px rgba(11,31,51,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--sand);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--teal-light); color: var(--navy-deep); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-deep); color: #fff; padding: 12px 20px;
  border-radius: 0 0 8px 0; font-size: 14px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ══════════════════════════════════
   SAFETY / HELP BAR
══════════════════════════════════ */
.help-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.help-bar-inner {
  max-width: 1320px; margin: 0 auto; padding: 9px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.help-bar-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.help-bar-item svg { opacity: 0.6; flex-shrink: 0; }
.help-bar a { color: var(--teal-light); text-decoration: none; font-weight: 600; }
.help-bar a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11,31,51,0.07);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links a {
  padding: 8px 14px; font-size: 14.5px; font-weight: 500;
  color: var(--slate); text-decoration: none; border-radius: 8px;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a svg { opacity: 0.5; transition: opacity 0.2s, transform 0.2s; flex-shrink: 0; }
.nav-links a:hover { background: var(--sand); color: var(--navy); }
.nav-links a:hover svg { opacity: 0.8; transform: translateY(1px); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 10px 44px rgba(11,31,51,0.16);
  border: 1px solid rgba(11,31,51,0.06);
  padding: 8px; min-width: 268px;
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 200;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%); width: 100%; height: 16px;
}
.nav-links li:hover .nav-dropdown,
.nav-links li:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 8px 10px;
  font-size: 14px; font-weight: 400; color: var(--slate);
  text-decoration: none; border-radius: 10px; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--sand); color: var(--navy); }
.nav-dropdown-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.15s;
}
.nav-dropdown-icon svg { width: 15px; height: 15px; opacity: 1; }
.nav-dropdown a:hover .nav-dropdown-icon { background: #dcf1ee; }
.nav-dropdown-divider { height: 1px; background: var(--mist); margin: 6px 8px; }
.nav-dropdown a.nav-dropdown-all {
  color: var(--navy-light); font-weight: 600; font-size: 13px;
  margin-top: 2px; padding-left: 14px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }

.mobile-menu-btn {
  display: none; width: 40px; height: 40px; border-radius: 8px;
  border: 1.5px solid var(--mist); background: var(--white); cursor: pointer;
  align-items: center; justify-content: center; transition: background 0.2s; flex-shrink: 0;
}
.mobile-menu-btn:hover { background: var(--sand); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(11,31,51,0.5);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  height: 100vh; height: -webkit-fill-available;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; width: 320px; max-width: 88vw; height: 100%;
  background: var(--white); box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  padding: 24px; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--mist);
}
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 8px; border: none; background: var(--sand);
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--mist); }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu-links a {
  display: block; padding: 12px 16px; font-size: 15.5px; font-weight: 500;
  color: var(--slate); text-decoration: none; border-radius: 10px; transition: background 0.2s;
}
.mobile-menu-links a:hover { background: var(--sand); color: var(--navy); }
.mobile-menu-links a.sub { padding-left: 30px; font-size: 13.5px; color: var(--muted); }
.mobile-menu-cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--mist); }
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 24px; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 14.5px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.25s;
  line-height: 1.3;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(18,57,91,0.28); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #128d84; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(23,163,152,0.32); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--mist); }
.btn-outline:hover { border-color: var(--navy-light); color: var(--navy-deep); background: var(--white); }
.btn-lg { padding: 14px 30px; font-size: 15.5px; }
.nav-actions .btn-primary:hover { background: var(--teal) !important; color: var(--white) !important; }

/* ══════════════════════════════════
   PILLAR HERO
══════════════════════════════════ */
.pillar-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #0B1F33 0%, #12395B 45%, #1E5C7E 100%);
  padding: 76px 48px 32px;
}
.pillar-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 10%, rgba(23,163,152,0.16), transparent 60%);
  pointer-events: none;
}
.pillar-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,227,220,0.35), transparent);
}
.pillar-hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 80%);
}
.pillar-hero-waves { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.pillar-hero-deco { position: absolute; pointer-events: none; opacity: 0.13; }
.pillar-hero-deco-1 { top: 40px; right: 8%; width: 120px; height: 120px; }
.pillar-hero-deco-2 { bottom: 150px; left: 4%; width: 80px; height: 80px; }
.pillar-hero-deco-3 { top: 120px; right: 24%; width: 60px; height: 60px; }

.pillar-hero-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 2; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.42); margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal-light); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(23,163,152,0.16); border: 1px solid rgba(155,227,220,0.3);
  color: var(--teal-light); font-size: 12px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.hero-badge svg { flex-shrink: 0; }
.hero-badge.urgent { background: rgba(217,99,107,0.18); border-color: rgba(217,99,107,0.4); color: #FFC7CB; }

.pillar-hero h1 {
  font-family: 'Lora', serif; font-weight: 400; font-size: 46px;
  line-height: 1.15; letter-spacing: -0.5px; color: var(--white);
  max-width: 880px; margin-bottom: 18px;
}
.pillar-hero-sub {
  font-size: 17.5px; line-height: 1.65; color: rgba(255,255,255,0.72);
  max-width: 760px; font-weight: 300;
}
.pillar-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  margin-top: 26px; font-size: 13px; color: rgba(255,255,255,0.45);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta-item svg { opacity: 0.5; flex-shrink: 0; }
.hero-meta time { font-style: normal; }
.hero-meta-author { color: rgba(255,255,255,0.66); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
.hero-meta-author:hover { color: var(--teal-light); border-color: var(--teal-light); }

.hero-stat-ribbon { max-width: 1320px; margin: 42px auto 0; position: relative; z-index: 2; }
.hero-stat-ribbon-inner {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 18px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 24px 30px;
}
.hero-ribbon-item { display: flex; align-items: flex-start; gap: 14px; position: relative; }
.hero-ribbon-item:not(:last-child)::after {
  content: ''; position: absolute; right: -14px; top: 6%; height: 88%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.hero-ribbon-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: rgba(23,163,152,0.18); border: 1px solid rgba(155,227,220,0.2);
  display: flex; align-items: center; justify-content: center;
}
.hero-ribbon-icon svg { width: 22px; height: 22px; }
.hero-ribbon-text { display: flex; flex-direction: column; gap: 3px; }
.hero-ribbon-val { font-family: 'Lora', serif; font-size: 21px; color: var(--white); line-height: 1.15; }
.hero-ribbon-label { font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════
   CONTENT LAYOUT
══════════════════════════════════ */
.content-wrap {
  max-width: 1320px; margin: 40px auto 0; padding: 0 48px 80px;
  display: grid; grid-template-columns: 1fr 340px; gap: 40px;
  align-items: stretch;
}
.content-wrap.single { grid-template-columns: 1fr; max-width: 900px; }

/* ══════════════════════════════════
   ARTICLE
══════════════════════════════════ */
.article {
  background: var(--white); border-radius: 20px;
  padding: 52px 48px 60px; box-shadow: var(--shadow-sm);
  min-width: 0;
}
.article img { max-width: 100%; height: auto; }
.article h2 {
  font-family: 'Lora', serif; font-weight: 400; font-size: 30px;
  color: var(--navy-deep); line-height: 1.25; margin: 48px 0 16px; letter-spacing: -0.3px;
  scroll-margin-top: 90px;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: 18px; font-weight: 600; color: var(--navy-deep);
  margin: 32px 0 12px; line-height: 1.4; scroll-margin-top: 90px;
}
.article h4 { font-size: 15.5px; font-weight: 600; color: var(--navy); margin: 24px 0 8px; }
.article p { font-size: 16px; line-height: 1.75; color: #4A5B6B; margin-bottom: 18px; }
.article p.snippet {
  font-size: 17px; line-height: 1.7; color: var(--slate);
  border-left: 3px solid var(--teal); padding-left: 18px; margin-bottom: 22px;
}
.article ul, .article ol { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.article ol { counter-reset: aol; }
.article li {
  position: relative; padding-left: 22px; font-size: 15.5px;
  line-height: 1.7; color: #4A5B6B; margin-bottom: 10px;
}
.article ul > li::before {
  content: ''; position: absolute; left: 2px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}
.article ol > li { counter-increment: aol; padding-left: 28px; }
.article ol > li::before {
  content: counter(aol) '.'; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 700; font-size: 14px;
}
.article a {
  color: var(--navy-light); text-decoration: underline;
  text-decoration-color: rgba(46,107,147,0.32); text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.article a:hover { color: var(--navy-deep); text-decoration-color: var(--navy-light); }
.article .btn, .article .toc a, .article .stat-inline a,
.article .entity-card, .article .link-card, .article .case-card { text-decoration: none; }
.article-img { width: 100%; border-radius: var(--radius); margin: 26px 0; display: block; }
.article-fig { margin: 26px 0; }
.article-fig figcaption { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

.article hr {
  border: none; height: 1px; background: var(--mist); margin: 40px 0;
}

/* ══════════════════════════════════
   CALLOUTS
══════════════════════════════════ */
.callout { border-radius: 12px; padding: 18px 22px; margin: 24px 0; }
.callout-info    { background: #EDF4F9; border-left: 4px solid var(--navy-light); }
.callout-warning { background: #FDF6E7; border-left: 4px solid var(--amber); }
.callout-legal   { background: linear-gradient(120deg, #E7F7F4 0%, #EDF4F9 100%); border-left: 4px solid var(--teal); }
.callout-urgent  { background: #FCEEEF; border-left: 4px solid var(--rose); }
.callout-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--navy-deep); margin-bottom: 7px;
}
.callout-title svg { flex-shrink: 0; }
.callout p { font-size: 14.5px; line-height: 1.65; color: #4A5B6B; margin-bottom: 0; }
.callout p + p { margin-top: 10px; }
.callout ul { margin: 10px 0 0; }
.callout li { font-size: 14px; margin-bottom: 6px; }

/* ══════════════════════════════════
   TABLE OF CONTENTS
══════════════════════════════════ */
.toc {
  background: var(--sand); border-radius: 14px; padding: 24px 28px;
  margin: 28px 0; position: relative; overflow: hidden;
}
.toc-bg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.toc-title, .toc ol { position: relative; z-index: 1; }
.toc-title {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--muted); margin-bottom: 14px;
}
.toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; }
.toc li { counter-increment: toc; position: relative; padding-left: 26px; margin-bottom: 9px; }
.toc li::before {
  content: counter(toc, decimal-leading-zero); position: absolute; left: 0; top: 1px;
  font-size: 11.5px; font-weight: 700; color: var(--teal);
}
.toc li:nth-child(n+6) { display: none; }
.toc.toc-expanded li { display: list-item; }
.toc a { font-size: 14.5px; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.toc a:hover { color: var(--navy); }
.toc-toggle {
  position: relative; z-index: 1; margin-top: 12px; background: none; border: none;
  cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--navy-light); display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.toc-toggle:hover { color: var(--navy); }
.toc-toggle svg { transition: transform 0.3s; }
.toc-toggle.expanded svg { transform: rotate(180deg); }

/* ══════════════════════════════════
   INLINE STATS
══════════════════════════════════ */
.stat-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; }
.stat-inline.two { grid-template-columns: repeat(2, 1fr); }
.stat-inline.four { grid-template-columns: repeat(4, 1fr); }
.stat-inline-item { background: var(--sand); border-radius: 12px; padding: 18px 20px; }
.stat-inline-num { font-family: 'Lora', serif; font-size: 28px; color: var(--navy); line-height: 1.1; margin-bottom: 5px; }
.stat-inline-num .accent { color: var(--teal); }
.stat-inline-label { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════
   CASE STATUS PANEL
══════════════════════════════════ */
.status-panel {
  border: 1px solid var(--mist); border-radius: 16px; overflow: hidden;
  margin: 28px 0; background: var(--white);
}
.status-panel-head {
  background: var(--navy-deep); color: #fff; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.status-panel-head h3 { font-size: 14px; font-weight: 600; color: #fff; margin: 0; letter-spacing: 0.2px; }
.status-pill {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 11px; border-radius: 100px; white-space: nowrap;
}
.status-pill.active   { background: rgba(23,163,152,0.2);  color: #7FDBD1; border: 1px solid rgba(23,163,152,0.4); }
.status-pill.settled  { background: rgba(224,163,61,0.18); color: #F2CE8E; border: 1px solid rgba(224,163,61,0.4); }
.status-pill.closed   { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.status-pill.appeal   { background: rgba(217,99,107,0.18); color: #FFC1C5; border: 1px solid rgba(217,99,107,0.4); }
.status-rows { display: grid; grid-template-columns: repeat(2, 1fr); }
.status-row {
  padding: 14px 22px; border-bottom: 1px solid var(--mist);
}
.status-row:nth-child(odd) { border-right: 1px solid var(--mist); }
.status-row:last-child, .status-rows .status-row:nth-last-child(-n+2):nth-child(odd) { }
.status-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--muted); margin-bottom: 4px;
}
.status-value { font-size: 14.5px; color: var(--navy-deep); font-weight: 500; line-height: 1.45; }
.status-value small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* ══════════════════════════════════
   TIMELINE
══════════════════════════════════ */
.timeline { margin: 26px 0; position: relative; padding-left: 4px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--teal), var(--mist));
}
.tl-item { position: relative; padding-left: 34px; padding-bottom: 24px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: 2px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--teal);
}
.tl-item.muted::before { border-color: var(--mist); }
.tl-date {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal); margin-bottom: 4px;
}
.tl-item.muted .tl-date { color: var(--muted); }
.tl-title { font-size: 15.5px; font-weight: 600; color: var(--navy-deep); margin-bottom: 5px; line-height: 1.4; }
.tl-desc { font-size: 14.5px; line-height: 1.65; color: #4A5B6B; margin: 0; }

/* ══════════════════════════════════
   DATA TABLE
══════════════════════════════════ */
.data-table-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--mist); margin: 24px 0; }
.data-table-scroll { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.data-table thead th {
  background: var(--navy); color: #fff; padding: 11px 16px; text-align: left;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px;
  white-space: nowrap;
}
.data-table tbody tr:nth-child(even) td { background: var(--sand); }
.data-table tbody tr:hover td { background: rgba(23,163,152,0.07); }
.data-table td {
  padding: 11px 16px; border-bottom: 1px solid var(--mist);
  color: #4A5B6B; vertical-align: top; line-height: 1.55;
}
.data-table td:first-child { font-weight: 600; color: var(--navy-deep); }
.data-table .hl { color: var(--teal); font-weight: 600; }
.data-table tr.hidden { display: none; }
.table-search-wrap { position: relative; margin-bottom: 12px; }
.table-search {
  width: 100%; padding: 11px 14px 11px 40px; border: 1.5px solid var(--mist);
  border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 14.5px;
  color: var(--slate); background: var(--white); outline: none; transition: border-color 0.2s;
}
.table-search:focus { border-color: var(--navy-light); }
.table-search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); opacity: 0.4; }
.table-no-results { text-align: center; padding: 24px; color: var(--muted); font-style: italic; display: none; }

/* ══════════════════════════════════
   CARDS: entity / case / link
══════════════════════════════════ */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 26px 0; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.one { grid-template-columns: 1fr; }

.entity-card {
  display: block; background: var(--white); border: 1px solid var(--mist);
  border-radius: 14px; padding: 22px 24px; transition: all 0.25s; position: relative; overflow: hidden;
}
a.entity-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.entity-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.entity-icon {
  width: 40px; height: 40px; border-radius: 11px; background: var(--sand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.entity-card h3 { font-family: 'Lora', serif; font-weight: 400; font-size: 19px; color: var(--navy-deep); margin: 0 0 2px; line-height: 1.3; }
.entity-card .eyebrow {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal); margin: 0;
}
.entity-card p { font-size: 14px; line-height: 1.6; color: #6B7A89; margin: 0; }
.entity-card .entity-stat {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--mist);
  display: flex; align-items: baseline; gap: 8px;
}
.entity-stat-num { font-family: 'Lora', serif; font-size: 22px; color: var(--navy); }
.entity-stat-label { font-size: 12px; color: var(--muted); }

.link-card {
  display: flex; align-items: center; gap: 14px; background: var(--white);
  border: 1px solid var(--mist); border-radius: 12px; padding: 16px 18px; transition: all 0.22s;
}
a.link-card:hover { border-color: var(--teal); background: #FCFEFE; transform: translateX(3px); }
.link-card-body { min-width: 0; }
.link-card-title { font-size: 15px; font-weight: 600; color: var(--navy-deep); margin-bottom: 2px; line-height: 1.35; }
.link-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.link-card-arrow { margin-left: auto; flex-shrink: 0; opacity: 0.35; transition: opacity 0.2s, transform 0.2s; }
a.link-card:hover .link-card-arrow { opacity: 0.9; transform: translateX(3px); }

/* ══════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════ */
.faq-section { margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--mist); }
.faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 0; text-align: left; background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 15.5px; font-weight: 500;
  color: var(--navy-deep); transition: color 0.2s;
}
.faq-toggle:hover { color: var(--navy-light); }
.faq-toggle-icon { flex-shrink: 0; width: 24px; height: 24px; transition: transform 0.3s; }
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 0 20px; }
.faq-item.open .faq-body { display: block; }
.faq-body p { font-size: 15px; color: #4A5B6B; margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════
   SOURCES
══════════════════════════════════ */
.sources { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--mist); }
.sources-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.6px; color: var(--muted); margin-bottom: 14px;
}
.sources ol { counter-reset: src; list-style: none; padding: 0; margin: 0; }
.sources li {
  counter-increment: src; position: relative; padding-left: 26px;
  font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 9px;
}
.sources li::before {
  content: counter(src) '.'; position: absolute; left: 0; top: 0;
  font-size: 11.5px; font-weight: 700; color: var(--mist);
}
.sources a { color: var(--navy-light); word-break: break-word; }

/* ══════════════════════════════════
   SIDEBAR
══════════════════════════════════ */
.sidebar { min-width: 0; }
.sidebar-inner {
  display: flex; flex-direction: column; gap: 22px;
  position: sticky; top: 90px;
}

.sidebar-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(11,31,51,0.05);
}
.sidebar-card-header { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 24px 26px 22px; }
.sidebar-card-header h3 { font-family: 'Lora', serif; font-weight: 400; font-size: 20px; color: #fff; line-height: 1.3; margin-bottom: 7px; }
.sidebar-card-header p { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.55; }
.sidebar-card-body { padding: 24px 26px 26px; }
.sidebar-step { display: none; }
.sidebar-step.active { display: block; }

.field-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy-deep); margin-bottom: 7px; }
.field-hint { font-size: 12px; color: var(--muted); line-height: 1.5; margin-top: -2px; margin-bottom: 12px; }

.select-wrap { position: relative; margin-bottom: 14px; }
.select-wrap svg { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); }
.form-select, .form-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--mist); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 14.5px; color: var(--slate);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.form-select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
.form-input:focus, .form-select:focus { border-color: var(--navy-light); }
.form-input::placeholder { color: #A8B4BF; }
textarea.form-input { min-height: 84px; resize: vertical; line-height: 1.55; }
.form-grid { display: flex; flex-direction: column; gap: 11px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.radio-row { display: flex; gap: 8px; margin-bottom: 14px; }
.radio-option { flex: 1; }
.radio-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-option label {
  display: block; text-align: center; padding: 10px 8px; border: 1.5px solid var(--mist);
  border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--slate);
  cursor: pointer; transition: all 0.18s; background: var(--white);
}
.radio-option input:checked + label { border-color: var(--teal); background: #ECF9F7; color: var(--navy-deep); font-weight: 600; }
.radio-option input:focus-visible + label { outline: 3px solid var(--teal); outline-offset: 2px; }

.btn-block {
  width: 100%; padding: 13px 20px; border: none; border-radius: 10px;
  background: var(--teal); color: #fff; font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.22s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.btn-block:hover:not(:disabled) { background: #128d84; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(23,163,152,0.3); }
.btn-block:disabled { background: var(--mist); color: #A8B4BF; cursor: not-allowed; }
.btn-block small { display: block; font-size: 11px; font-weight: 400; opacity: 0.8; }

.step-back {
  background: none; border: none; cursor: pointer; padding: 0; margin-bottom: 12px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--muted); display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s;
}
.step-back:hover { color: var(--navy); }

.sidebar-trust {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--mist);
  font-size: 11.5px; color: var(--muted); text-align: center;
}
.sidebar-trust svg { flex-shrink: 0; opacity: 0.45; }

.form-note { font-size: 11.5px; color: var(--muted); line-height: 1.55; margin-top: 12px; }
.form-note a { color: var(--navy-light); }

.form-alert { display: none; padding: 14px 16px; border-radius: 10px; font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.form-alert.ok  { background: #E7F7F4; border-left: 3px solid var(--teal); color: var(--navy-deep); }
.form-alert.err { background: #FCEEEF; border-left: 3px solid var(--rose); color: #96343B; }
.form-alert strong { display: block; margin-bottom: 3px; }

/* Sidebar: hotline card */
.sidebar-hotline {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: 16px; padding: 22px 24px;
}
.sidebar-hotline h4 {
  font-family: 'Lora', serif; font-weight: 400; font-size: 18px;
  color: var(--navy-deep); margin-bottom: 6px;
}
.sidebar-hotline > p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.hotline-row {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0; border-top: 1px solid var(--mist);
}
.hotline-icon {
  width: 30px; height: 30px; border-radius: 8px; background: #ECF9F7;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hotline-name { font-size: 13.5px; font-weight: 600; color: var(--navy-deep); line-height: 1.35; }
.hotline-name a { color: var(--navy-deep); text-decoration: none; }
.hotline-name a:hover { color: var(--teal); }
.hotline-detail { font-size: 12px; color: var(--muted); line-height: 1.45; margin-top: 1px; }

/* Sidebar: related */
.sidebar-related { background: var(--white); border: 1px solid var(--mist); border-radius: 16px; padding: 22px 24px; }
.sidebar-related-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-bottom: 14px;
}
.related-item { display: block; padding: 11px 0; border-top: 1px solid var(--mist); text-decoration: none; }
.related-item:first-of-type { border-top: none; padding-top: 0; }
.related-headline { font-size: 14px; font-weight: 500; color: var(--navy-deep); line-height: 1.45; transition: color 0.2s; }
.related-item:hover .related-headline { color: var(--teal); }
.related-meta { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* Sidebar: dark CTA */
.sidebar-cta-2 {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 16px; padding: 26px 24px; text-align: center;
}
.sidebar-cta-2-icon {
  width: 46px; height: 46px; border-radius: 13px; margin: 0 auto 14px;
  background: rgba(23,163,152,0.22); border: 1px solid rgba(155,227,220,0.24);
  display: flex; align-items: center; justify-content: center;
}
.sidebar-cta-2 h4 { font-family: 'Lora', serif; font-weight: 400; font-size: 19px; color: #fff; line-height: 1.35; margin-bottom: 9px; }
.sidebar-cta-2 p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 18px; }
.sidebar-cta-2-btn {
  display: inline-flex; align-items: center; gap: 7px; background: var(--teal); color: #fff;
  padding: 11px 22px; border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.22s;
}
.sidebar-cta-2-btn:hover { background: #128d84; transform: translateY(-1px); }

/* ══════════════════════════════════
   TRUST FOOTER
══════════════════════════════════ */
.trust-footer { background: var(--sand); border-top: 1px solid var(--mist); padding: 52px 48px; }
.trust-footer-inner { max-width: 1140px; margin: 0 auto; }
.trust-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-card-grid-single { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
.trust-card { background: var(--white); border: 1px solid var(--mist); border-radius: 16px; padding: 24px 26px; }
.trust-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.trust-avatar {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  background: var(--sand); border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--mist);
}
.trust-avatar-mark { background: var(--navy-deep); padding: 8px; }
.trust-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px; color: var(--muted); margin-bottom: 3px; }
.trust-card-name { font-size: 16px; font-weight: 600; color: var(--navy-deep); }
.trust-card-role { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.trust-card-bio { font-size: 13.5px; line-height: 1.65; color: #6B7A89; margin-bottom: 12px; }
.trust-card-link { font-size: 13px; font-weight: 600; color: var(--navy-light); text-decoration: none; }
.trust-card-link:hover { color: var(--navy); }
.trust-dates { display: flex; justify-content: center; gap: 40px; margin-top: 26px; flex-wrap: wrap; }
.trust-date-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px; color: var(--muted); margin-bottom: 3px; text-align: center; }
.trust-date-value { font-size: 13.5px; color: var(--navy-deep); font-weight: 500; text-align: center; }
.trust-disclaimer {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--mist);
  font-size: 12.5px; line-height: 1.65; color: var(--muted);
  text-align: center; max-width: 800px; margin-left: auto; margin-right: auto;
}
.trust-disclaimer a { color: var(--navy-light); }

/* ══════════════════════════════════
   SECTION / HOMEPAGE PRIMITIVES
══════════════════════════════════ */
.section { max-width: 1320px; margin: 0 auto; padding: 76px 48px; }
.section.tight { padding-top: 44px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 10px; }
.section-title { font-family: 'Lora', serif; font-weight: 400; font-size: 36px; color: var(--navy-deep); line-height: 1.2; letter-spacing: -0.4px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.65; margin-top: 12px; max-width: 640px; }
.section-link {
  font-size: 14px; font-weight: 600; color: var(--navy-light); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; white-space: nowrap;
}
.section-link:hover { gap: 10px; }
.section-dark { background: var(--navy-deep); }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.55); }
.section-white { background: var(--white); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Topic card grid (homepage + hubs) */
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.topic-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--mist); border-radius: var(--radius);
  padding: 28px 26px 26px; text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden;
}
.topic-card::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.topic-card:hover::after { transform: scaleX(1); }
.topic-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--sand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.topic-card h3 { font-family: 'Lora', serif; font-weight: 400; font-size: 21px; color: var(--navy-deep); line-height: 1.3; margin-bottom: 9px; }
.topic-card p { font-size: 14.5px; line-height: 1.65; color: #6B7A89; margin-bottom: 16px; flex: 1; }
.topic-tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.1px; padding: 4px 10px; border-radius: 100px;
  background: #ECF9F7; color: #0E7F76;
}
.topic-tag.warn { background: #FDF3E3; color: #9A6A16; }
.topic-tag.hot  { background: #FCEDEE; color: #A8434B; }
.topic-tag.neutral { background: var(--sand); color: var(--muted); }

/* Stat ribbon band */
.ribbon { background: var(--white); border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.ribbon-inner { max-width: 1320px; margin: 0 auto; padding: 52px 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.ribbon-stat { text-align: center; position: relative; }
.ribbon-stat:not(:last-child)::after { content: ''; position: absolute; right: -20px; top: 10%; height: 80%; width: 1px; background: var(--mist); }
.ribbon-number { font-family: 'Lora', serif; font-weight: 400; font-size: 42px; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.ribbon-number .accent { color: var(--teal); }
.ribbon-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; max-width: 210px; margin: 0 auto; }

/* News / update cards */
.update-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.update-card {
  background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius);
  padding: 24px 26px 26px; text-decoration: none; display: flex; flex-direction: column;
  transition: all 0.3s;
}
.update-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.update-date { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--teal); margin-bottom: 10px; }
.update-card h3 { font-family: 'Lora', serif; font-weight: 400; font-size: 19px; color: var(--navy-deep); line-height: 1.35; margin-bottom: 10px; }
.update-card p { font-size: 14px; line-height: 1.6; color: #6B7A89; flex: 1; }
.update-more { font-size: 13px; font-weight: 600; color: var(--navy-light); margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }

/* CTA band */
.cta-band {
  background: linear-gradient(140deg, #0B1F33 0%, #12395B 55%, #17635C 100%);
  padding: 70px 48px; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 20%, rgba(23,163,152,0.22), transparent 60%);
}
.cta-band-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Lora', serif; font-weight: 400; font-size: 34px; color: #fff; line-height: 1.25; margin-bottom: 16px; }
.cta-band p { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,0.66); margin-bottom: 28px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band-note { margin-top: 22px; font-size: 12.5px; color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--navy-deep); padding: 62px 48px 0; }
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.5); margin: 16px 0 20px; max-width: 340px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.62); text-decoration: none; }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto; padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,0.38);
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.38); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }
.footer-adnote {
  max-width: 1320px; margin: 0 auto; padding: 0 0 30px;
  font-size: 11.5px; line-height: 1.65; color: rgba(255,255,255,0.28);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-menu { display: block; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; max-width: 640px; margin: 0 auto; width: 100%; }
  .topic-grid, .update-grid { grid-template-columns: repeat(2, 1fr); }
  .ribbon-inner { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .ribbon-stat:nth-child(2)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .help-bar-inner { padding: 8px 20px; font-size: 12px; }
  .help-bar-item.hide-sm { display: none; }
  .nav-inner { padding: 0 20px; height: 64px; }
  .pillar-hero { padding: 48px 20px 28px; }
  .pillar-hero h1 { font-size: 32px; }
  .pillar-hero-sub { font-size: 16px; }
  .hero-stat-ribbon-inner { grid-template-columns: 1fr; gap: 18px; padding: 20px 22px; }
  .hero-ribbon-item:not(:last-child)::after { display: none; }
  .hero-ribbon-item:not(:last-child) { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .content-wrap { padding: 0 16px 56px; margin-top: 26px; }
  .article { padding: 30px 22px 38px; border-radius: 16px; }
  .article h2 { font-size: 24px; margin-top: 38px; }
  .article p, .article li { font-size: 15.5px; }
  .section { padding: 52px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .section-title { font-size: 27px; }
  .topic-grid, .update-grid, .card-grid, .card-grid.three { grid-template-columns: 1fr; }
  .stat-inline, .stat-inline.four { grid-template-columns: 1fr 1fr; }
  .status-rows { grid-template-columns: 1fr; }
  .status-row:nth-child(odd) { border-right: none; }
  .trust-footer { padding: 40px 20px; }
  .trust-card-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 52px 20px; }
  .cta-band h2 { font-size: 26px; }
  .footer { padding: 46px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .pillar-hero h1 { font-size: 27px; }
  .section-title { font-size: 23px; }
  .stat-inline, .stat-inline.four { grid-template-columns: 1fr; }
  .ribbon-inner { grid-template-columns: 1fr; }
  .ribbon-stat::after { display: none !important; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   PRINT
══════════════════════════════════ */
@media print {
  .help-bar, .nav, .sidebar, .cta-band, .footer, .mobile-menu { display: none !important; }
  .article { box-shadow: none; padding: 0; }
  .pillar-hero { background: none !important; color: #000; padding: 0 0 20px; }
  .pillar-hero h1, .pillar-hero-sub { color: #000; }
}

/* ══════════════════════════════════
   MOBILE MENU: icon list
══════════════════════════════════ */
.mobile-menu-panel { padding: 20px 18px 26px; }
.mm-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.6px; color: var(--muted);
  padding: 18px 14px 7px; display: block;
}
.mm-label:first-of-type { padding-top: 4px; }
.mobile-menu-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 11px;
  text-decoration: none; transition: background 0.18s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active { background: var(--sand); }
.mm-icon {
  width: 34px; height: 34px; border-radius: 10px; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.18s;
}
.mm-icon svg { width: 16px; height: 16px; }
.mobile-menu-links a:hover .mm-icon { background: #dcf1ee; }
.mm-text { min-width: 0; }
.mm-title { font-size: 15px; font-weight: 600; color: var(--navy-deep); line-height: 1.3; display: block; }
.mm-desc { font-size: 11.5px; color: var(--muted); line-height: 1.35; margin-top: 1px; display: block; }
.mobile-menu-links a.sub { padding: 8px 14px 8px 22px; }
.mobile-menu-links a.sub .mm-icon {
  width: 26px; height: 26px; border-radius: 8px;
  background: transparent; border: 1px solid var(--mist);
}
.mobile-menu-links a.sub .mm-icon svg { width: 13px; height: 13px; }
.mobile-menu-links a.sub:hover .mm-icon { background: #dcf1ee; border-color: transparent; }
.mobile-menu-links a.sub .mm-title { font-size: 13.5px; font-weight: 500; color: var(--slate); }
.mm-divider { height: 1px; background: var(--mist); margin: 12px 14px 2px; }
.mm-help {
  display: flex; align-items: center; gap: 11px;
  margin-top: 14px; padding: 13px 14px;
  background: #ECF9F7; border-radius: 12px; text-decoration: none;
}
.mm-help .mm-icon { background: rgba(23,163,152,0.16); }
.mm-help .mm-title { font-size: 13.5px; color: var(--navy-deep); }
.mm-help .mm-desc { color: #0E7F76; font-weight: 500; }

/* ══════════════════════════════════
   CONTENT PHOTOGRAPHY
══════════════════════════════════ */
.photo {
  margin: 30px 0 32px; position: relative;
}
.photo img {
  width: 100%; height: auto; display: block;
  border-radius: 14px; background: var(--mist);
}
.photo figcaption {
  font-size: 12.5px; line-height: 1.6; color: var(--muted);
  margin-top: 11px; padding-left: 13px; border-left: 2px solid var(--mist);
}
.photo figcaption strong { color: var(--slate); font-weight: 600; }
.photo-lead { margin-top: 0; }

/* Full-bleed band inside a section */
.photo-band {
  position: relative; overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.photo-band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0.15) 0%, rgba(11,31,51,0.88) 100%);
}
.photo-band-inner {
  position: relative; z-index: 1; max-width: 1320px; margin: 0 auto;
  padding: 48px; width: 100%;
}
.photo-band-eyebrow {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--teal-light); margin-bottom: 10px;
}
.photo-band h2 {
  font-family: 'Lora', serif; font-weight: 400; font-size: 32px;
  color: #fff; line-height: 1.25; margin-bottom: 10px; max-width: 720px;
}
.photo-band p {
  font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,0.66);
  max-width: 640px; margin: 0;
}
@media (max-width: 860px) {
  .photo { margin: 22px 0 24px; }
  .photo img { border-radius: 10px; }
  .photo-band { min-height: 260px; }
  .photo-band-inner { padding: 30px 20px; }
  .photo-band h2 { font-size: 24px; }
}

/* ══════════════════════════════════
   INTERACTIVE LITIGATION MAP
   Follows the CPCenter brain-diagram lesson: no floating tooltips.
   One fixed card, every panel stacked in the same grid cell so the
   card is always as tall as the longest panel and switching states
   can never shift the layout.
══════════════════════════════════ */
.map-section {
  background: linear-gradient(155deg, #0B1F33 0%, #123A5C 55%, #14514C 100%);
  padding: 78px 48px 84px; position: relative; overflow: hidden;
}
.map-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 65% at 82% 6%, rgba(23,163,152,0.20), transparent 62%);
}
.map-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }
.map-head { max-width: 760px; margin-bottom: 26px; }
.map-title {
  font-family: 'Lora', serif; font-weight: 400; font-size: 36px;
  color: #fff; line-height: 1.2; letter-spacing: -0.4px; margin-bottom: 12px;
}
.map-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.62); font-weight: 300; }

.map-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 28px; }
.map-key {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: rgba(255,255,255,0.55);
}
.map-key .k { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.k-major    { background: #20D3C0; }
.k-platform { background: #E0A33D; }
.k-inst     { background: #4E9BC9; }
.k-law      { background: #9BE3DC; }
.k-none     { background: rgba(255,255,255,0.13); }

.map-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }

.map-grid-wrap { min-width: 0; }
.map-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 5px;
  aspect-ratio: 12 / 8;
}
.tile {
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-family: 'Outfit', sans-serif;
  font-size: clamp(8px, 0.85vw, 11.5px); font-weight: 600; letter-spacing: 0.4px;
  border: 1px solid transparent; padding: 0; line-height: 1;
}
.tile-off { background: rgba(255,255,255,0.055); color: rgba(255,255,255,0.28); }
.tile-on {
  cursor: pointer; color: #06202B;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.tile-on:hover, .tile-on:focus-visible { transform: translateY(-2px) scale(1.06); z-index: 2; }
.tile-major    { background: #20D3C0; }
.tile-platform { background: #E0A33D; }
.tile-inst     { background: #4E9BC9; color: #fff; }
.tile-law      { background: #9BE3DC; }
.tile-on.is-active {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.85), 0 6px 20px rgba(0,0,0,0.35);
  transform: translateY(-2px) scale(1.09); z-index: 3;
}
.map-hint { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; line-height: 1.5; }

.map-card {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px; padding: 30px 32px 32px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
/* Every panel occupies the same cell, so the card height is fixed by the
   longest panel and nothing jumps when the selection changes. */
.map-card-stack { display: grid; }
.map-panel {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease;
}
.map-panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; }

.map-panel-kind {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 11px; border-radius: 100px; margin-bottom: 14px;
}
.map-panel-major    { background: rgba(32,211,192,0.18);  color: #7FE8DB; border: 1px solid rgba(32,211,192,0.35); }
.map-panel-platform { background: rgba(224,163,61,0.18);  color: #F2CE8E; border: 1px solid rgba(224,163,61,0.35); }
.map-panel-inst     { background: rgba(78,155,201,0.18);  color: #A8D3EC; border: 1px solid rgba(78,155,201,0.35); }
.map-panel-law      { background: rgba(155,227,220,0.16); color: #C4EFE9; border: 1px solid rgba(155,227,220,0.32); }

.map-panel-state {
  font-family: 'Lora', serif; font-weight: 400; font-size: 27px;
  color: #fff; line-height: 1.2; margin: 0 0 5px;
}
.map-panel-label { font-size: 14.5px; color: rgba(255,255,255,0.6); margin: 0 0 18px; line-height: 1.5; }
.map-panel-stat {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 14px 0 16px; border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 18px;
}
.map-panel-num { font-family: 'Lora', serif; font-size: 30px; color: #9BE3DC; line-height: 1; }
.map-panel-statlabel { font-size: 12.5px; color: rgba(255,255,255,0.48); line-height: 1.45; flex: 1; min-width: 160px; }
.map-panel-body { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.68); margin: 0 0 18px; }
.map-panel-links { display: flex; flex-wrap: wrap; gap: 10px; }
.map-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: #fff; font-size: 13px; font-weight: 600; text-decoration: none;
  padding: 8px 14px; border-radius: 100px; transition: all 0.2s;
}
.map-link:hover { background: var(--teal); border-color: var(--teal); }

@media (max-width: 1080px) {
  .map-layout { grid-template-columns: 1fr; gap: 30px; }
  .map-grid { max-width: 620px; }
}
@media (max-width: 860px) {
  .map-section { padding: 54px 20px 60px; }
  .map-title { font-size: 27px; }
  .map-legend { gap: 12px 16px; margin-bottom: 22px; }
  .map-grid { gap: 3px; }
  .tile { border-radius: 4px; font-size: clamp(6px, 1.6vw, 10px); }
  .map-card { padding: 24px 20px 26px; }
  .map-panel-state { font-size: 23px; }
}

/* ══════════════════════════════════
   TOPIC CARD THUMBNAILS
══════════════════════════════════ */
.topic-card.has-thumb { padding: 0; }
.topic-thumb {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 16 / 9; background: var(--mist);
}
.topic-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1);
}
.topic-card:hover .topic-thumb img { transform: scale(1.045); }
.topic-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0) 45%, rgba(11,31,51,0.42) 100%);
}
.topic-thumb-icon {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(11,31,51,0.28);
}
.topic-card.has-thumb .topic-body {
  padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1;
}
.topic-card.has-thumb h3 { margin-bottom: 8px; font-size: 20px; }
.topic-card.has-thumb p { font-size: 14px; margin-bottom: 14px; }
.topic-card.has-thumb::after { border-radius: var(--radius) var(--radius) 0 0; }
@media (max-width: 860px) {
  .topic-card.has-thumb .topic-body { padding: 18px 20px 20px; }
}
