/* ==========================================================
   Shasta Union HSD — AI Guidelines
   Friendly Institutional, Navy + Teal + Coral
   ========================================================== */

:root {
  /* Color tokens */
  --navy-900: #0d2440;
  --navy-800: #1e3a5f;
  --navy-700: #2c5078;
  --navy-600: #3d6695;
  --teal-600: #2d7387;
  --teal-500: #3a8a9e;
  --teal-200: #b6dde5;
  --teal-100: #d9eef2;
  --teal-50:  #ecf6f8;
  --coral-700: #a13b25; /* WCAG-safe: white text passes 6.6:1; on coral-100 passes 5.4:1 */
  --coral-600: #d35a3f;
  --coral-500: #e76f51;
  --coral-300: #f4a98e;
  --coral-100: #fae3da;
  --gold-500: #e2a541;
  --gold-100: #f7e6c4;

  --cream: #fdf8f3;
  --cream-2: #f7efe4;
  --paper: #ffffff;

  --ink-900: #15212f;
  --ink-700: #3e4b5e;
  --ink-500: #6b7a8f;
  --ink-400: #8a96a8;
  --line:    #e6dccb;
  --line-2:  #efe8db;

  --green-600: #22895f;
  --green-500: #2d9b6e;
  --green-100: #d9efe3;
  --red-600:  #b0383a;
  --red-500:  #c64545;
  --red-100:  #f5dadb;
  --yellow-600: #b78725;
  --yellow-500: #d39f33;
  --yellow-100: #f6e6c0;

  /* Layout */
  --container: 1180px;
  --container-tight: 920px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,40,80,.06), 0 1px 3px rgba(15,40,80,.04);
  --shadow:    0 6px 16px -6px rgba(15,40,80,.12), 0 2px 6px -2px rgba(15,40,80,.06);
  --shadow-lg: 0 24px 48px -24px rgba(15,40,80,.25), 0 8px 16px -8px rgba(15,40,80,.10);
  --shadow-glow: 0 0 0 1px rgba(58,138,158,.15), 0 16px 32px -16px rgba(58,138,158,.35);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ----- Reset / Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 196px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: var(--teal-600); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--coral-700); } /* SC 1.4.3 — coral-500 fails 4.5:1, coral-700 passes 6.3:1 */
em { font-style: italic; color: var(--navy-800); font-weight: 500; }
strong { font-weight: 600; color: var(--navy-800); }

/* WCAG 2.1 AA — Focus Visible (SC 2.4.7) */
:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Ensure focus ring is visible on dark surfaces */
.hero :focus-visible,
.footer :focus-visible,
.section--rubric :focus-visible {
  outline-color: #fff;
  outline-offset: 4px;
}
/* Pill-shaped buttons get a matching rounded ring */
.btn:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}

/* Skip link */
.skip-link {
  position: absolute; top: -50px; left: 1rem;
  background: var(--navy-800); color: #fff; padding: .5rem 1rem;
  border-radius: var(--radius-sm); z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* Layout container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ----- District Branding Bar (sticky via parent header) ----- */
[role="banner"] {
  position: sticky; top: 0; z-index: 50;
}
.district-bar {
  background-color: #3a3a3e;
  background-image:
    linear-gradient(rgba(50,50,55,.78), rgba(50,50,55,.78)),
    url('https://www.suhsd.net/images/header-bg.jpg');
  background-size: cover;
  background-position: center 45%;
  border-bottom: 3px solid #1f5a9c;
  transition: box-shadow .25s var(--ease);
}
[role="banner"].is-scrolled .district-bar {
  box-shadow: 0 4px 24px -4px rgba(0,0,0,.5);
}
.district-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 130px;
}
.district-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.district-brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  transition: opacity .2s var(--ease);
}
.district-brand:hover { opacity: .85; color: #fff; }
.district-brand__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.district-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  width: max-content;
}
.district-brand__topline {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.district-brand__name-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
}
.district-brand__name {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
}
.district-brand__sub {
  display: block;
  width: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 4px;
  white-space: nowrap;
}
.district-brand__hub {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(26,120,194,.35);
  color: rgba(255,255,255,.92);
  padding: 3px 12px;
  border-radius: 99px;
  border: 1px solid rgba(26,120,194,.55);
}

