:root {
  --ink: #142133;
  --muted: #546579;
  --paper: #f4f8fa;
  --surface: #ffffff;
  --line: #d8e3e8;
  --blue: #5a9fbd;
  --blue-dark: #314158;
  --mint: #c9d8bf;
  --mint-soft: #e9f0e4;
  --deep: #030609;
  --shadow: 0 18px 50px rgba(15, 32, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: #ffffff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(244, 248, 250, 0.92);
  box-shadow: 0 1px 0 rgba(20, 33, 51, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 800;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--deep);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.94) 0%, rgba(19, 31, 48, 0.76) 44%, rgba(49, 65, 88, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 6, 9, 0.5), rgba(90, 159, 189, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 128px clamp(20px, 7vw, 96px) 96px;
}

.hero-ncus {
  background:
    radial-gradient(circle at 76% 20%, rgba(90, 159, 189, 0.24), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(201, 216, 191, 0.16), transparent 34%),
    linear-gradient(135deg, #030609 0%, #142133 54%, #314158 100%);
}

.hero-ncus .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.84) 0%, rgba(20, 33, 51, 0.68) 52%, rgba(49, 65, 88, 0.36) 100%),
    linear-gradient(0deg, rgba(3, 6, 9, 0.28), rgba(90, 159, 189, 0.08));
}

.hero-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
  width: 100%;
  max-width: 1240px;
}

.hero-system-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.hero-system-panel div:not(.logo-wrap) {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-system-panel span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-system-panel strong {
  display: block;
  line-height: 1.2;
}

.hero-system-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-logo-wrap {
  height: 126px;
  background: rgba(255, 255, 255, 0.92);
}

.eyebrow,
.section-label,
.card-kicker,
.pathway-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.18rem, 2.35vw, 1.72rem);
  line-height: 1.28;
  font-weight: 750;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero-actions,
.section-cta,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--blue-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button-tertiary {
  color: var(--blue-dark);
  border-color: var(--line);
  background: var(--surface);
}

.button-tertiary:hover,
.button-tertiary:focus-visible {
  border-color: rgba(90, 159, 189, 0.7);
  background: var(--paper);
}

.button-disabled {
  color: var(--slate);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  cursor: not-allowed;
}

.button-disabled:hover,
.button-disabled:focus-visible {
  transform: none;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.pathway {
  min-height: 176px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
}

.pathway strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.pathway p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.pathway:hover,
.pathway:focus-visible {
  color: #ffffff;
  background: var(--blue-dark);
}

.pathway:hover p,
.pathway:focus-visible p {
  color: rgba(255, 255, 255, 0.74);
}

.section {
  scroll-margin-top: 88px;
  padding: clamp(72px, 11vw, 128px) clamp(20px, 6vw, 80px);
}

.section-light {
  background: var(--surface);
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(90, 159, 189, 0.18), rgba(201, 216, 191, 0.09)),
    var(--deep);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(38px, 7vw, 72px);
  text-align: center;
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.momentum p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p,
.section-dark .topic-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quick-facts div {
  padding: 20px;
  background: var(--paper);
}

.quick-facts dt {
  font-weight: 850;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.work-list {
  display: grid;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.work-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(90, 159, 189, 0.62);
  box-shadow: 0 22px 60px rgba(15, 32, 48, 0.16);
  transform: translateY(-2px);
}

.work-card-primary {
  grid-template-columns: 220px 1fr;
  border-color: rgba(90, 159, 189, 0.52);
  background:
    linear-gradient(135deg, rgba(90, 159, 189, 0.08), rgba(201, 216, 191, 0.16)),
    var(--surface);
}

.program-list .work-card:not(.work-card-primary) {
  align-items: stretch;
}

.logo-wrap {
  display: grid;
  place-items: center;
  height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 250, 0.96)),
    var(--surface);
}

.logo-wrap img {
  width: 168px;
  height: 96px;
  object-fit: contain;
  object-position: center;
}

.program-icon {
  display: grid;
  place-items: center;
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(90, 159, 189, 0.74), rgba(49, 65, 88, 0.96)),
    var(--blue-dark);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
}

