@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&display=swap');

:root {
  --crimson: #8C0D12;
  --darkred: #65070B;
  --cream: #F8F1E7;
  --navy: #071D35;
  --teal: #0F766E;
  --teal-light: #E6F5F3;
  --ink: #1a1f2e;
  --muted: #64748B;
  --line: #E6DED2;
  --green: #16803A;
  --red: #B91C1C;
  --amber: #B7791F;
  --shadow: 0 2px 16px rgba(16,24,39,.06);
  --radius: 12px;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --page-max: 1080px;
  --section-gap: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--sans); background: #fefcf9; color: var(--ink); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* ===== SITE TOP NAVIGATION ===== */
.site-topnav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(7,29,53,0.35), 0 1px 4px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 58px;
}
.site-topnav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  flex: 0 0 auto;
}
.site-topnav-star {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.site-topnav-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.site-topnav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-topnav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  position: relative;
  white-space: nowrap;
}
.site-topnav-link:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}
.site-topnav-link.active {
  color: white;
  background: rgba(140,13,18,0.2);
  font-weight: 700;
}
.site-topnav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(140,13,18,0.5);
}
.site-topnav-live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}
.site-topnav-live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: topnav-pulse 2s infinite;
}
.site-topnav-live-label {
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
@keyframes topnav-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 40px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: #faf8f4;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover {
  color: var(--navy);
}
.breadcrumb .bc-sep {
  margin: 0 6px;
  color: var(--line);
}
.breadcrumb .bc-current {
  color: var(--navy);
  font-weight: 700;
}

/* Responsive topnav */
@media (max-width: 1100px) {
  .site-topnav { padding: 0 20px; }
  .site-topnav-link { font-size: 12px; padding: 6px 10px; }
  .site-topnav-title { font-size: 15px; }
}
@media (max-width: 860px) {
  .site-topnav {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 16px;
    gap: 6px;
  }
  .site-topnav-links {
    flex-wrap: wrap;
    gap: 2px;
  }
  .site-topnav-link { font-size: 11px; padding: 5px 8px; }
}

/* ===== SITE LAYOUT ===== */
.site { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 58px); }

/* ===== SIDEBAR ===== */
aside { background: var(--navy); color: white; padding: 20px; position: sticky; top: 58px; height: calc(100vh - 58px); overflow: auto; }
.profile, .sidecard, .card, .kpi, .panel { background: white; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.profile img { width: 100%; max-width: 260px; aspect-ratio: 1/1.05; object-fit: cover; object-position: center top; display: block; }
.profile div { padding: 14px 16px; }
.profile h2 { margin: 0; font-size: 20px; font-family: var(--sans); }
.profile p { margin: 2px 0 0; font-weight: 600; }
.sidecard { padding: 18px; margin-top: 16px; }
.sidecard h3 { margin: 0 0 10px; font-size: 17px; }
.sidecard p { margin: 6px 0; font-weight: 600; }
.heart { color: var(--crimson); font-size: 26px; text-align: right; }
aside nav { display: none; }
.nav-group-label { display: block; color: rgba(255,255,255,.4); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 16px 14px 6px; margin-top: 4px; }
.nav-group-label:first-child { margin-top: 0; padding-top: 8px; }
.refresh { margin-top: 28px; background: white; color: var(--ink); border-radius: 10px; padding: 14px; font-size: 13px; display: flex; justify-content: space-between; box-shadow: var(--shadow); }

/* ===== TOPBAR ===== */
.topbar { background: var(--navy); color: white; padding: 28px 40px; }
.brand { display: flex; gap: 18px; align-items: center; }
.brand-star {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}
.topbar h1 { font-family: var(--serif); font-size: 26px; line-height: 1.2; margin: 0; font-weight: 600; }
.topbar p { margin: 4px 0 0; font-size: 14px; color: rgba(255,255,255,.6); font-weight: 400; }

/* ===== MAIN CONTENT ===== */
main { min-width: 0; }
.content { padding: 0 40px 60px; max-width: 1200px; }

/* ===== NEW HOMEPAGE STYLES ===== */

/* Hero */
.hero-section {
  padding: 80px 40px 60px;
  max-width: 1200px;
}
.hero-section h1 {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 20px;
  max-width: 800px;
  letter-spacing: -0.01em;
}
.hero-section .hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
  max-width: 720px;
  margin: 0 0 36px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}
.hero-buttons a.btn-primary {
  background: var(--navy);
  color: white;
  border: 1px solid var(--navy);
}
.hero-buttons a.btn-primary:hover { background: #0a2848; }
.hero-buttons a.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}
.hero-buttons a.btn-secondary:hover { border-color: var(--navy); }

/* Section titles */
.section-block {
  padding: 0 0 var(--section-gap);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--crimson);
  margin: 0 0 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 40px;
}

/* Oklahoma Future Grid */
.ok-future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 28px;
}
.ok-future-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .2s, box-shadow .2s;
}
.ok-future-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(7,29,53,.08);
}
.ok-future-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
}
.ok-future-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ok-future-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.ok-future-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Diff / Comparison cards */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 32px;
}
.diff-card {
  background: #faf7f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.diff-card.diff-card-alt {
  background: white;
  border-color: var(--navy);
}
.diff-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 14px;
}
.diff-card.diff-card-alt h4 { color: var(--navy); }
.diff-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diff-card li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.diff-card li:last-child { border-bottom: none; }

/* Dashboard Preview Card */
.dash-preview-card {
  background: #0b1929;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(7,29,53,.15);
}
.dash-preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #071D35;
  border-bottom: 1px solid #1e3a5f;
}
.dash-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: cmd-pulse 2s infinite;
}
@keyframes cmd-pulse-hp {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.dash-preview-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex: 1;
}
.dash-preview-status {
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.dash-preview-body { padding: 14px 18px; }
.dash-preview-scores {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.dash-preview-score {
  text-align: center;
  padding: 10px 6px;
  border-radius: 6px;
  background: #0f2440;
  border: 1px solid #1e3a5f;
}
.dps-val { display: block; font-size: 22px; font-weight: 800; color: white; line-height: 1.2; }
.dps-lbl { display: block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.dps-red { border-top: 2px solid #ef4444; } .dps-red .dps-lbl { color: #f87171; }
.dps-amber { border-top: 2px solid #f59e0b; } .dps-amber .dps-lbl { color: #fbbf24; }
.dps-green { border-top: 2px solid #22c55e; } .dps-green .dps-lbl { color: #4ade80; }
.dps-teal { border-top: 2px solid #0F766E; } .dps-teal .dps-lbl { color: #14b8a6; }
.dps-blue { border-top: 2px solid #3b82f6; } .dps-blue .dps-lbl { color: #60a5fa; }
.dps-navy { border-top: 2px solid #6366f1; } .dps-navy .dps-lbl { color: #818cf8; }
.dash-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-preview-map {
  background: #0f2440;
  border: 1px solid #1e3a5f;
  border-radius: 6px;
  padding: 14px;
}
.dpm-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.dpm-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dpm-zone {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
}
.dpm-alert { border-left: 3px solid #ef4444; }
.dpm-watch { border-left: 3px solid #f59e0b; }
.dpm-stable { border-left: 3px solid #22c55e; }
.dash-preview-indicators {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dpi-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,.04);
  border-radius: 4px;
  border-left: 3px solid #1e3a5f;
}
.dpi-alert { border-left-color: #ef4444; }
.dpi-watch { border-left-color: #f59e0b; }
.dpi-stable { border-left-color: #22c55e; }
.dpi-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8); flex: 1; }
.dpi-val { font-size: 13px; font-weight: 800; color: white; }
.dpi-tag { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.dpi-alert .dpi-tag { color: #f87171; }
.dpi-watch .dpi-tag { color: #fbbf24; }
.dpi-stable .dpi-tag { color: #4ade80; }
.dash-preview-footer {
  padding: 10px 18px;
  border-top: 1px solid #1e3a5f;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* Dashboard Open Button */
.btn-dashboard {
  background: var(--teal);
  color: white;
  border: 1px solid var(--teal);
}
.btn-dashboard:hover { background: #0d6b63; }
.btn-open-dashboard {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  background: var(--teal);
  color: white;
  border: 1px solid var(--teal);
}
.btn-open-dashboard:hover { background: #0d6b63; }

/* Silo / Systems diagram */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  position: relative;
}
.systems-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0, var(--line) 8px, transparent 8px, transparent 16px);
  z-index: 0;
  transform: translateY(-50%);
}
.system-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.system-node:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(7,29,53,.08);
}
.system-node-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.system-node-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.system-node h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.systems-caption {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 720px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  font-weight: 400;
}

/* Problem indicators */
.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 24px;
}
.indicator-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  flex: 0 0 auto;
  opacity: .6;
}

/* Outcome ownership framework */
.framework-box {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  margin: 0 0 24px;
}
.framework-box h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
}
.framework-box p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 640px;
}
.framework-questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.framework-q {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
}
.framework-q strong {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--crimson);
  margin-bottom: 6px;
  font-style: normal;
}

/* Positioning statement */
.position-statement {
  border-left: 3px solid var(--crimson);
  padding: 20px 28px;
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--navy);
  font-weight: 400;
  max-width: 720px;
}

/* Compare blocks */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 32px;
}
.compare-block {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.compare-block.current { background: #faf7f2; }
.compare-block.different { background: white; border-color: var(--navy); }
.compare-block h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.compare-block.current h4 { color: var(--muted); }
.compare-block.different h4 { color: var(--navy); }
.compare-block p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: var(--ink);
}

/* ===== PAGE STYLES (inner pages) ===== */
.page-header {
  padding: 48px 0 32px;
}
.page-header h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.2;
}
.page-header p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
  line-height: 1.7;
}
.page-intro {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 40px;
}
.page-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}

/* Content cards for inner pages */
.content-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 0 20px;
}
.content-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.3;
}
.content-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 400;
}
.content-card p:last-child { margin-bottom: 0; }
.content-card.accent {
  border-left: 3px solid var(--crimson);
}
.content-card.navy-accent {
  border-left: 3px solid var(--navy);
}
.content-card.highlight {
  background: var(--cream);
  border-color: var(--line);
}

/* Phase cards */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin: 0 0 40px;
}
.phase-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.phase-card .phase-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--crimson);
  margin: 0 0 10px;
}
.phase-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.phase-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Principle list */
.principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.principle-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.principle-list li:last-child { border-bottom: none; }
.principle-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  flex: 0 0 auto;
  margin-top: 9px;
  opacity: .5;
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 40px;
}