/* ----- Site-wide nav (inside dark district header) ----- */
.sitenav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.sitenav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 8px;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.sitenav a:hover { color: #fff; background: rgba(255,255,255,.10); }
.sitenav a.is-active {
  color: #fff;
  background: rgba(255,255,255,.16);
  font-weight: 600;
}
.sitenav__feedback {
  margin-left: 6px;
  color: var(--teal-200) !important;
  border: 1px solid rgba(58,138,158,.35);
  background: rgba(58,138,158,.15) !important;
}
.sitenav__feedback:hover {
  background: rgba(58,138,158,.28) !important;
  color: var(--teal-100) !important;
}

/* ----- Page section nav bar (sticky, below header — district blue) ----- */
.pagebar {
  position: sticky;
  top: 130px; /* height of district header */
  z-index: 40;
  background: #155f99;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.pagebar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 48px;
}

/* Topnav inside blue pagebar — override default pill styles */
.pagebar .topnav {
  background: transparent;
  border: none;
  padding: 0;
  gap: 2px;
}
.pagebar .topnav a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 7px 14px;
}
.pagebar .topnav a:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
}
.pagebar .topnav a.is-active {
  background: #fff;
  color: #155f99;
}

/* ----- Legacy topbar (no longer rendered) ----- */
.topbar { display: none; }

/* ----- Mobile nav toggle button ----- */
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: #fff;
  padding: 0;
  flex-shrink: 0;
  transition: background .18s var(--ease);
}
.mobile-nav-toggle:hover  { background: rgba(255,255,255,.16); }
.mobile-nav-toggle svg    { width: 22px; height: 22px; }
.mobile-nav-toggle .icon-close { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-menu  { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ----- Mobile nav panel ----- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; /* matches mobile header height */
  left: 0; right: 0;
  background: #26262b;
  border-bottom: 3px solid #1f5a9c;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  z-index: 45;
  max-height: calc(100dvh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open { display: block; }

.mobile-nav__inner {
  padding: 8px 0 24px;
  display: flex;
  flex-direction: column;
}
.mobile-nav__inner a {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.mobile-nav__inner a:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.mobile-nav__inner a.is-active {
  color: #fff;
  font-weight: 700;
  border-left-color: #1a78c2;
  background: rgba(26,120,194,.18);
}
.mobile-nav__inner a:focus-visible { outline-color: #fff; }
.mobile-nav__feedback {
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--teal-200) !important;
}
body.mobile-nav-open { overflow: hidden; }

/* Keep brand styles for footer usage */
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-800); }
.brand:hover { color: var(--navy-800); }
.brand__mark {
  width: 36px; height: 36px;
  color: var(--teal-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__district { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: var(--navy-900); }
.brand__sub { font-size: 12px; color: var(--ink-700); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }

.topnav {
  display: flex; gap: 4px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 999px;
}
.topnav a {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-700);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.topnav a:hover { color: var(--navy-800); background: var(--cream-2); }
.topnav a.is-active {
  color: #fff;
  background: var(--navy-800);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--navy-800); color: #fff;
  box-shadow: 0 6px 16px -6px rgba(30,58,95,.5);
}
.btn--primary:hover { background: var(--navy-900); color: #fff; box-shadow: 0 10px 24px -8px rgba(30,58,95,.6); }
.btn--secondary {
  /* SC 1.4.3 — coral-700 base ensures white text passes 6.6:1 */
  background: var(--coral-700); color: #fff;
  box-shadow: 0 6px 16px -6px rgba(161,59,37,.5);
}
.btn--secondary:hover { background: #802e1c; color: #fff; box-shadow: 0 10px 24px -8px rgba(161,59,37,.6); }
.btn--ghost {
  background: transparent; color: var(--navy-800);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--cream-2); border-color: var(--navy-700); color: var(--navy-800); }

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #07111f 0%, #0d2440 55%, #142e56 100%);
  padding: 88px 0 96px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(72px);
  opacity: .75;
}
.hero__blob--1 {
  width: 480px; height: 480px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(58,138,158,.35), transparent 60%);
}
.hero__blob--2 {
  width: 420px; height: 420px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, rgba(231,111,81,.2), transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; }

.hero__download {
  position: absolute;
  top: 6px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px -18px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.hero__download:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.46);
  color: #fff;
  transform: translateY(-1px);
}
.hero__download svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-200);
  background: rgba(58,138,158,.14);
  border: 1px solid rgba(58,138,158,.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 28px;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 116px);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0;
  color: #fff;
}
.hero__title-line {
  display: block;
}
.hero__title-line:last-child {
  background: linear-gradient(120deg, #fff 0%, var(--teal-200) 55%, var(--coral-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero__lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin: 32px 0 36px;
}
.hero em { color: var(--teal-200); font-style: italic; font-weight: 500; }

/* Vision statement pulled into hero */
.hero__vision {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__vision-kicker {
  color: var(--teal-200);
  margin: 0 0 14px;
}
.hero__vision-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
.hero .pullquote {
  border-left-color: var(--coral-500);
}
.hero .pullquote p {
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.6vw, 23px);
}
.hero__pillars {
  margin-top: 28px;
}
.hero .pillar {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}
.hero .pillar__label {
  color: rgba(255,255,255,.9);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero .btn--primary {
  background: var(--teal-500); color: #fff;
  box-shadow: 0 6px 16px -6px rgba(58,138,158,.55);
}
.hero .btn--primary:hover { background: var(--teal-600); color: #fff; box-shadow: 0 10px 24px -8px rgba(58,138,158,.65); }
.hero .btn--secondary {
  background: transparent; color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.28); box-shadow: none;
}
.hero .btn--secondary:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); }