.work-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.work-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-card li {
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--mint-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.card-link-hint {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 850;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.card-actions .text-link {
  margin-top: 0;
}

.process-steps,
.priority-grid,
.partner-grid,
.tracking-grid {
  display: grid;
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.process-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process-steps div,
.priority-grid article {
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
}

.process-steps span,
.priority-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-steps p,
.priority-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.priority-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
}

.partner-feature {
  background:
    radial-gradient(circle at 82% 18%, rgba(90, 159, 189, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(90, 159, 189, 0.18), rgba(201, 216, 191, 0.08)),
    var(--deep);
}

.partner-feature-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto clamp(38px, 6vw, 64px);
}

.partner-feature-header h2 {
  color: #ffffff;
}

.partner-feature .section-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.partner-feature .section-copy p + p {
  margin-top: 18px;
}

.partner-cta {
  justify-content: flex-start;
}

.partner-grid,
.tracking-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-grid article,
.tracking-grid span {
  display: grid;
  min-height: 88px;
  padding: 18px;
  font-weight: 850;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.08);
}

.partner-grid article {
  gap: 10px;
  align-content: start;
  min-height: 150px;
  padding: clamp(18px, 3vw, 24px);
}

.partner-grid article span {
  color: var(--mint);
  font-size: 1rem;
  font-weight: 900;
}

.partner-grid article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.45;
}

.tracking-grid span {
  place-items: center;
  text-align: center;
}

.partner-grid {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.tracking-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tracking-grid span {
  color: var(--blue-dark);
  background: var(--surface);
}

.subpage-main {
  background: var(--paper);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.5fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  min-height: 78svh;
  padding: 128px clamp(20px, 6vw, 80px) 72px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(90, 159, 189, 0.18), rgba(201, 216, 191, 0.08)),
    var(--deep);
}

.subpage-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.96;
}

.subpage-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.subpage-logo-panel {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.subpage-logo-panel img {
  width: min(100%, 360px);
  max-height: 180px;
  object-fit: contain;
}

.page-nav {
  position: sticky;
  top: 72px;
  z-index: 10;
  display: flex;
  gap: 1px;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.page-nav a {
  flex: 1 0 auto;
  padding: 14px 18px;
  text-align: center;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  color: #ffffff;
  background: var(--blue-dark);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.metric-strip div {
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
}

.metric-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.info-grid,
.people-grid,
.portal-grid,
.simple-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.info-card,
.person-card,
.portal-card,
.simple-card {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card p,
.person-card p,
.portal-card p,
.simple-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-dark);
}

.info-card h3,
.person-card h3,
.portal-card h3,
.simple-card h3 {
  margin-top: 8px;
}

.person-card span,
.portal-card span,
.simple-card span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-profile-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  text-align: center;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.team-profile-card:hover,
.team-profile-card:focus-visible {
  border-color: rgba(90, 159, 189, 0.7);
  box-shadow: 0 22px 60px rgba(15, 32, 48, 0.16);
  transform: translateY(-2px);
}

.profile-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(90, 159, 189, 0.62), rgba(49, 65, 88, 0.94)),
    var(--blue-dark);
}

.profile-photo::after {
  content: attr(data-fallback-initials);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.profile-photo.has-image::after {
  content: "";
}

.profile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-link-hint {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-size: 0.92rem;
}

.team-section .section-heading {
  max-width: 760px;
}

.team-section .team-profile-card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.team-section .team-profile-card:hover,
.team-section .team-profile-card:focus-visible {
  border-color: rgba(90, 159, 189, 0.7);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.team-section .team-profile-card .profile-photo {
  width: min(100%, 260px);
  margin: 0 auto 26px;
  aspect-ratio: 4 / 5;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.team-section .team-profile-card .profile-photo img {
  object-fit: cover;
  object-position: center 18%;
}

.team-section .team-profile-card[href="./damien-colbert.html"] .profile-photo img {
  object-position: center 24%;
}

.team-section .team-profile-card[href="./isaac-darko-jr.html"] .profile-photo img {
  object-position: center 18%;
}

.team-section .team-profile-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  line-height: 1.58;
}

.team-section .team-profile-card h3 {
  margin-bottom: 2px;
}

.team-section .team-profile-card span,
.team-section .profile-link-hint {
  color: #36cce2;
}

.leadership-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.leadership-grid .team-profile-card {
  text-align: left;
}

.leadership-grid .profile-photo {
  aspect-ratio: 4 / 3;
}

.leadership-grid .profile-link-hint {
  font-weight: 850;
}

.profile-main {
  background: var(--paper);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.45fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  min-height: 78svh;
  padding: 128px clamp(20px, 6vw, 80px) 72px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(90, 159, 189, 0.18), rgba(201, 216, 191, 0.08)),
    var(--deep);
}

.profile-hero h1 {
  margin: 14px 0 8px;
  font-size: clamp(3.1rem, 8vw, 6rem);
  line-height: 0.96;
}

.profile-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.profile-role {
  margin: 0 0 22px;
  color: var(--mint);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 850;
}

.profile-hero-card {
  min-height: 420px;
  margin: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.profile-hero-card img {
  object-position: center top;
}

.portal-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.portal-card:hover,
.portal-card:focus-visible {
  border-color: rgba(90, 159, 189, 0.7);
  transform: translateY(-2px);
}

.portal-card-disabled {
  box-shadow: none;
  cursor: default;
}

.portal-card-disabled:hover,
.portal-card-disabled:focus-visible {
  border-color: var(--line);
  transform: none;
}

.schedule-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.schedule-table th {
  color: var(--blue-dark);
  background: var(--paper);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.schedule-table tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--mint-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.page-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-card p {
  color: var(--muted);
}

.page-notice {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 18px clamp(18px, 3vw, 24px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 32, 48, 0.08);
}

.dashboard-main > .page-notice {
  max-width: 1480px;
  margin-top: 20px;
}

.page-notice strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
}

.page-notice p {
  max-width: 900px;
  margin: 6px 0 0;
  color: var(--muted);
}

.notice-internal {
  border-left-color: #b55a3c;
}

.notice-restricted {
  border-left-color: var(--blue-dark);
}

.notice-public {
  border-left-color: var(--mint);
}

.dashboard-body {
  background: #edf3f6;
}

.dashboard-site-header {
  color: var(--ink);
  background: rgba(244, 248, 250, 0.94);
  box-shadow: 0 1px 0 rgba(20, 33, 51, 0.1);
  backdrop-filter: blur(14px);
}

.dashboard-main {
  padding: 96px clamp(16px, 3vw, 38px) 56px;
}

.dashboard-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto 20px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(90, 159, 189, 0.14), rgba(201, 216, 191, 0.16)),
    var(--surface);
  box-shadow: var(--shadow);
}