/* Topic cards for system-gap page */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 40px;
}
.topic-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.topic-card h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}
.topic-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* Impact grid for economic page */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 40px;
}
.impact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.impact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.impact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.impact-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.impact-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Privacy/governance cards */
.gov-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 40px;
}
.gov-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.gov-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.gov-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* Callout box */
.callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 0 40px;
}
.callout p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--navy);
  margin: 0;
  font-weight: 400;
}

/* ===== EXISTING DASHBOARD STYLES (kept for existing pages) ===== */
.oo-featured-intro {
  background: linear-gradient(135deg, var(--navy) 0%, var(--darkred) 100%);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.oo-featured-intro p { margin: 0; font-size: 15px; line-height: 1.75; font-weight: 500; }
.oo-featured { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 28px; margin-bottom: 24px; }
.oo-featured h2 { font-size: 24px; margin: 0 0 4px; font-family: var(--serif); color: var(--crimson); }
.oo-featured .oo-featured-sub { margin: 0 0 14px; color: var(--muted); font-size: 15px; font-style: italic; line-height: 1.6; }
.oo-featured>p { margin: 0 0 20px; font-size: 15px; line-height: 1.75; color: var(--ink); font-weight: 500; }
.oo-pathway-visual { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 16px; }
.oo-pathway-flow { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.oo-pathway-node { flex: 1; text-align: center; min-width: 0; }
.oo-pathway-node-pill { display: inline-block; background: var(--navy); color: white; padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: 13px; white-space: nowrap; margin-bottom: 10px; }
.oo-pathway-node:last-child .oo-pathway-node-pill { background: var(--crimson); }
.oo-pathway-node p { margin: 0; font-size: 12px; line-height: 1.5; color: var(--ink); font-weight: 500; padding: 0 4px; }
.oo-pathway-arrow { display: flex; align-items: flex-start; padding-top: 10px; font-size: 20px; color: var(--crimson); font-weight: 900; flex: 0 0 auto; }

/* Start Here */
.start-here { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px 28px; margin-bottom: 20px; }
.start-here h2 { font-size: 22px; margin: 0 0 14px; color: var(--navy); font-weight: 700; font-family: var(--serif); }
.start-here-list { list-style: none; padding: 0; margin: 0; }
.start-here-list li { padding: 10px 0; border-bottom: 1px solid #f0e8dc; font-size: 14px; font-weight: 500; line-height: 1.55; display: flex; gap: 10px; align-items: flex-start; }
.start-here-list li:last-child { border-bottom: none; }
.start-here-list li::before { content: '\2192'; color: var(--crimson); font-weight: 700; flex: 0 0 auto; }
.start-here-list a { color: var(--crimson); text-decoration: none; font-weight: 700; }
.start-here-list a:hover { text-decoration: underline; }

/* Demo Badge */
.demo-data-badge { display: flex; align-items: center; gap: 10px; background: #fff5f5; border: 2px solid #f2c2c2; border-radius: 10px; padding: 12px 18px; margin-bottom: 18px; font-size: 13px; font-weight: 700; color: var(--crimson); line-height: 1.4; }
.demo-data-badge::before { content: '!'; width: 24px; height: 24px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; flex: 0 0 24px; font-size: 13px; font-weight: 900; }

/* Filters */
.filters { display: grid; grid-template-columns: repeat(4,1fr) auto auto; gap: 14px; align-items: end; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; }
select { width: 100%; border: 1px solid #dacfc0; border-radius: 8px; background: #fff; padding: 10px 12px; font-weight: 600; font-family: var(--sans); }
.btn { border: 0; border-radius: 8px; padding: 10px 16px; font-weight: 700; font-family: var(--sans); cursor: pointer; }
.primary { background: var(--navy); color: white; }
.light { background: white; color: var(--ink); border: 1px solid #dacfc0; }

/* KPIs */
.kpis { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-bottom: 18px; }
.kpi { padding: 18px; }
.kpi h3 { font-size: 13px; margin: 0 0 8px; }
.num { font-size: 30px; font-weight: 800; margin: 0; }
.up { color: var(--green); font-weight: 700; }
.bad { color: var(--red); font-weight: 700; }
.icon { width: 40px; height: 40px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; font-size: 20px; float: left; margin-right: 12px; }

/* Title row */
.title { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin: 28px 0 14px; }
.title h2 { font-size: 28px; margin: 0; font-family: var(--serif); }
.title p { color: var(--muted); line-height: 1.55; margin: 8px 0 0; }
.pill { border: 1px solid #f2c2c2; background: #fff5f5; color: var(--crimson); font-weight: 800; border-radius: 999px; padding: 6px 12px; font-size: 12px; white-space: nowrap; }

/* Panels */
.panels { display: grid; grid-template-columns: repeat(5, minmax(185px, 1fr)); gap: 12px; }
.panel { display: flex; flex-direction: column; }
.panel-head { padding: 14px; display: flex; gap: 10px; align-items: flex-start; min-height: 70px; }
.badge { width: 30px; height: 30px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.badge.blue { background: var(--navy); }
.panel h2 { font-size: 15px; line-height: 1.1; margin: 0; }
.chart { height: 58px; margin: 0 14px 8px; background: linear-gradient(to top, #eee 1px, transparent 1px); border-bottom: 1px solid #ddd; position: relative; }
.bar { position: absolute; bottom: 0; width: 16px; }

/* Tables */
table { width: 100%; border-collapse: collapse; font-size: 11px; }
th { background: #faf7f2; text-align: left; font-size: 9px; padding: 7px 6px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-transform: uppercase; font-weight: 700; }
td { padding: 7px 6px; border-bottom: 1px solid #f0e8dc; vertical-align: top; font-weight: 600; }
td:first-child { font-weight: 700; }
.status { font-size: 10px; font-weight: 800; border-radius: 999px; padding: 3px 6px; display: inline-block; }
.triggered { color: var(--red); background: #fff0f0; }
.review { color: var(--amber); background: #fff8e8; }
.complete { color: var(--green); background: #ecfdf2; }
.owner { margin-top: auto; text-align: center; color: white; background: var(--crimson); padding: 10px; font-size: 12px; font-weight: 800; }
.owner.blue { background: var(--navy); }

/* Bottom cards */
.bottom { display: grid; grid-template-columns: 1.2fr .9fr; gap: 16px; margin-top: 16px; }
.card { padding: 22px; }
.card h2 { margin: 0 0 14px; color: var(--crimson); }
.goal h2 { color: var(--navy); }
.rules { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.rule, .goal li { list-style: none; display: flex; gap: 10px; font-weight: 700; margin: 10px 0; }
.check { width: 22px; height: 22px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 11px; }
.goal .check { background: var(--navy); }

/* Disclaimer */
.disclaimer { text-align: center; color: var(--muted); font-size: 12px; margin-top: 18px; }

/* ===== MAP ===== */
.map-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.map-header h2 { font-size: 28px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.map-header p { margin: 4px 0 0; color: var(--muted); font-size: 15px; }
.map-selector { display: flex; gap: 14px; align-items: end; flex-wrap: wrap; }
.map-selector label { font-weight: 700; font-size: 13px; margin-bottom: 6px; display: block; }
.map-selector select { border: 1px solid #dacfc0; border-radius: 8px; background: #fff; padding: 10px 14px; font-weight: 600; font-size: 14px; min-width: 260px; }
.map-container { display: grid; grid-template-columns: 1fr 320px; gap: 16px; margin-bottom: 18px; }
#district-map { height: 540px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); background: white; z-index: 1; }
.map-side { display: flex; flex-direction: column; gap: 16px; }
.map-info-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 22px; }
.map-info-card h3 { margin: 0 0 10px; font-size: 17px; color: var(--crimson); font-weight: 800; }
.map-info-card p { margin: 6px 0; color: var(--ink); line-height: 1.6; font-weight: 500; font-size: 14px; }
.map-info-card .label { font-size: 11px; text-transform: uppercase; font-weight: 800; color: var(--muted); letter-spacing: .5px; margin-top: 12px; }
.map-info-card .value { font-size: 15px; font-weight: 700; color: var(--ink); margin: 2px 0 0; }
.district-selected-card { display: none; }
.district-selected-card.visible { display: block; }
.why-card h3 { color: var(--navy); }
.why-card p { font-size: 13px; line-height: 1.65; }
.map-disclaimer { text-align: center; color: var(--muted); font-size: 12px; margin-top: 14px; padding: 0 20px; line-height: 1.6; font-style: italic; }
.leaflet-tooltip.district-tooltip { background: var(--navy); color: white; border: none; border-radius: 8px; padding: 8px 14px; font-weight: 700; font-size: 13px; box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.leaflet-tooltip.district-tooltip::before { border-top-color: var(--navy); }
.school-filters { display: none; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.school-filters.visible { display: flex; }
.school-filter-btn { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all .15s; }
.school-filter-btn:hover { border-color: var(--crimson); color: var(--crimson); }
.school-filter-btn.active { background: var(--crimson); color: white; border-color: var(--crimson); }
.school-popup { font-family: var(--sans); }
.school-popup h4 { margin: 0 0 6px; font-size: 15px; color: var(--crimson); font-weight: 800; }
.school-popup .sp-type { font-size: 11px; text-transform: uppercase; font-weight: 800; color: white; background: var(--navy); border-radius: 999px; padding: 2px 8px; display: inline-block; margin-bottom: 8px; }
.school-popup .sp-row { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; padding: 3px 0; border-bottom: 1px solid #f0e8dc; }
.school-popup .sp-label { color: var(--muted); font-weight: 700; white-space: nowrap; }
.school-popup .sp-val { font-weight: 700; text-align: right; }
.school-popup .sp-section { margin-top: 8px; padding-top: 6px; border-top: 2px solid var(--line); }
.school-popup .sp-section-title { font-size: 10px; text-transform: uppercase; font-weight: 800; color: var(--muted); letter-spacing: .5px; margin-bottom: 4px; }
.school-popup .sp-indicator { display: flex; justify-content: space-between; font-size: 11px; padding: 2px 0; }
.school-popup .sp-indicator .sp-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px; vertical-align: middle; }
.school-snapshot-card { display: none; }
.school-snapshot-card.visible { display: block; }
.snapshot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.snapshot-item { background: var(--cream); border-radius: 10px; padding: 10px 12px; }
.snapshot-item .si-label { font-size: 10px; text-transform: uppercase; font-weight: 800; color: var(--muted); letter-spacing: .3px; }
.snapshot-item .si-value { font-size: 16px; font-weight: 800; margin-top: 2px; }
.snapshot-item .si-level { font-size: 11px; font-weight: 700; margin-top: 1px; }
.ferpa-disclaimer { background: #fff5f5; border: 1px solid #f2c2c2; border-radius: var(--radius); padding: 16px 20px; margin-top: 16px; font-size: 12px; color: var(--ink); line-height: 1.65; }
.ferpa-disclaimer strong { color: var(--crimson); display: block; margin-bottom: 4px; font-size: 13px; }

/* ===== CASE MANAGEMENT ===== */
.cases-header h2 { font-size: 28px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.cases-header p { margin: 4px 0 0; color: var(--muted); font-size: 15px; font-style: italic; }
.cases-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 20px 0; }
.cases-kpi { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 20px; }
.cases-kpi h3 { font-size: 12px; color: var(--muted); margin: 0 0 8px; text-transform: uppercase; font-weight: 700; letter-spacing: .3px; }
.cases-kpi .ck-num { font-size: 32px; font-weight: 800; margin: 0; color: var(--ink); }
.cases-kpi .ck-trend { font-size: 13px; font-weight: 700; margin-top: 6px; }
.ck-trend.up-bad { color: var(--red); }
.ck-trend.down-good { color: var(--green); }
.ck-trend.neutral { color: var(--muted); }
.workflow-panel { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.workflow-panel h2 { font-size: 20px; margin: 0 0 18px; color: var(--crimson); font-weight: 800; }
.workflow-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.workflow-step { text-align: center; padding: 14px 10px; position: relative; }
.ws-num { width: 34px; height: 34px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin: 0 auto 10px; }
.ws-num.navy { background: var(--navy); }
.workflow-step h3 { font-size: 13px; margin: 0 0 6px; color: var(--ink); font-weight: 800; }
.workflow-step p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; font-weight: 500; }
.ws-arrow { position: absolute; right: -8px; top: 26px; font-size: 18px; color: var(--line); font-weight: 900; z-index: 1; }
.case-filters { display: flex; gap: 14px; flex-wrap: wrap; align-items: end; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.case-filters div { flex: 1; min-width: 160px; }
.case-filters label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.case-filters select { width: 100%; border: 1px solid #dacfc0; border-radius: 8px; background: #fff; padding: 10px 12px; font-weight: 600; }
.case-table-wrap { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; margin-bottom: 20px; }
.case-table-wrap h2 { font-size: 18px; margin: 0; padding: 18px 20px 14px; color: var(--crimson); font-weight: 800; }
.case-table-wrap .demo-label { font-size: 11px; color: var(--muted); font-style: italic; padding: 0 20px 10px; margin: 0; }
.case-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.case-table th { background: #faf7f2; text-align: left; font-size: 11px; padding: 10px 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-transform: uppercase; font-weight: 800; color: var(--muted); }
.case-table td { padding: 12px; border-bottom: 1px solid #f0e8dc; font-weight: 600; cursor: pointer; }
.case-table tbody tr:hover { background: #fdf9f3; }
.case-table .risk-high { color: var(--red); font-weight: 800; }
.case-table .risk-moderate { color: var(--amber); font-weight: 800; }
.case-table .risk-critical { color: white; background: var(--red); border-radius: 999px; padding: 2px 8px; font-weight: 800; font-size: 11px; display: inline-block; }
.case-status { font-size: 11px; font-weight: 800; border-radius: 999px; padding: 3px 8px; display: inline-block; }
.cs-triage { color: var(--amber); background: #fff8e8; }
.cs-active { color: var(--green); background: #ecfdf2; }
.cs-pending { color: var(--crimson); background: #fff5f5; }
.cs-immediate { color: white; background: var(--red); }
.cs-closed { color: var(--muted); background: #f3f4f6; }
.case-snapshot-overlay { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 400px; background: white; box-shadow: -8px 0 30px rgba(0,0,0,.12); z-index: 1000; overflow-y: auto; padding: 28px; animation: slideIn .2s ease-out; }
.case-snapshot-overlay.visible { display: block; }
.case-snapshot-backdrop { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.25); z-index: 999; }
.case-snapshot-backdrop.visible { display: block; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cs-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); font-weight: 900; }
.cs-close:hover { color: var(--ink); }
.cs-title { font-size: 18px; font-weight: 800; color: var(--crimson); margin: 0 0 16px; }
.cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.cs-field { background: var(--cream); border-radius: 10px; padding: 10px 12px; }
.cs-field .cs-label { font-size: 10px; text-transform: uppercase; font-weight: 800; color: var(--muted); letter-spacing: .3px; }
.cs-field .cs-value { font-size: 14px; font-weight: 700; margin-top: 2px; color: var(--ink); }
.cs-field.full { grid-column: 1 / -1; }
.cs-notes { background: #faf7f2; border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-top: 12px; }
.cs-notes h4 { margin: 0 0 6px; font-size: 13px; color: var(--muted); text-transform: uppercase; font-weight: 800; }
.cs-notes p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink); font-weight: 500; }
.accountability-section { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.accountability-section h2 { font-size: 20px; margin: 0 0 16px; color: var(--crimson); font-weight: 800; }
.acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.acc-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; background: var(--cream); border-radius: 10px; font-weight: 600; font-size: 14px; line-height: 1.5; }
.acc-bullet { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 13px; font-weight: 800; }
.privacy-section { background: #fff5f5; border: 1px solid #f2c2c2; border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; }
.privacy-section h2 { font-size: 18px; margin: 0 0 10px; color: var(--crimson); font-weight: 800; }
.privacy-section p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.why-cm-section { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.why-cm-section h2 { font-size: 20px; margin: 0 0 10px; color: var(--navy); font-weight: 800; }
.why-cm-section p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }

/* ===== REPORTS ===== */
.reports-header h2 { font-size: 28px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.reports-header p { margin: 4px 0 0; color: var(--muted); font-size: 15px; font-style: italic; }
.reports-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 20px 0; }
.reports-kpi { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 20px; }
.reports-kpi h3 { font-size: 12px; color: var(--muted); margin: 0 0 8px; text-transform: uppercase; font-weight: 700; letter-spacing: .3px; }
.reports-kpi .rk-num { font-size: 18px; font-weight: 800; margin: 0; color: var(--ink); }
.reports-kpi .rk-status { font-size: 12px; font-weight: 700; margin-top: 6px; display: inline-block; border-radius: 999px; padding: 3px 8px; }
.rk-status.ready { color: var(--green); background: #ecfdf2; }
.rk-status.pending { color: var(--amber); background: #fff8e8; }
.rk-status.available { color: var(--crimson); background: #fff5f5; }
.rk-status.draft { color: var(--muted); background: #f3f4f6; }
.report-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-bottom: 20px; }
.report-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; }
.report-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--crimson); font-weight: 800; }
.report-card p { margin: 0 0 16px; font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 500; flex: 1; }
.report-card .btn { margin-top: auto; text-align: center; cursor: pointer; font-size: 13px; }
.export-panel { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.export-panel h2 { font-size: 20px; margin: 0 0 16px; color: var(--crimson); font-weight: 800; }
.export-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.export-btns .btn { cursor: pointer; font-size: 13px; }
.preview-panel { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.preview-panel h2 { font-size: 20px; margin: 0 0 16px; color: var(--crimson); font-weight: 800; }
.preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-bottom: 16px; }
.preview-stat { background: var(--cream); border-radius: 10px; padding: 12px 14px; }
.preview-stat .ps-label { font-size: 10px; text-transform: uppercase; font-weight: 800; color: var(--muted); letter-spacing: .3px; }
.preview-stat .ps-value { font-size: 18px; font-weight: 800; margin-top: 2px; color: var(--ink); }
.preview-narrative { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin-top: 12px; }
.preview-narrative p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.partner-table-wrap { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; margin-bottom: 20px; }
.partner-table-wrap h2 { font-size: 18px; margin: 0; padding: 18px 20px 14px; color: var(--crimson); font-weight: 800; }
.partner-table-wrap .demo-label { font-size: 11px; color: var(--muted); font-style: italic; padding: 0 20px 10px; margin: 0; }
.partner-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.partner-table th { background: #faf7f2; text-align: left; font-size: 11px; padding: 10px 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-transform: uppercase; font-weight: 800; color: var(--muted); }
.partner-table td { padding: 12px; border-bottom: 1px solid #f0e8dc; font-weight: 600; }
.partner-table .esc-yes { color: var(--red); font-weight: 800; }
.partner-table .esc-no { color: var(--green); font-weight: 800; }
.transparency-section { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.transparency-section h2 { font-size: 20px; margin: 0 0 10px; color: var(--navy); font-weight: 800; }
.transparency-section p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.guardrails-section { background: #fff5f5; border: 1px solid #f2c2c2; border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; }
.guardrails-section h2 { font-size: 18px; margin: 0 0 10px; color: var(--crimson); font-weight: 800; }
.guardrails-section p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink); font-weight: 500; }

/* ===== OUTCOME OWNERSHIP ===== */
.oo-header h2 { font-size: 28px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.oo-header p { margin: 4px 0 0; color: var(--muted); font-size: 15px; font-style: italic; }
.oo-framing { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin: 20px 0; }
.oo-framing p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.oo-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 16px; }
.oo-card h2 { font-size: 20px; margin: 0 0 12px; color: var(--crimson); font-weight: 800; }
.oo-card h3 { font-size: 17px; margin: 0 0 8px; color: var(--navy); font-weight: 800; }
.oo-card p { margin: 0 0 10px; font-size: 14px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.oo-chain { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; margin: 20px 0; padding: 16px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.oo-chain-step { background: var(--navy); color: white; padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 13px; text-align: center; white-space: nowrap; }
.oo-chain-arrow { font-size: 22px; color: var(--crimson); font-weight: 900; padding: 0 6px; }
.oo-outcome-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 16px; border-left: 4px solid var(--crimson); }
.oo-outcome-card h3 { font-size: 18px; margin: 0 0 4px; color: var(--crimson); font-weight: 800; }
.oo-outcome-card .oo-indicator { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .3px; margin: 0 0 10px; }
.oo-outcome-card .oo-why { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin: 12px 0; }
.oo-outcome-card .oo-why strong { display: block; font-size: 12px; color: var(--navy); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px; }
.oo-outcome-card .oo-why p { margin: 0; font-size: 14px; line-height: 1.6; }
.oo-layers { margin: 12px 0; }
.oo-layers h4 { font-size: 13px; color: var(--navy); font-weight: 800; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .3px; }
.oo-layer { display: flex; gap: 10px; align-items: flex-start; padding: 8px 12px; background: #faf7f2; border-radius: 8px; margin-bottom: 6px; font-size: 13px; line-height: 1.5; font-weight: 600; }
.oo-layer-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 11px; font-weight: 800; }
.oo-questions { margin: 12px 0; }
.oo-questions h4 { font-size: 13px; color: var(--crimson); font-weight: 800; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .3px; }
.oo-q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.oo-q { display: flex; gap: 8px; align-items: flex-start; padding: 8px 12px; background: #fff5f5; border: 1px solid #f2c2c2; border-radius: 8px; font-size: 13px; font-weight: 600; line-height: 1.5; }
.oo-q-icon { color: var(--crimson); font-weight: 800; flex: 0 0 auto; }
.oo-demo-label { display: inline-block; font-size: 11px; color: var(--muted); font-style: italic; background: #f3f4f6; border-radius: 999px; padding: 3px 10px; margin-top: 10px; font-weight: 600; }
.oo-bottom { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.oo-bottom h2 { font-size: 20px; margin: 0 0 10px; color: var(--navy); font-weight: 800; }
.oo-bottom p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.oo-hero-banner { margin-bottom: 8px; }
.oo-hero-banner h2 { font-size: 32px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.oo-hero-banner .oo-hero-sub { margin: 8px 0 0; color: var(--muted); font-size: 16px; font-style: italic; line-height: 1.6; max-width: 780px; }
.oo-hero-text { background: linear-gradient(135deg, var(--navy) 0%, var(--darkred) 100%); color: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; margin: 20px 0; font-size: 16px; line-height: 1.75; font-weight: 500; }
.oo-hero-text p { margin: 0; }
.oo-model-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin: 20px 0; }
.oo-model-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 20px; display: flex; flex-direction: column; border-top: 3px solid var(--navy); }
.oo-model-card:last-child { border-top-color: var(--crimson); }
.oo-model-card .mc-num { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; margin-bottom: 10px; flex: 0 0 auto; }
.oo-model-card:last-child .mc-num { background: var(--crimson); }
.oo-model-card h3 { font-size: 14px; margin: 0 0 8px; color: var(--navy); font-weight: 800; }
.oo-model-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 600; font-style: italic; }
.oo-example-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; border-left: 4px solid var(--navy); }
.oo-example-card h2 { font-size: 20px; margin: 0 0 14px; color: var(--navy); font-weight: 800; font-family: var(--serif); }
.oo-example-card>p { margin: 0 0 14px; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.oo-example-card>p:last-child { margin-bottom: 0; }
.oo-example-flow { display: flex; align-items: center; flex-wrap: wrap; gap: 0; padding: 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; }
.oo-example-flow-step { font-size: 12px; font-weight: 700; color: var(--navy); padding: 6px 12px; background: white; border-radius: 8px; border: 1px solid var(--line); white-space: nowrap; }
.oo-example-flow-step:last-child { color: var(--crimson); border-color: var(--crimson); font-weight: 800; }
.oo-example-flow-arrow { font-size: 14px; color: var(--crimson); font-weight: 900; padding: 0 4px; }
.about-sig-section { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; border-left: 4px solid var(--crimson); }
.about-sig-section h2 { font-size: 20px; margin: 0 0 12px; color: var(--crimson); font-weight: 800; font-family: var(--serif); }
.about-sig-section p { margin: 0 0 14px; font-size: 15px; line-height: 1.75; color: var(--ink); font-weight: 500; }
.about-sig-section p:last-child { margin-bottom: 0; }
.about-sig-section .sig-quote { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin: 14px 0 0; font-style: italic; font-weight: 600; color: var(--navy); }

/* ===== ATA ===== */
.ata-header { margin: 40px 0 20px; }
.ata-header h2 { font-size: 26px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.ata-header p { margin: 6px 0 0; color: var(--muted); font-size: 15px; font-style: italic; }
.ata-outcome-label { display: inline-block; background: var(--crimson); color: white; font-weight: 700; font-size: 13px; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; letter-spacing: .3px; }
.ata-timeline { position: relative; padding-left: 44px; margin: 8px 0 24px; }
.ata-timeline::before { content: ''; position: absolute; left: 17px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--crimson), var(--navy)); border-radius: 2px; }
.ata-level { position: relative; margin-bottom: 10px; }
.ata-level-header { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: white; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(16,24,39,.04); cursor: pointer; transition: all .2s; user-select: none; }
.ata-level-header:hover { box-shadow: 0 4px 16px rgba(16,24,39,.08); border-color: #dacfc0; }
.ata-level-dot { position: absolute; left: -44px; top: 16px; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: white; z-index: 2; border: 3px solid white; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.ata-level-dot.dot-state { background: var(--crimson); }
.ata-level-dot.dot-district { background: var(--navy); }
.ata-level-dot.dot-school { background: #b45309; }
.ata-level-dot.dot-outcome { background: #16a34a; }
.ata-level-info { flex: 1; min-width: 0; }
.ata-level-title { font-size: 14px; font-weight: 800; color: var(--navy); margin: 0; }
.ata-level-role-short { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ata-level-toggle { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 13px; color: var(--navy); font-weight: 800; transition: transform .2s; }
.ata-level.open .ata-level-toggle { transform: rotate(180deg); }
.ata-level-content { display: none; margin-top: 6px; padding: 18px; background: white; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(16,24,39,.04); }
.ata-level.open .ata-level-content { display: block; }
.ata-field { margin-bottom: 12px; }
.ata-field:last-child { margin-bottom: 0; }
.ata-field-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.ata-field-value { font-size: 14px; color: var(--ink); font-weight: 600; line-height: 1.6; }
.ata-field-value.ata-question { background: #fff5f5; border: 1px solid #f2c2c2; border-radius: 8px; padding: 8px 12px; font-size: 13px; font-style: italic; }
.ata-field-value.ata-name { background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font-size: 13px; }
.ata-status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; white-space: nowrap; margin-left: auto; flex: 0 0 auto; }
.ata-status-badge.status-identified { background: #e0f2fe; color: #0369a1; border: 1px solid #7dd3fc; }
.ata-status-badge.status-action { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.ata-status-badge.status-pending { background: #f3f4f6; color: #64748b; border: 1px solid #d1d5db; }
.ata-status-badge.status-improving { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.ata-status-badge.status-worsening { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.ata-disclaimer { background: #fff5f5; border: 1px solid #f2c2c2; border-radius: var(--radius); padding: 20px 24px; margin: 20px 0; }
.ata-disclaimer p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink); font-weight: 600; font-style: italic; }
.ata-school-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin: 20px 0; border-left: 4px solid var(--navy); }
.ata-school-card h3 { font-size: 18px; margin: 0 0 12px; color: var(--navy); font-weight: 800; }
.ata-school-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.ata-school-meta-item { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; }
.ata-school-meta-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.ata-school-meta-value { font-size: 14px; color: var(--ink); font-weight: 600; }
.ata-school-chain { display: flex; align-items: center; flex-wrap: wrap; gap: 0; padding: 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 16px; }
.ata-school-chain-step { font-size: 11px; font-weight: 700; color: var(--navy); padding: 4px 10px; background: white; border-radius: 8px; border: 1px solid var(--line); white-space: nowrap; }
.ata-school-chain-arrow { font-size: 14px; color: var(--crimson); font-weight: 900; padding: 0 4px; }
.ata-school-closing { font-size: 14px; line-height: 1.7; color: var(--ink); font-weight: 600; margin: 16px 0 0; padding: 16px; background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; }
.ata-committee-list { list-style: none; padding: 0; margin: 4px 0 0; }
.ata-committee-list li { font-size: 13px; font-weight: 600; color: var(--ink); padding: 3px 0 3px 14px; position: relative; }
.ata-committee-list li::before { content: '\2022'; color: var(--crimson); font-weight: 900; position: absolute; left: 0; }

/* ===== DSM ===== */
.dsm-header h2 { font-size: 28px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.dsm-header p { margin: 4px 0 0; color: var(--muted); font-size: 15px; font-style: italic; }
.dsm-hero { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin: 20px 0; }
.dsm-hero p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.dsm-status-banner { background: #fff5f5; border: 2px solid #f2c2c2; border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; }
.dsm-status-banner strong { display: block; font-size: 16px; color: var(--crimson); margin-bottom: 6px; }
.dsm-status-banner p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.dsm-section-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.dsm-section-card h2 { font-size: 20px; margin: 0 0 12px; color: var(--crimson); font-weight: 800; }
.dsm-section-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.dsm-section-title { font-size: 22px; margin: 28px 0 16px; color: var(--crimson); font-weight: 800; font-family: var(--serif); }
.dsm-source-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-bottom: 20px; }
.dsm-source-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; }
.dsm-source-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dsm-source-num { width: 30px; height: 30px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex: 0 0 auto; }
.dsm-source-header h3 { margin: 0; font-size: 16px; color: var(--navy); font-weight: 800; }
.dsm-source-list { list-style: none; padding: 0; margin: 0; }
.dsm-source-list li { padding: 6px 0 6px 20px; position: relative; font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 1px solid #f0e8dc; }
.dsm-source-list li:last-child { border-bottom: none; }
.dsm-source-list li::before { content: '\2022'; color: var(--crimson); font-weight: 900; position: absolute; left: 0; }
.dsm-method-intro { font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; margin: 0 0 20px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; }
.dsm-method-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 20px; }
.dsm-method-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; }
.dsm-method-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.dsm-method-dot { width: 30px; height: 30px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex: 0 0 auto; }
.dsm-method-header h3 { margin: 0; font-size: 16px; color: var(--navy); font-weight: 800; }
.dsm-method-card>p { margin: 0 0 12px; font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 500; }
.dsm-method-examples { list-style: none; padding: 0; margin: 0; }
.dsm-method-examples li { padding: 5px 0 5px 20px; position: relative; font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 1px solid #f0e8dc; }
.dsm-method-examples li:last-child { border-bottom: none; }
.dsm-method-examples li::before { content: '\2022'; color: var(--crimson); font-weight: 900; position: absolute; left: 0; }
.dsm-privacy-intro { font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; margin: 0 0 20px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; }
.dsm-safeguard-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; margin-bottom: 20px; }
.dsm-safeguard { display: flex; gap: 10px; align-items: center; padding: 14px 16px; background: white; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow); font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.4; }
.dsm-safeguard-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 13px; font-weight: 800; }
.dsm-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.dsm-comparison-col { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; }
.dsm-comparison-col h3 { margin: 0 0 14px; font-size: 17px; font-weight: 800; color: var(--navy); }
.dsm-comparison-internal h3 { color: var(--crimson); }
.dsm-comparison-col ul { list-style: none; padding: 0; margin: 0; }
.dsm-comparison-col li { padding: 8px 0 8px 20px; position: relative; font-size: 14px; font-weight: 600; color: var(--ink); border-bottom: 1px solid #f0e8dc; }
.dsm-comparison-col li:last-child { border-bottom: none; }
.dsm-comparison-col li::before { content: '\2022'; font-weight: 900; position: absolute; left: 0; }
.dsm-comparison-col:first-child li::before { color: var(--navy); }
.dsm-comparison-internal li::before { color: var(--crimson); }
.dsm-limitations-card { background: #fff5f5; border: 1px solid #f2c2c2; border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.dsm-limitations-card h2 { font-size: 20px; margin: 0 0 12px; color: var(--crimson); font-weight: 800; }
.dsm-limitations-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.dsm-why-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.dsm-why-card h2 { font-size: 20px; margin: 0 0 12px; color: var(--navy); font-weight: 800; }
.dsm-why-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }

/* ===== FI ===== */
.fi-header h2 { font-size: 28px; margin: 0; font-family: var(--serif); color: var(--crimson); }
.fi-header p { margin: 4px 0 0; color: var(--muted); font-size: 15px; font-style: italic; }
.fi-hero { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin: 20px 0; }
.fi-hero p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.fi-section-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.fi-section-card h2 { font-size: 20px; margin: 0 0 18px; color: var(--crimson); font-weight: 800; }
.fi-section-title { font-size: 22px; margin: 28px 0 16px; color: var(--crimson); font-weight: 800; font-family: var(--serif); }
.fi-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; padding: 16px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 20px; }
.fi-flow-step { background: var(--navy); color: white; padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 13px; text-align: center; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.fi-flow-num { width: 24px; height: 24px; border-radius: 50%; background: var(--crimson); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex: 0 0 auto; }
.fi-flow-arrow { font-size: 22px; color: var(--crimson); font-weight: 900; padding: 0 6px; }
.fi-stage-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.fi-stage-card { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.fi-stage-card h3 { margin: 0 0 8px; font-size: 14px; color: var(--navy); font-weight: 800; display: flex; align-items: center; gap: 8px; }
.fi-stage-num { width: 24px; height: 24px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex: 0 0 auto; }
.fi-stage-card p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink); font-weight: 500; }
.fi-domain-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; margin-bottom: 20px; }
.fi-domain-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; }
.fi-domain-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.fi-domain-num { width: 30px; height: 30px; border-radius: 50%; background: var(--crimson); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex: 0 0 auto; }
.fi-domain-header h3 { margin: 0; font-size: 16px; color: var(--navy); font-weight: 800; }
.fi-domain-list { list-style: none; padding: 0; margin: 0 0 14px; }
.fi-domain-list li { padding: 6px 0 6px 20px; position: relative; font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 1px solid #f0e8dc; }
.fi-domain-list li:last-child { border-bottom: none; }
.fi-domain-list li::before { content: '\2022'; color: var(--crimson); font-weight: 900; position: absolute; left: 0; }
.fi-domain-why { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-top: auto; }
.fi-domain-why strong { display: block; font-size: 12px; color: var(--navy); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px; font-weight: 800; }
.fi-domain-why p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink); font-weight: 500; }
.fi-response-intro { font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; margin: 0 0 16px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; }
.fi-response-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; margin-bottom: 20px; }
.fi-response-card { display: flex; gap: 10px; align-items: center; padding: 14px 16px; background: white; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow); font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.4; }
.fi-response-icon { color: var(--crimson); font-size: 10px; flex: 0 0 auto; }
.fi-action-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; padding: 16px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; }
.fi-action-step { background: var(--navy); color: white; padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 13px; text-align: center; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.fi-action-num { width: 24px; height: 24px; border-radius: 50%; background: var(--crimson); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex: 0 0 auto; }
.fi-action-arrow { font-size: 22px; color: var(--crimson); font-weight: 900; padding: 0 6px; }
.fi-action-explanation { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.fi-action-explanation p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.fi-table-wrap { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; margin-bottom: 20px; }
.fi-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.fi-table th { background: #faf7f2; text-align: left; font-size: 11px; padding: 10px 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-transform: uppercase; font-weight: 800; color: var(--muted); }
.fi-table td { padding: 12px; border-bottom: 1px solid #f0e8dc; font-weight: 600; vertical-align: top; }
.fi-table td:first-child { font-weight: 700; color: var(--navy); }
.fi-table td:last-child { font-style: italic; color: var(--crimson); font-weight: 600; }
.fi-table tbody tr:hover { background: #fdf9f3; }
.fi-guardrail-card { background: #fff5f5; border: 1px solid #f2c2c2; border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.fi-guardrail-card h2 { font-size: 20px; margin: 0 0 12px; color: var(--crimson); font-weight: 800; }
.fi-guardrail-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }
.fi-why-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 24px; margin-bottom: 20px; }
.fi-why-card h2 { font-size: 20px; margin: 0 0 12px; color: var(--navy); font-weight: 800; }
.fi-why-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); font-weight: 500; }

/* Contact headshot */
.contact-headshot { width: 128px; height: 128px; max-width: 128px; max-height: 128px; border-radius: 9999px; object-fit: cover; border: 2px solid var(--line); box-shadow: var(--shadow); flex-shrink: 0; }
img.contact-headshot, img.profile-headshot, img.tracie-headshot { width: 128px !important; height: 128px !important; max-width: 128px !important; max-height: 128px !important; object-fit: cover !important; border-radius: 9999px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 40px 40px; margin-top: 0; font-size: 14px; line-height: 1.7; }
.site-footer-inner { max-width: 900px; }
.site-footer p { margin: 0 0 6px; }
.site-footer .sf-title { color: white; font-weight: 700; font-size: 15px; font-family: var(--serif); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.site-footer .sf-title-star { width: 20px; height: 20px; flex: 0 0 20px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.site-footer .sf-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; font-weight: 600; }
.site-footer .sf-meta span { display: flex; gap: 6px; align-items: center; }
.site-footer a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; }
.site-footer a:hover { text-decoration: underline; color: white; }

/* ===== DASHBOARD HOME COMPONENTS ===== */
.dash-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 0 32px; }
.dash-kpi { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; border-top: 3px solid var(--teal); }
.dash-kpi .dk-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin: 0 0 8px; }
.dash-kpi .dk-value { font-size: 28px; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.2; }
.dash-kpi .dk-desc { font-size: 13px; color: var(--muted); margin: 6px 0 0; line-height: 1.5; font-weight: 500; }
.dash-kpi.kpi-alert { border-top-color: var(--crimson); }
.dash-kpi.kpi-navy { border-top-color: var(--navy); }

.dash-ew-section { background: var(--navy); border-radius: var(--radius); padding: 32px; margin: 0 0 32px; color: white; }
.dash-ew-section h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 0 0 8px; color: white; }
.dash-ew-section .ew-sub { font-size: 15px; color: rgba(255,255,255,.7); margin: 0 0 24px; line-height: 1.6; }
.ew-indicator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ew-indicator { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 18px; }
.ew-indicator .ewi-status { display: inline-block; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
.ewi-status.ew-alert { background: rgba(185,28,28,.2); color: #fca5a5; border: 1px solid rgba(185,28,28,.3); }
.ewi-status.ew-watch { background: rgba(183,121,31,.2); color: #fcd34d; border: 1px solid rgba(183,121,31,.3); }
.ewi-status.ew-stable { background: rgba(22,128,58,.2); color: #86efac; border: 1px solid rgba(22,128,58,.3); }
.ew-indicator h4 { font-size: 15px; font-weight: 700; color: white; margin: 0 0 4px; }
.ew-indicator p { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }

.dash-track-section { background: var(--teal-light); border: 1px solid #b2dfdb; border-radius: var(--radius); padding: 32px; margin: 0 0 32px; }
.dash-track-section h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--teal); margin: 0 0 8px; }
.dash-track-section .dt-sub { font-size: 15px; color: var(--muted); margin: 0 0 24px; line-height: 1.6; }
.track-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; margin: 0 0 20px; }
.track-flow-step { background: var(--teal); color: white; padding: 12px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; text-align: center; white-space: nowrap; }
.track-flow-arrow { font-size: 22px; color: var(--teal); font-weight: 900; padding: 0 8px; }
.track-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.track-metric { background: white; border: 1px solid #b2dfdb; border-radius: 10px; padding: 16px; }
.track-metric h4 { font-size: 13px; font-weight: 700; color: var(--teal); margin: 0 0 4px; text-transform: uppercase; letter-spacing: .5px; }
.track-metric p { font-size: 14px; color: var(--ink); margin: 0; line-height: 1.5; font-weight: 600; }

.dash-coord-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 32px; }
.dash-coord-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; border-left: 3px solid var(--teal); }
.dash-coord-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.dash-coord-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

.cta-bar { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 32px; }
.cta-bar a { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all .2s; }
.cta-bar a.cta-teal { background: var(--teal); color: white; border: 1px solid var(--teal); }
.cta-bar a.cta-teal:hover { background: #0d6b63; }
.cta-bar a.cta-navy { background: var(--navy); color: white; border: 1px solid var(--navy); }
.cta-bar a.cta-navy:hover { background: #0a2848; }
.cta-bar a.cta-outline { background: white; color: var(--navy); border: 1px solid var(--line); }
.cta-bar a.cta-outline:hover { border-color: var(--navy); }

.page-cta-section { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; margin: 32px 0 20px; }
.page-cta-section h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.page-cta-section p { font-size: 14px; color: var(--muted); margin: 0 0 16px; line-height: 1.6; }
.page-cta-section .cta-bar { margin: 0; }

/* Teal accent variants */
.content-card.teal-accent { border-left: 3px solid var(--teal); }
.section-label.teal { color: var(--teal); }

/* Workforce page styles */
.wf-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0 0 32px; }
.wf-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.wf-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.wf-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.7; }
.wf-card .wf-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.wf-card .wf-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.wf-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 32px; }
.wf-compare-block { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); }
.wf-compare-block.wf-crisis { background: #fef2f2; border-color: #fecaca; }
.wf-compare-block.wf-prevent { background: #f0fdf4; border-color: #bbf7d0; }
.wf-compare-block h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 14px; }
.wf-compare-block.wf-crisis h4 { color: #991b1b; }
.wf-compare-block.wf-prevent h4 { color: #166534; }
.wf-compare-block ul { list-style: none; padding: 0; margin: 0; }
.wf-compare-block li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.wf-compare-block li:last-child { border-bottom: none; }
.wf-partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 24px; }
.wf-partner { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; font-weight: 700; font-size: 14px; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.wf-partner-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 18px; flex: 0 0 auto; }

/* Response framework sidebar styles */
.rf-system-section { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; border-left: 4px solid var(--teal); }
.rf-system-section h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.rf-system-section p { font-size: 14px; line-height: 1.7; color: var(--ink); margin: 0 0 14px; }
.rf-system-section p:last-child { margin-bottom: 0; }
.rf-list { list-style: none; padding: 0; margin: 0; }
.rf-list li { padding: 8px 0 8px 18px; position: relative; font-size: 14px; font-weight: 600; color: var(--ink); border-bottom: 1px solid #f0e8dc; }
.rf-list li:last-child { border-bottom: none; }
.rf-list li::before { content: '\2022'; color: var(--teal); font-weight: 900; position: absolute; left: 0; }
.rf-principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0 0 24px; }
.rf-principle { background: var(--teal-light); border: 1px solid #b2dfdb; border-radius: 10px; padding: 16px; }
.rf-principle h4 { font-size: 14px; font-weight: 700; color: var(--teal); margin: 0 0 4px; }
.rf-principle p { font-size: 13px; color: var(--ink); margin: 0; line-height: 1.6; }

/* ===== LIVE DASHBOARD COMPONENTS ===== */
.live-dash-header { margin-bottom: 24px; }

.dash-controls {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.dash-control-group { flex: 1; min-width: 180px; }
.dash-control-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}
.dash-control-group select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: white;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--sans);
  appearance: auto;
}
.dash-control-group select option { background: var(--navy); color: white; }
.dash-refresh-btn {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--sans);
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.dash-refresh-btn:hover { background: #0d6b63; }

.dash-district-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ddb-left h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin: 0 0 2px; }
.ddb-left p { font-size: 14px; color: var(--muted); margin: 0; font-weight: 500; }
.ddb-right { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ddb-status { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 5px 14px; border-radius: 999px; }
.ddb-active { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.ddb-updated { font-size: 12px; color: var(--muted); font-weight: 600; }

.dash-risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.dash-risk-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 3px solid var(--line);
}
.dash-risk-card.risk-high { border-top-color: var(--red); }
.dash-risk-card.risk-watch { border-top-color: var(--amber); }
.dash-risk-card.risk-stable { border-top-color: var(--green); }
.dash-risk-card.risk-systems { border-top-color: var(--teal); }
.drc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.risk-high .drc-icon { background: #fef2f2; }
.risk-watch .drc-icon { background: #fffbeb; }
.risk-stable .drc-icon { background: #f0fdf4; }
.risk-systems .drc-icon { background: var(--teal-light); }
.drc-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.risk-high .drc-icon svg { stroke: var(--red); }
.risk-watch .drc-icon svg { stroke: var(--amber); }
.risk-stable .drc-icon svg { stroke: var(--green); }
.risk-systems .drc-icon svg { stroke: var(--teal); }
.drc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin: 0 0 4px; }
.drc-value { font-size: 28px; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.2; }
.drc-trend { font-size: 12px; font-weight: 600; margin: 4px 0 0; }
.drc-trend-up { color: var(--red); }
.drc-trend-neutral { color: var(--muted); }
.drc-trend-down { color: var(--green); }

.dash-section-heading {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}

.dash-indicator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.dash-ind-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 4px solid var(--line);
}
.dash-ind-card.ind-alert { border-left-color: var(--red); }
.dash-ind-card.ind-watch { border-left-color: var(--amber); }
.dash-ind-card.ind-stable { border-left-color: var(--green); }
.dic-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dic-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 999px;
}
.dic-alert { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.dic-watch { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.dic-stable { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.dic-domain { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); }
.dash-ind-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.dic-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.dic-value { font-size: 24px; font-weight: 800; color: var(--navy); }
.dic-change { font-size: 13px; font-weight: 700; }
.dic-change.dic-up { color: var(--red); }
.dic-change.dic-down { color: var(--red); }
.dic-change.dic-neutral { color: var(--muted); }
.dic-desc { font-size: 13px; line-height: 1.65; color: var(--muted); margin: 0 0 12px; }
.dic-ownership, .dic-action {
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 12px;
  background: #faf7f2;
  border-radius: 8px;
  margin-bottom: 6px;
}
.dic-ownership:last-child, .dic-action:last-child { margin-bottom: 0; }
.dic-own-label { font-weight: 800; color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .3px; display: block; margin-bottom: 2px; }
.dic-own-value { font-weight: 600; color: var(--ink); display: block; }

.dash-ownership-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.do-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.do-table th {
  background: var(--navy);
  color: white;
  text-align: left;
  font-size: 11px;
  padding: 12px 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .3px;
}
.do-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0e8dc;
  font-weight: 600;
  vertical-align: middle;
}
.do-table tbody tr:hover { background: #fdf9f3; }
.do-risk, .do-status {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  white-space: nowrap;
}
.do-risk.do-high { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.do-risk.do-watch { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.do-risk.do-stable { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.do-status.do-in-progress { background: #e0f2fe; color: #0369a1; border: 1px solid #7dd3fc; }
.do-status.do-pending { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.do-status.do-stable { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

.dash-pilot-notice {
  background: #fff5f5;
  border: 1px solid #f2c2c2;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
}
.dash-pilot-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
}
.dash-pilot-notice strong { color: var(--crimson); }

/* ===== REAL-TIME DASHBOARD PAGE ===== */
.rtd-map-section { margin-bottom: 32px; }
.rtd-map-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
}
.rtd-map-visual {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.rtd-map-placeholder {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtd-map-placeholder svg { width: 100%; max-width: 100%; height: auto; }
.rtd-map-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--line);
  background: #faf7f2;
}
.rtd-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.rtd-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.rtd-legend-line {
  width: 16px;
  height: 3px;
  border-radius: 2px;
  flex: 0 0 auto;
}
.rtd-map-sidebar { display: flex; flex-direction: column; gap: 16px; }
.rtd-region-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.rtd-region-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.rtd-region-list { display: flex; flex-direction: column; gap: 8px; }
.rtd-region-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #faf7f2;
}
.rtd-region-item strong { font-size: 13px; color: var(--ink); display: block; }
.rtd-region-item p { font-size: 11px; color: var(--muted); margin: 2px 0 0; font-weight: 500; }
.rtd-region-status {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
  margin-top: 2px;
}
.rtd-region-high .rtd-region-status { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.rtd-region-watch .rtd-region-status { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.rtd-region-stable .rtd-region-status { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.rtd-coord-stat { font-size: 14px; font-weight: 600; color: var(--ink); margin: 6px 0; display: flex; align-items: center; gap: 8px; }
.rtd-coord-num { font-size: 20px; font-weight: 800; color: var(--teal); }

.rtd-systems-panel { margin-bottom: 32px; }
.rtd-system-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.rtd-system-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.rtd-sys-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.rtd-sys-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.rtd-sys-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rtd-sys-header h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; flex: 1; }
.rtd-sys-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.rtd-badge-active { background: #e0f2fe; color: #0369a1; border: 1px solid #7dd3fc; }
.rtd-badge-alert { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; }
.rtd-badge-stable { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.rtd-sys-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.rtd-sys-list li {
  padding: 5px 0 5px 16px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid #f0e8dc;
}
.rtd-sys-list li:last-child { border-bottom: none; }
.rtd-sys-list li::before { content: '\2022'; color: var(--teal); font-weight: 900; position: absolute; left: 0; }
.rtd-sys-authority {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .3px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.rtd-ew-logic {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  color: white;
}
.rtd-ew-logic h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: white;
}
.rtd-ew-logic .rtd-ew-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin: 0 0 24px;
  line-height: 1.6;
}
.rtd-ew-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rtd-ew-tier {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 20px;
}
.rtd-tier-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.rtd-tier-dot { width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto; }
.rtd-tier-header h4 { font-size: 14px; font-weight: 700; color: white; margin: 0; }
.rtd-ew-tier p { font-size: 13px; color: rgba(255,255,255,.65); margin: 0 0 10px; line-height: 1.5; }
.rtd-tier-action {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
}

/* Hero btn-dashboard variant */
.hero-buttons a.btn-dashboard {
  background: var(--teal);
  color: white;
  border: 1px solid var(--teal);
}
.hero-buttons a.btn-dashboard:hover { background: #0d6b63; }

/* ===== HOMEPAGE DASHBOARD PREVIEW ===== */
.dash-preview-card {
  background: #0b1929;
  border: 1px solid #1e3a5f;
  border-radius: 12px;
  overflow: hidden;
}
.dash-preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #071D35;
  border-bottom: 1px solid #1e3a5f;
}
.dash-preview-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex: 0 0 8px;
  animation: dp-pulse 2s infinite;
}
@keyframes dp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.dash-preview-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: white;
  flex: 1;
}
.dash-preview-status {
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-preview-body { padding: 14px 18px; }
.dash-preview-scores {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.dash-preview-score {
  background: #0f2440;
  border: 1px solid #1e3a5f;
  border-radius: 6px;
  padding: 10px;
  border-top: 2px solid #1e3a5f;
  text-align: center;
}
.dash-preview-score.dps-red { border-top-color: #ef4444; }
.dash-preview-score.dps-amber { border-top-color: #f59e0b; }
.dash-preview-score.dps-green { border-top-color: #22c55e; }
.dash-preview-score.dps-teal { border-top-color: #0F766E; }
.dash-preview-score.dps-blue { border-top-color: #3b82f6; }
.dash-preview-score.dps-navy { border-top-color: #6366f1; }
.dps-val { font-size: 22px; font-weight: 800; color: white; display: block; line-height: 1.1; }
.dps-lbl { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); display: block; margin-top: 2px; }
.dash-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-preview-map {
  background: #0f2440;
  border: 1px solid #1e3a5f;
  border-radius: 6px;
  padding: 12px;
}
.dpm-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.dpm-zones { display: flex; flex-wrap: wrap; gap: 6px; }
.dpm-zone {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  color: white;
}
.dpm-alert { background: rgba(239,68,68,0.2); border: 1px solid rgba(239,68,68,0.35); }
.dpm-watch { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); }
.dpm-stable { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); }
.dash-preview-indicators {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dpi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f2440;
  border: 1px solid #1e3a5f;
  border-radius: 5px;
  padding: 6px 10px;
  border-left: 3px solid #1e3a5f;
}
.dpi-item.dpi-alert { border-left-color: #ef4444; }
.dpi-item.dpi-watch { border-left-color: #f59e0b; }
.dpi-item.dpi-stable { border-left-color: #22c55e; }
.dpi-name { font-size: 11px; font-weight: 700; color: white; flex: 1; }
.dpi-val { font-size: 14px; font-weight: 800; color: white; }
.dpi-tag { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.5); white-space: nowrap; }
.dpi-alert .dpi-tag { color: #f87171; }
.dpi-watch .dpi-tag { color: #fbbf24; }
.dpi-stable .dpi-tag { color: #4ade80; }
.dash-preview-footer {
  padding: 8px 18px;
  border-top: 1px solid #1e3a5f;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.btn-open-dashboard {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background: var(--teal);
  color: white;
  border: 2px solid var(--teal);
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.btn-open-dashboard:hover { background: #0d6b63; border-color: #0d6b63; }

/* ===== OPERATIONAL CARDS (What We Do) ===== */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 28px;
}
.ops-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
  border-top: 3px solid var(--teal);
}
.ops-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(15,118,110,.08);
}
.ops-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #E6F5F3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
}
.ops-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ops-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.ops-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ===== OUTCOME OWNERSHIP SIGNATURE FRAMEWORK ===== */
.oo-signature {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 28px;
}
.oo-sig-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
}
.oo-sig-header h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin: 0;
}
.oo-sig-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #14b8a6;
  background: rgba(15,118,110,0.15);
  border: 1px solid rgba(15,118,110,0.3);
  border-radius: 999px;
  padding: 4px 12px;
}
.oo-sig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px 28px 24px;
}
.oo-sig-q {
  padding: 16px 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.oo-sig-q:last-child { border-right: none; }
.oo-sig-num {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.oo-sig-q strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.oo-sig-q p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1250px) {
  .site { grid-template-columns: 240px 1fr; }
  .hero-section h1 { font-size: 34px; }
  .systems-grid { grid-template-columns: repeat(4, 1fr); }
  .indicators-grid { grid-template-columns: repeat(2, 1fr); }
  .framework-questions { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr; }
  .kpis, .panels { grid-template-columns: repeat(2, 1fr); }
  .filters { grid-template-columns: repeat(2, 1fr); }
  .cases-kpis { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { grid-template-columns: repeat(3, 1fr); }
  .workflow-step:nth-child(3) .ws-arrow { display: none; }
  .cs-grid { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr; }
  .reports-kpis { grid-template-columns: repeat(2, 1fr); }
  .report-cards { grid-template-columns: 1fr 1fr; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .oo-q-grid { grid-template-columns: 1fr; }
  .oo-chain { gap: 4px; }
  .ata-school-meta { grid-template-columns: 1fr; }
  .dsm-method-cards { grid-template-columns: 1fr 1fr; }
  .dsm-source-cards { grid-template-columns: 1fr 1fr; }
  .dsm-comparison { grid-template-columns: 1fr 1fr; }
  .fi-domain-cards { grid-template-columns: 1fr 1fr; }
  .fi-stage-cards { grid-template-columns: repeat(3, 1fr); }
  .fi-response-cards { grid-template-columns: 1fr 1fr; }
  .oo-model-grid { grid-template-columns: repeat(3, 1fr); }
  .oo-pathway-flow { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .map-container { grid-template-columns: 1fr; }
  .dash-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .ew-indicator-grid { grid-template-columns: 1fr 1fr; }
  .track-metrics { grid-template-columns: 1fr 1fr; }
  .dash-coord-grid { grid-template-columns: 1fr 1fr; }
  .wf-card-grid { grid-template-columns: 1fr; }
  .wf-compare { grid-template-columns: 1fr; }
  .wf-partner-grid { grid-template-columns: 1fr 1fr; }
  .dash-risk-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-indicator-grid { grid-template-columns: 1fr; }
  .dash-controls { flex-direction: column; }
  .do-table { font-size: 12px; }
  .do-table th, .do-table td { padding: 10px 10px; }
  .rf-principle-grid { grid-template-columns: 1fr; }
  .rtd-map-container { grid-template-columns: 1fr; }
  .rtd-system-row { grid-template-columns: 1fr 1fr; }
  .rtd-ew-tiers { grid-template-columns: 1fr 1fr; }
  .dash-preview-scores { grid-template-columns: repeat(3, 1fr); }
  .dash-preview-grid { grid-template-columns: 1fr; }
  .ok-future-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .oo-sig-grid { grid-template-columns: repeat(2, 1fr); }
  .oo-sig-q { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .oo-sig-q:nth-child(2) { border-right: none; }
  .diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site { display: block; }
  aside { position: relative; height: auto; }
  .hero-section { padding: 40px 20px 32px; }
  .hero-section h1 { font-size: 28px; }
  .hero-section .hero-sub { font-size: 16px; }
  .content { padding: 0 20px 40px; }
  .section-title { font-size: 26px; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .indicators-grid { grid-template-columns: 1fr; }
  .framework-questions { grid-template-columns: 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .filters, .kpis, .panels, .bottom, .rules { grid-template-columns: 1fr; }
  .topbar h1 { font-size: 22px; }
  .topbar { padding: 20px; }
  .page-header { padding: 32px 0 24px; }
  .page-header h2 { font-size: 28px; }
  .map-container { grid-template-columns: 1fr; }
  #district-map { height: 400px; }
  .map-selector select { min-width: 200px; }
  .snapshot-grid { grid-template-columns: 1fr; }
  .school-filters { gap: 6px; }
  .school-filter-btn { padding: 6px 12px; font-size: 12px; }
  .cases-kpis { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .ws-arrow { display: none; }
  .case-snapshot-overlay { width: 100%; }
  .case-filters { flex-direction: column; }
  .case-table { font-size: 11px; }
  .case-table th, .case-table td { padding: 8px 6px; }
  .acc-grid { grid-template-columns: 1fr; }
  .reports-kpis { grid-template-columns: 1fr; }
  .report-cards { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .export-btns { flex-direction: column; }
  .export-btns .btn { width: 100%; }
  .partner-table { font-size: 11px; }
  .partner-table th, .partner-table td { padding: 8px 6px; }
  .oo-chain { flex-direction: column; gap: 0; }
  .oo-chain-arrow { transform: rotate(90deg); padding: 4px 0; }
  .oo-q-grid { grid-template-columns: 1fr; }
  .ata-school-chain { flex-direction: column; gap: 0; }
  .ata-school-chain-arrow { transform: rotate(90deg); padding: 4px 0; }
  .ata-level-role-short { white-space: normal; }
  .dsm-method-cards { grid-template-columns: 1fr; }
  .dsm-source-cards { grid-template-columns: 1fr; }
  .dsm-comparison { grid-template-columns: 1fr; }
  .dsm-safeguard-cards { grid-template-columns: 1fr; }
  .fi-domain-cards { grid-template-columns: 1fr; }
  .fi-stage-cards { grid-template-columns: 1fr; }
  .fi-response-cards { grid-template-columns: 1fr; }
  .fi-flow { flex-direction: column; gap: 0; }
  .fi-flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .fi-action-flow { flex-direction: column; gap: 0; }
  .fi-action-arrow { transform: rotate(90deg); padding: 4px 0; }
  .fi-table { font-size: 11px; }
  .fi-table th, .fi-table td { padding: 8px 6px; }
  .contact-headshot { width: 96px; height: 96px; max-width: 96px; max-height: 96px; }
  img.contact-headshot, img.profile-headshot, img.tracie-headshot { width: 96px !important; height: 96px !important; max-width: 96px !important; max-height: 96px !important; }
  .oo-model-grid { grid-template-columns: 1fr; }
  .oo-pathway-flow { flex-direction: column; align-items: center; }
  .oo-pathway-arrow { transform: rotate(90deg); padding: 4px 0; }
  .oo-pathway-node { width: 100%; }
  .oo-example-flow { flex-direction: column; gap: 0; }
  .oo-example-flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .oo-hero-banner h2 { font-size: 26px; }
  .site-footer { padding: 32px 20px; }
  .dash-kpi-grid { grid-template-columns: 1fr; }
  .ew-indicator-grid { grid-template-columns: 1fr; }
  .track-metrics { grid-template-columns: 1fr; }
  .track-flow { flex-direction: column; gap: 0; }
  .track-flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .dash-coord-grid { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; }
  .cta-bar a { justify-content: center; }
  .wf-card-grid { grid-template-columns: 1fr; }
  .wf-compare { grid-template-columns: 1fr; }
  .wf-partner-grid { grid-template-columns: 1fr; }
  .dash-risk-grid { grid-template-columns: 1fr; }
  .dash-indicator-grid { grid-template-columns: 1fr; }
  .dash-district-banner { flex-direction: column; align-items: flex-start; }
  .dash-controls { flex-direction: column; }
  .dash-control-group { min-width: 100%; }
  .do-table { font-size: 11px; }
  .do-table th, .do-table td { padding: 8px 6px; }
  .rf-principle-grid { grid-template-columns: 1fr; }
  .rtd-map-container { grid-template-columns: 1fr; }
  .rtd-system-row { grid-template-columns: 1fr; }
  .rtd-ew-tiers { grid-template-columns: 1fr; }
  .dash-preview-scores { grid-template-columns: repeat(2, 1fr); }
  .dash-preview-grid { grid-template-columns: 1fr; }
  .ok-future-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
  .oo-sig-grid { grid-template-columns: 1fr; }
  .oo-sig-q { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .oo-sig-q:last-child { border-bottom: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { justify-content: center; }
}