/* ----- Page hero (non-index pages) ----- */
.page-hero {
  background: linear-gradient(145deg, #07111f 0%, #0d2440 55%, #142e56 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.page-hero__inner { position: relative; }
.page-hero__kicker {
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-200);
  margin: 0 0 16px;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 16px;
}
.page-hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin: 0;
  line-height: 1.6;
}

/* Focus ring on dark/blue backgrounds */
.sitenav :focus-visible,
.pagebar :focus-visible,
.page-hero :focus-visible,
.section--dark :focus-visible { outline-color: #fff; outline-offset: 4px; }

/* Visually-hidden utility (screen-reader only) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----- Section base ----- */
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--paper); }

.section__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.section__aside { position: sticky; top: 100px; }
.section__kicker {
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600);
  margin: 0 0 12px;
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.section__title--display {
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -.015em;
}

/* Pullquote */
.pullquote {
  margin: 0;
  padding: 0 0 0 32px;
  border-left: 4px solid var(--coral-500);
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--ink-900);
  margin: 0;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.pillar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 15px;
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}
.pillar__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--dot, var(--teal-500));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dot, var(--teal-500)) 18%, transparent);
}
.pillar__label {
  font-weight: 750; font-size: 17px; line-height: 1.05;
  margin: 0; color: var(--navy-800);
}

/* ----- Audience sections ----- */
.section--audience { padding: 80px 0 96px; }

.audience-header {
  max-width: 820px;
  margin: 0 0 48px;
}
.audience-header__intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 16px 0 0;
}