.dashboard-command h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.dashboard-command p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.record-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  min-width: min(100%, 440px);
}

.record-controls label,
.readiness-field {
  display: grid;
  gap: 8px;
}

.record-controls span,
.readiness-field > span,
.readiness-checklist legend {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.record-controls select,
.readiness-field select,
.readiness-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.record-controls select,
.readiness-field select {
  min-height: 44px;
  padding: 0 12px;
}

.readiness-field textarea {
  resize: vertical;
  min-height: 136px;
  padding: 12px;
}

.record-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1480px;
  margin: 0 auto 20px;
}

.record-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1480px;
  margin: 0 auto 20px;
}

.dashboard-metrics article,
.dashboard-panel,
.pipeline-lane,
.coverage-grid article,
.access-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 32, 48, 0.08);
}

.dashboard-metrics article {
  min-height: 132px;
  padding: 18px;
}

.dashboard-metrics span,
.dashboard-context,
.task-priority,
.coverage-grid span,
.access-grid span,
.impact-list span,
.pipeline-item span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.dashboard-metrics p,
.pipeline-item p,
.event-list p,
.impact-list p,
.coverage-grid p,
.access-denied p {
  margin: 8px 0 0;
  color: var(--muted);
}

.dashboard-section,
.dashboard-grid {
  max-width: 1480px;
  margin: 20px auto 0;
}

.dashboard-section {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.dashboard-section-heading,
.panel-heading {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-section-heading h2,
.panel-heading h2 {
  margin-top: 6px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.dashboard-context {
  padding: 8px 10px;
  border: 1px solid rgba(90, 159, 189, 0.28);
  border-radius: 8px;
  background: rgba(90, 159, 189, 0.08);
  white-space: nowrap;
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pipeline-lane {
  min-height: 300px;
  padding: 14px;
}

.pipeline-lane h3 {
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.pipeline-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--paper);
}

.pipeline-item + .pipeline-item {
  margin-top: 10px;
}

.pipeline-item strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.priority-high {
  border-left-color: #c94f4f;
}

.priority-medium {
  border-left-color: #c58b2c;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 20px;
}

.readiness-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-panel {
  padding: clamp(20px, 3vw, 30px);
}

.dashboard-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--surface);
}

.dashboard-table th,
.dashboard-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.dashboard-table th {
  color: var(--blue-dark);
  background: var(--paper);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.dashboard-table tr:last-child td {
  border-bottom: 0;
}

.task-priority {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--mint-soft);
}

.task-priority.high {
  color: #782d2d;
  background: #f8dddd;
}

.task-priority.medium {
  color: #6d4c15;
  background: #f7ead0;
}

.event-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.event-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.event-list time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.event-list strong {
  display: block;
  color: var(--ink);
}

.status-pending {
  color: #6d4c15;
  background: #f7ead0;
}

.status-alert {
  color: #782d2d;
  background: #f8dddd;
}

.impact-list {
  display: grid;
  gap: 14px;
}

.compact-impact-list {
  gap: 10px;
}

.impact-list article {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.impact-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.impact-list strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.08rem;
}

.record-summary {
  display: grid;
  gap: 14px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.access-grid article {
  padding: 16px;
  box-shadow: none;
}

.access-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.readiness-form {
  margin-top: 6px;
}

.readiness-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.readiness-field select:disabled,
.readiness-field textarea[readonly],
.readiness-checklist input:disabled + span {
  color: var(--muted);
}

.readiness-notes,
.readiness-checklist {
  grid-column: 1 / -1;
}

.readiness-checklist {
  margin: 0;
  padding: 0;
  border: 0;
}

.readiness-checklist div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.readiness-checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
}

.readiness-audit {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.access-denied {
  padding: 18px;
  border: 1px solid rgba(120, 45, 45, 0.18);
  border-radius: 8px;
  background: #fff6f6;
}

.access-denied span {
  color: #782d2d;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.access-denied strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
}

.readiness-barrier-table {
  margin-top: 18px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.coverage-grid article {
  padding: 20px;
}

.coverage-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue-dark);
}

.coverage-grid strong {
  display: block;
  color: var(--ink);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.topic-grid article,
.framework-steps div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.topic-grid span,
.framework-steps span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--mint);
  font-weight: 900;
}