/* Default Expectation callout */
.callout {
  display: flex; gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--coral-100), #fff7f3);
  border: 1px solid var(--coral-300);
  border-radius: var(--radius-lg);
  margin-bottom: 56px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--coral-500);
}
.callout__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--coral-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.callout__icon svg { width: 24px; height: 24px; }
.callout__label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  /* SC 1.4.3 — coral-600 on coral-100 = 3.22:1 fail; coral-700 = 5.4:1 pass */
  color: var(--coral-700);
  margin: 0 0 4px;
}
.callout__text { margin: 0; font-size: 17px; color: var(--ink-900); }

/* Principle card */
.principle {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.principle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.section--alt .principle { background: var(--cream); }

.principle__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}
.principle__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  border: 1px solid var(--teal-100);
}
.principle__icon svg { width: 22px; height: 22px; }
.principle__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy-900);
  margin: 4px 0 8px;
}
.principle__lede {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}

/* Bullet lists */
.bulletlist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 4px;
  counter-reset: itm;
}
.bulletlist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
}
.bulletlist li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-50);
}
.bulletlist--numbered { counter-reset: itm; }
.bulletlist--numbered li::before {
  counter-increment: itm;
  content: counter(itm);
  top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-500); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.bulletlist--numbered li { padding-left: 36px; }

/* Compare (permitted vs unethical) */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.compare__col {
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid;
}
.compare__col--ok {
  background: linear-gradient(180deg, #f0faf4 0%, #e8f6ee 100%);
  border-color: var(--green-100);
}
.compare__col--no {
  background: linear-gradient(180deg, #fdf2f2 0%, #fbe7e8 100%);
  border-color: var(--red-100);
}
.compare__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed;
}
.compare__col--ok .compare__head { border-color: #c7e3d2; }
.compare__col--no .compare__head { border-color: #f0c8c9; }
.compare__head h4 {
  font-size: 15px; font-weight: 700;
  margin: 0;
  color: var(--navy-900);
  letter-spacing: -.005em;
}
.compare__badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.compare__badge--ok { background: var(--green-500); color: #fff; }
.compare__badge--no { background: var(--red-500); color: #fff; }
.compare__badge svg { width: 14px; height: 14px; }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-900);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
}
.checklist--ok li::before {
  background: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2322895f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat; background-size: 10px;
}
.checklist--no li::before {
  background: var(--red-100);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23b0383a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat; background-size: 10px;
}

/* Prohibited block */
.prohibited {
  margin-top: 20px;
  padding: 24px 28px;
  background: #fdf3f3;
  border: 1px solid var(--red-100);
  border-left: 4px solid var(--red-500);
  border-radius: var(--radius);
}
.prohibited__label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red-600);
  margin: 0 0 12px;
}
.prohibited__list {
  list-style: none; padding: 0; margin: 0;
}
.prohibited__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-900);
}
.prohibited__list li::before {
  content: "✕";
  position: absolute; left: 0; top: 0;
  color: var(--red-500); font-weight: 700;
  font-size: 14px;
}