.section-cta {
  justify-content: center;
}

.framework-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 54px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.framework-steps div {
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

.framework-steps p {
  margin: 0;
  color: var(--muted);
}

.momentum {
  scroll-margin-top: 88px;
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(52px, 8vw, 88px) clamp(20px, 6vw, 80px);
  color: #ffffff;
  background: var(--blue-dark);
}

.momentum h2 {
  color: #ffffff;
}

.momentum p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  position: relative;
  background: var(--paper);
}

.anchor-target {
  position: absolute;
  top: -88px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-actions p {
  width: 100%;
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p {
  margin: 0;
}

.ncus-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, auto) auto;
  align-items: start;
  gap: clamp(24px, 5vw, 60px);
}

.ncus-footer h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.ncus-footer p {
  max-width: 560px;
}

.ncus-footer .national-reference {
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 800;
}

.ncus-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 8px 18px;
  font-weight: 800;
}

.ncus-footer nav a:hover,
.ncus-footer nav a:focus-visible {
  color: var(--blue-dark);
}

.back-to-top {
  min-height: 44px;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .menu-button {
    display: block;
  }

  .intro-band,
  .hero-content-grid,
  .section-grid,
  .topic-grid,
  .framework-steps,
  .process-steps,
  .priority-grid,
  .partner-feature-header,
  .momentum,
  .contact-panel,
  .dashboard-command,
  .dashboard-grid,
  .readiness-summary-grid,
  .readiness-form-grid,
  .readiness-checklist div,
  .record-controls,
  .access-grid,
  .coverage-grid,
  .subpage-hero,
  .profile-hero,
  .metric-strip,
  .info-grid,
  .people-grid,
  .leadership-grid,
  .portal-grid,
  .simple-card-grid,
  .ncus-footer {
    grid-template-columns: 1fr;
  }

  .partner-grid,
  .tracking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-section-heading,
  .panel-heading,
  .dashboard-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .pipeline-board {
    grid-template-columns: repeat(6, minmax(240px, 82vw));
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .hero-system-panel {
    max-width: 560px;
  }

  .contact-actions,
  .contact-actions p {
    justify-content: flex-start;
    text-align: left;
  }

  .partner-cta {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 86svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(3, 6, 9, 0.94) 0%, rgba(19, 31, 48, 0.76) 62%, rgba(49, 65, 88, 0.28) 100%),
      linear-gradient(90deg, rgba(3, 6, 9, 0.5), rgba(90, 159, 189, 0.08));
  }

  .hero-content {
    align-self: end;
    padding: 112px 20px 52px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

  .hero-ncus h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 11vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-ncus .eyebrow,
  .hero-ncus .hero-lede,
  .hero-ncus .hero-copy {
    max-width: 100%;
  }

  .hero-ncus .eyebrow {
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .hero-system-panel {
    display: none;
  }

  .partner-grid,
  .tracking-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-cta,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .dashboard-main {
    padding-inline: 12px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .record-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .record-tabs a {
    white-space: nowrap;
  }

  .event-list li {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .logo-wrap {
    height: 132px;
  }

  .profile-photo {
    aspect-ratio: 1 / 1;
  }

  .profile-hero-card {
    min-height: 320px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