/* Accordion */
.accordion {
  margin-top: 20px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.acc {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.section--alt .acc { background: var(--paper); }
.acc[open] { border-color: var(--teal-200); box-shadow: var(--shadow-sm); }
.acc__summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-weight: 600;
  color: var(--navy-900);
  transition: color .2s var(--ease);
}
.acc__summary::-webkit-details-marker { display: none; }
.acc__summary:hover { color: var(--teal-600); }
.acc__title { font-size: 16px; }
.acc__chev {
  display: inline-block;
  width: 12px; height: 12px;
  border-right: 2px solid var(--teal-600);
  border-bottom: 2px solid var(--teal-600);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  margin-right: 6px;
}
.acc[open] .acc__chev { transform: rotate(-135deg); margin-top: 6px; }
.acc__body {
  padding: 4px 24px 22px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
}
.acc__body p { margin: 0 0 12px; }
.acc__body p:last-child { margin-bottom: 0; }
.acc__body .bulletlist li { font-size: 15.5px; }
.resource-link {
  color: #1a5fa0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.resource-link:hover { color: var(--navy-800); }

/* Resource directory cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.resource-grid--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resource-card {
  position: relative;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.section--alt .resource-card {
  background: var(--cream);
}
.resource-card--link {
  color: var(--ink-900);
  border-color: rgba(26,95,160,.22);
  background:
    linear-gradient(180deg, rgba(236,246,248,.95), rgba(255,255,255,.96));
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.resource-card--link:hover {
  color: var(--ink-900);
  border-color: rgba(26,95,160,.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.resource-card--inactive {
  cursor: default;
}
.resource-card--inactive:hover {
  border-color: rgba(26,95,160,.22);
  box-shadow: var(--shadow-sm);
  transform: none;
}
.resource-card--pending {
  border-style: dashed;
}
.resource-card__icon {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #1a5fa0;
  opacity: .88;
}
.resource-card__icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 8px;
  background: rgba(26,95,160,.08);
  transform: rotate(-5deg);
}
.resource-card__icon svg {
  position: relative;
  width: 42px;
  height: 42px;
}
.resource-card__icon img {
  position: relative;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.resource-card--cde .resource-card__icon {
  color: #1a5fa0;
}
.resource-card--cde .resource-card__icon::before {
  background: rgba(231,111,81,.1);
}
.resource-card--ai-guide .resource-card__icon::before {
  background: rgba(58,138,158,.1);
}
.resource-card--review .resource-card__icon::before {
  background: rgba(242,179,64,.12);
}
.resource-card__title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px;
}
.resource-card__title-row .resource-card__title {
  margin: 0;
}
.resource-card__eyebrow {
  margin: 0 0 12px;
  color: #1a5fa0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.resource-card--pending .resource-card__eyebrow {
  color: var(--ink-500);
}
.resource-card__title {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}
.resource-card__text {
  margin: 0;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.6;
}
.resource-card__action {
  margin-top: auto;
  padding-top: 18px;
  color: #1a5fa0;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.resource-note {
  max-width: 920px;
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 3px solid rgba(231,111,81,.5);
  color: var(--ink-700);
  font-size: 14.5px;
  line-height: 1.6;
}
.resource-note strong {
  color: var(--navy-800);
  font-weight: 800;
}

/* ----- Rubric ----- */
.section--rubric {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.section--rubric::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(58,138,158,.15), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(231,111,81,.12), transparent 50%);
  pointer-events: none;
}
.rubric__header { text-align: center; max-width: 720px; margin: 0 auto 56px; position: relative; }
.section--rubric .section__kicker { color: var(--teal-200); }
.section--rubric .section__title { color: #fff; }
.rubric__lede { color: rgba(255,255,255,.78); font-size: 18px; margin: 16px 0 0; }

.rubric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.rubric-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative; overflow: hidden;
}
.rubric-card:hover { transform: translateY(-4px); }
.rubric-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--rubric-color);
}
/* SC 1.4.3 — #ef4444 label on dark navy = 3.68:1 fail; #f87171 = 5.0:1 pass */
.rubric-card--red    { --rubric-color: #f87171; --rubric-bg: rgba(248,113,113,.10); --rubric-soft: rgba(248,113,113,.18); }
.rubric-card--yellow { --rubric-color: #fbbf24; --rubric-bg: rgba(251,191,36,.10); --rubric-soft: rgba(251,191,36,.18); }
.rubric-card--green  { --rubric-color: #34d399; --rubric-bg: rgba(52,211,153,.10); --rubric-soft: rgba(52,211,153,.18); }
.rubric-card:hover { border-color: var(--rubric-soft); background: var(--rubric-bg); }

.rubric-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.rubric-card__dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--rubric-color);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--rubric-color) 22%, transparent),
    0 0 24px color-mix(in srgb, var(--rubric-color) 60%, transparent);
}
.rubric-card__label {
  font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rubric-color);
  margin: 0;
}
.rubric-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 18px;
  min-height: 60px;
}
.rubric-card__list {
  list-style: none; padding: 0; margin: 0;
}
.rubric-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.rubric-card__list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--rubric-color);
  opacity: .8;
}

/* ----- Review ----- */
.section--review {
  background: var(--paper);
  padding: 72px 0;
  border-top: 1px solid var(--line-2);
}
.review {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.review__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  border: 1px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
}
.review__icon svg { width: 36px; height: 36px; }
.review__text {
  font-size: 17px;
  color: var(--ink-700);
  margin: 8px 0 0;
}

/* ----- Footer ----- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.72);
  padding: 56px 0 40px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; color: var(--teal-200); }
.footer__district { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 17px; margin: 0; }
.footer__sub { font-size: 13px; color: rgba(255,255,255,.55); margin: 2px 0 0; }
.footer__credit {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  line-height: 1.4;
}
.footer__credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__nav a {
  font-size: 14px; color: rgba(255,255,255,.7);
  transition: color .2s var(--ease);
}
.footer__nav a:hover { color: #fff; }
.footer__meta .btn--ghost {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.18);
  background: transparent;
}
.footer__meta .btn--ghost:hover { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.32); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800); color: #fff;
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
  z-index: 60;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-900); }
.back-to-top svg { width: 20px; height: 20px; }

/* ----- Responsive ----- */
@media (max-width: 960px) {
  html { scroll-padding-top: 140px; }
  .sitenav { display: none; }
  .mobile-nav-toggle { display: flex; }
  .district-bar__inner { height: 80px; }
  .district-brand__logo { width: 52px; height: 52px; }
  .district-brand__name { font-size: 28px; }
  .district-brand__hub {
    font-size: 11px;
    padding: 3px 10px;
  }
  .pagebar { top: 80px; }
  .pagebar__inner { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pagebar__inner::-webkit-scrollbar { display: none; }
  .pagebar .topnav { flex-shrink: 0; padding: 0 4px; }
  .pagebar .topnav a { white-space: nowrap; }
  .section__grid { grid-template-columns: 1fr; gap: 24px; }
  .section__aside { position: static; }
  .resource-grid,
  .resource-grid--featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__download { position: static; margin-top: 28px; }
  .hero__vision { grid-template-columns: 1fr; gap: 28px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .rubric-grid { grid-template-columns: 1fr; }
  .footer__brand { justify-content: flex-start; }
  .review { grid-template-columns: 1fr; text-align: center; }
  .review__icon { margin: 0 auto; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .topbar__inner { height: 56px; }
  .district-brand__name { font-size: 20px; }
  .district-brand__sub { margin-top: 3px; }
  .district-brand__logo { width: 44px; height: 44px; }
  .district-brand__topline { gap: 8px; }
  .district-brand__hub {
    font-size: 10px;
    padding: 3px 8px;
  }
  .btn--print span { display: none; }
  .hero { padding: 56px 0 64px; }
  .section { padding: 64px 0; }
  .section--audience { padding: 56px 0 72px; }
  .resource-grid,
  .resource-grid--featured { grid-template-columns: 1fr; }
  .resource-card { min-height: 0; padding: 22px; }
  .principle { padding: 24px 22px; }
  .principle__head { gap: 14px; }
  .callout { flex-direction: column; padding: 22px; }
  .audience-bar__label { display: none; }
  .page-hero { padding: 40px 0 36px; }
}

/* ----- Print ----- */
@media print {
  :root { --cream: #fff; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .topbar, .audience-bar, .footer, .back-to-top, .hero__bg, .hero__cta, .hero__download, .btn--print { display: none !important; }
  .hero { padding: 24px 0 16px; }
  .hero__title { font-size: 36pt; color: #000; }
  .hero__title-line:last-child { color: #000; -webkit-text-fill-color: #000; background: none; }
  .hero__lede { font-size: 12pt; color: #333; }
  .section { padding: 24px 0; break-inside: avoid; }
  .section--rubric { background: #fff; color: #000; padding: 24px 0; }
  .section--rubric .section__title,
  .section--rubric .rubric__lede,
  .rubric-card__title { color: #000 !important; }
  .rubric-card { background: #fff; border: 1px solid #000; color: #000; }
  .rubric-card__list li { color: #333; }
  .principle { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  .principle:hover { transform: none; }
  .acc[open] .acc__body, .acc:not([open]) .acc__body { display: block !important; }
  .acc__chev { display: none; }
  .section--audience.is-hidden { display: block !important; }
  .pullquote { border-left-color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================
   AI Committee Page
   ========================================================== */

/* ----- Kicker pill (inline icon + label) ----- */
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-700); /* #2c5078 — 6.9:1 on #e8f2fb ✓ SC 1.4.3 */
  background: #e8f2fb;
  border: 1px solid rgba(26,120,194,.22);
  padding: 7px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.kicker-pill svg { width: 14px; height: 14px; }

.kicker-pill--dark {
  color: #93c5fd;
  background: rgba(26,120,194,.18);
  border-color: rgba(147,197,253,.28);
}

/* ----- Italic accent on section titles ----- */
.section__title em,
.page-hero__title em {
  font-style: italic;
  color: #1a78c2;
  font-weight: inherit;
}
.section--dark .section__title em { color: #60a5fa; }

/* ----- Small accent rule under titles ----- */
.title-rule {
  width: 60px;
  height: 3px;
  background: #1a78c2;
  border-radius: 2px;
  margin: 4px 0 26px;
}
.section--dark .title-rule { background: #60a5fa; }

/* ----- Roadmap two-column layout ----- */
.committee-roadmap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.committee-roadmap__left {
  position: sticky;
  top: 200px;
}

.committee-roadmap__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--navy-800);
  line-height: 1.65;
  margin: 0 0 20px;
}

.committee-roadmap__sub {
  font-size: 15px;
  color: var(--ink-700); /* #3e4b5e — 8.7:1 on white ✓ SC 1.4.3 */
  line-height: 1.7;
  margin: 0;
}

/* ----- Timeline ----- */
.timeline {
  position: relative;
  padding-left: 56px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #1a78c2, #cbd5e1);
}

.timeline__entry {
  position: relative;
  padding-bottom: 36px;
}
.timeline__entry:last-child { padding-bottom: 0; }

.timeline__icon {
  position: absolute;
  left: -56px;
  top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid #cbd5e1;
  display: flex; align-items: center; justify-content: center;
  color: #1a78c2;
  z-index: 1;
}
.section--alt .timeline__icon { background: var(--cream); }
.timeline__icon svg { width: 16px; height: 16px; }

.timeline__date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #1a5fa0; /* SC 1.4.3 — 5.7:1 on #fdf8f3 for 11px bold timeline dates */
  margin: 0 0 4px;
}

.timeline__summary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 10px 0 0;
  color: #1a5fa0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.timeline__summary-link:hover {
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.timeline__summary-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.timeline__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 6px;
  font-family: var(--font-serif);
}

.timeline__desc {
  font-size: 14.5px;
  color: var(--ink-700); /* SC 1.4.3 — improves timeline body copy contrast on light section background */
  line-height: 1.6;
  margin: 0;
}

/* ----- Milestone entry (inline highlighted card) ----- */
.timeline__entry--milestone .timeline__icon {
  background: #1a78c2;
  border-color: #1a78c2;
  color: #fff;
  width: 44px; height: 44px;
  left: -58px;
  top: -2px;
  box-shadow: 0 4px 14px -4px rgba(26,120,194,.55);
}
.timeline__entry--milestone .timeline__content {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #1a78c2;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 4px 16px -8px rgba(26,120,194,.18);
}

.timeline__milestone-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy-800); /* #1e3a5f — 6.5:1 on #dbeafe ✓ SC 1.4.3 */
  background: #dbeafe;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}

/* ----- Adaptive Governance two-column ----- */
.committee-governance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.committee-governance__left p {
  color: var(--ink-700);
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
}
.committee-governance__left strong {
  color: var(--ink-900);
  font-weight: 700;
}

.committee-governance__right {
  display: grid;
  gap: 18px;
}

/* ----- Committee quote (italic blue box) ----- */
.committee-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 3px solid #1a78c2;
  background: #f0f7ff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17.5px;
  color: #1a5fa0;
  line-height: 1.65;
}

/* ----- Phase cards (used inside Governance section) ----- */
.phase-card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-left: 4px solid #1a78c2;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.phase-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.phase-card--complete { border-left-color: var(--green-500); }
.phase-card--active   { border-left-color: #1a78c2; }

.phase-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.phase-card__header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0;
  line-height: 1.3;
}

.phase-card__icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: #e8f2fb;
  display: flex; align-items: center; justify-content: center;
  color: #1a78c2;
  flex-shrink: 0;
}
.phase-card--complete .phase-card__icon {
  background: var(--green-100);
  color: var(--green-600);
}
.phase-card__icon svg { width: 20px; height: 20px; }

.phase-card__sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-700); /* #3e4b5e — 8.7:1 on white ✓ SC 1.4.3 */
  margin: 0 0 18px;
}

.phase-card__list {
  list-style: none;
  padding: 0; margin: 0;
}

.phase-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
}

.phase-card__list li::before {
  content: '›';
  position: absolute;
  left: 4px; top: -2px;
  font-size: 20px;
  font-weight: 700;
  color: #1a78c2;
  line-height: 1.4;
}
.phase-card--complete .phase-card__list li::before { color: var(--green-600); }

/* ----- Dark section (Stakeholders) ----- */
.section--dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 25%, rgba(26,120,194,.20), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(58,138,158,.15), transparent 55%);
  pointer-events: none;
}
.section--dark .container { position: relative; }
.section--dark .section__title { color: #fff; }

.stakeholders-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.stakeholders-header .kicker-pill { margin-bottom: 22px; }
.stakeholders-header .section__title { margin-bottom: 18px; }

.stakeholders-header__lede {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  margin: 0;
  line-height: 1.65;
}

.stakeholders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stakeholder-tile {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.stakeholder-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,.35);
  background: rgba(255,255,255,.06);
}

.stakeholder-tile__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(26,120,194,.22);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  margin-bottom: 20px;
}
.stakeholder-tile__icon svg { width: 22px; height: 22px; }

.stakeholder-tile h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.stakeholder-tile p {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  margin: 0;
  line-height: 1.55;
}

/* ----- Footnote ----- */
.committee-footnote {
  font-size: 13px;
  color: var(--ink-700); /* #3e4b5e — 8.7:1 on white ✓ SC 1.4.3 */
  margin-top: 28px;
  font-style: italic;
}

/* ----- Committee responsive ----- */
@media (max-width: 1100px) {
  .stakeholders-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .committee-roadmap        { grid-template-columns: 1fr; gap: 40px; }
  .committee-roadmap__left  { position: static; }
  .committee-governance     { grid-template-columns: 1fr; gap: 40px; }
  .stakeholders-grid        { grid-template-columns: repeat(2, 1fr); }
  .section--dark            { padding: 80px 0; }
  .phase-cards              { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stakeholders-grid        { grid-template-columns: 1fr; }
  .timeline                 { padding-left: 44px; }
  .timeline__icon           { left: -44px; width: 34px; height: 34px; }
  .timeline__entry--milestone .timeline__icon { left: -46px; width: 38px; height: 38px; }
  .timeline::before         { left: 16px; }
  .committee-quote          { font-size: 15px; }
  .stakeholder-tile         { padding: 20px 18px; }
}
