:root {
  --navy: #0b1828;
  --navy-2: #10243a;
  --blue: #135fc7;
  --blue-2: #0d4fa8;
  --sky: #e9f5fb;
  --cyan: #2aa6bb;
  --pearl: #f7fafc;
  --white: #fff;
  --ink: #152235;
  --muted: #5a6d83;
  --line: #d7e2ed;
  --line-dark: rgba(255,255,255,.18);
  --shadow: 0 24px 60px rgba(14, 35, 58, .14);
  --shadow-soft: 0 14px 38px rgba(14, 35, 58, .08);
  --ease: cubic-bezier(.2,.8,.2,1);
  --container: 1240px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; min-width: 0; }
address { font-style: normal; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 20; background: var(--navy); color: #fff; padding: 10px 14px; }
.skip-link:focus { top: 16px; }

h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(3.05rem, 5.7vw, 5.95rem);
  line-height: .98;
  font-weight: 650;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}
h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.06;
  font-weight: 620;
  letter-spacing: 0;
}
h3 { color: var(--navy); font-size: clamp(1.25rem, 1.6vw, 1.65rem); line-height: 1.18; font-weight: 680; }
p { color: var(--muted); }
p { overflow-wrap: break-word; word-break: normal; }
h1, h2, h3, strong, span { overflow-wrap: normal; word-break: normal; }
a { overflow-wrap: break-word; }
.eyebrow {
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section { padding: clamp(62px, 7vw, 96px) 0; }
.section-heading { max-width: 760px; display: grid; gap: 16px; margin-bottom: 34px; }
.section-heading.compact { max-width: 880px; }
.section-heading p:not(.eyebrow) { max-width: 720px; font-size: 1.08rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 760;
  line-height: 1.1;
  white-space: normal;
  text-align: center;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.button:focus-visible, .site-nav a:focus-visible, .nav-drop-toggle:focus-visible, .menu-toggle:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(19,95,199,.28);
  outline-offset: 3px;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.button.primary:hover { background: var(--blue-2); border-color: var(--blue-2); }
.button.secondary { color: var(--blue-2); background: #fff; border-color: #b8cce2; }
.button.secondary:hover { border-color: var(--blue); color: var(--navy); }
.button.light { color: #fff; background: transparent; border-color: rgba(255,255,255,.42); }
.button.light:hover { background: rgba(255,255,255,.1); color: #fff; }
.button.with-icon span, .text-link::after { content: ""; width: 16px; height: 12px; background: currentColor; clip-path: polygon(0 45%,70% 45%,48% 18%,58% 10%,100% 50%,58% 90%,48% 82%,70% 55%,0 55%); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-2); font-weight: 760; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(187,204,220,.72);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: clamp(245px, 18vw, 318px); height: auto; }
.site-nav { display: flex; align-items: center; gap: 0; font-size: .9rem; font-weight: 740; color: #26364a; }
.site-nav > a, .nav-drop-toggle { min-height: 44px; display: inline-flex; align-items: center; color: #26364a; border: 0; background: transparent; padding: 0; cursor: pointer; }
.site-nav a[aria-current="page"], .nav-drop-toggle[aria-current="page"] { color: var(--blue-2); }
.site-nav > .nav-cta {
  min-height: 46px;
  padding: 0 20px !important;
  color: #fff !important;
  background: var(--blue) !important;
  border: 1px solid var(--blue);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(19,95,199,.18);
}
.site-nav > .nav-cta:hover, .site-nav > .nav-cta[aria-current="page"] { background: var(--blue-2) !important; border-color: var(--blue-2); color: #fff !important; }
.nav-dropdown { position: relative; }
.nav-drop-toggle { gap: 8px; }
.nav-drop-toggle span { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.nav-drop-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 275px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.nav-dropdown:hover .nav-drop-menu, .nav-dropdown.is-open .nav-drop-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-drop-menu a { display: block; padding: 11px 12px; color: #2d4056; border-radius: 4px; }
.nav-drop-menu a:hover { background: var(--pearl); color: var(--blue-2); }
.menu-toggle {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #c8d8e8;
  background: #fff;
  border-radius: 4px;
}
.menu-toggle span { width: 21px; height: 2px; background: var(--navy); }
.menu-open { overflow: hidden; }

@media (min-width: 1101px) {
  .menu-toggle { display: none; }
  .site-nav > * + * { margin-left: clamp(14px, 1.35vw, 22px); }
}

.executive-hero {
  position: relative;
  padding: clamp(58px, 7vw, 98px) 0 clamp(58px, 7vw, 96px);
  background: linear-gradient(90deg, #fff 0%, #fff 50%, var(--sky) 50%, #f3f9fc 100%);
}
.executive-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 58px;
  background: linear-gradient(176deg, transparent 49%, #fff 50%);
}
.executive-hero__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr); gap: clamp(32px, 5vw, 70px); align-items: center; }
.executive-hero__copy { display: grid; gap: 20px; padding: 24px 0; }
.hero-kicker { color: var(--blue-2); font-size: clamp(1.25rem, 2vw, 1.85rem); line-height: 1.18; font-weight: 650; }
.hero-summary { max-width: 630px; font-size: 1.12rem; }
.hero-editorial {
  position: relative;
  min-height: clamp(480px, 48vw, 680px);
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.12), transparent 32%), linear-gradient(180deg, transparent 66%, rgba(11,24,40,.58));
}
.hero-editorial img, .image-panel img, .capability-tile img, .signature-section > img, .page-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-editorial img, .image-panel img, .page-visual img {
  position: absolute;
  inset: 0;
}
.hero-editorial figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 7px;
  color: #fff;
}
.hero-editorial figcaption span { font-size: .74rem; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; color: #bfeaf3; }
.hero-editorial figcaption strong { max-width: 520px; font-size: 1.25rem; line-height: 1.2; }

.institution-band { background: var(--navy); color: #fff; }
.institution-band__inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.institution-band__inner div { padding: 28px 28px 30px; border-left: 1px solid var(--line-dark); }
.institution-band__inner div:last-child { border-right: 1px solid var(--line-dark); }
.institution-band span { display: block; margin-bottom: 6px; color: #90d5e3; font-size: .75rem; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.institution-band p { color: rgba(255,255,255,.82); font-size: .98rem; }

.editorial-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(34px, 5.8vw, 78px); align-items: center; }
.editorial-split.reverse { grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); }
.editorial-split.reverse .image-panel { order: 2; }
.image-panel { position: relative; min-height: 510px; margin: 0; overflow: hidden; box-shadow: var(--shadow-soft); }
.image-panel.tall { min-height: 650px; }
.image-panel::after, .page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(11,24,40,.16));
  pointer-events: none;
}
.editorial-copy { display: grid; gap: 18px; }
.editorial-copy p:not(.eyebrow) { max-width: 660px; }
.editorial-note {
  margin-top: 8px;
  padding-left: 22px;
  border-left: 3px solid var(--cyan);
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.45;
}

.capability-feature { background: var(--pearl); }
.capability-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 360px; gap: 18px; }
.capability-tile {
  position: relative;
  display: flex;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}
.capability-tile:first-child { grid-column: span 2; grid-row: span 2; }
.capability-tile:nth-child(4) { grid-column: span 2; }
.capability-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,24,40,.08), rgba(11,24,40,.72));
}
.capability-tile img { position: absolute; inset: 0; transition: transform .45s var(--ease); }
.capability-tile:hover img { transform: scale(1.04); }
.capability-tile > span {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  color: #9ee0eb;
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .12em;
}
.capability-tile div {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  display: grid;
  gap: 10px;
  padding: 26px;
}
.capability-tile h3 { color: #fff; font-size: clamp(1.45rem, 2vw, 2.2rem); }
.capability-tile p { color: rgba(255,255,255,.84); max-width: 520px; }
.capability-tile strong { color: #bfeaf3; font-size: .9rem; }
.section-action { margin-top: 28px; }

.signature-section {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.signature-section > img { position: absolute; inset: 0; opacity: .34; filter: saturate(.85) contrast(1.08); }
.signature-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,24,40,.94), rgba(11,24,40,.74) 52%, rgba(11,24,40,.28)); }
.signature-section__content { position: relative; z-index: 1; display: grid; gap: 22px; color: #fff; }
.signature-section h2 { display: grid; gap: 4px; color: #fff; font-size: clamp(3.2rem, 9vw, 8rem); line-height: .86; font-weight: 620; }
.signature-section p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.82); font-size: 1.14rem; }
.signature-section .eyebrow { color: #90d5e3; }

.federal-resource { background: #fff; }
.federal-resource__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: clamp(28px, 5vw, 72px); align-items: stretch; }
.federal-resource__copy { display: grid; gap: 18px; align-content: center; padding: 36px 0; }
.resource-panel {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 420px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(180deg, rgba(11,24,40,.18), rgba(11,24,40,.88)), url("../images/federal-planning.jpg") center/cover;
  box-shadow: var(--shadow-soft);
}
.resource-panel span { color: #9ee0eb; font-size: .78rem; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.resource-panel h3 { color: #fff; font-size: clamp(1.7rem, 2.5vw, 2.5rem); }
.resource-panel p { color: rgba(255,255,255,.83); }
.resource-panel .text-link { color: #fff; }

.resource-center { background: #fff; }
.resource-center__grid { display: grid; gap: 28px; }
.resource-card {
  display: grid;
  grid-template-columns: minmax(220px, .3fr) minmax(0, .7fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f8fbfd);
  box-shadow: var(--shadow-soft);
}
.resource-card__preview {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: clamp(24px, 3.4vw, 38px);
  background: linear-gradient(180deg, #f3f8fb, #eaf3f8);
  border-right: 1px solid var(--line);
}
.resource-card__preview img {
  width: min(100%, 285px);
  height: auto;
  border: 1px solid #c6d6e5;
  background: #fff;
  box-shadow: 0 18px 36px rgba(14, 35, 58, .18);
}
.resource-card__preview span {
  position: absolute;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  padding: 5px 9px;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.resource-card__content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 4.2vw, 48px);
}
.resource-card__content h2 { font-size: clamp(1.75rem, 2.6vw, 2.75rem); }
.resource-card__content p:not(.eyebrow) { max-width: 680px; }
.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.resource-meta li {
  padding: 7px 10px;
  border: 1px solid #b8cce2;
  background: #fff;
  color: var(--blue-2);
  font-size: .82rem;
  font-weight: 780;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.resource-actions { margin-top: 4px; }
.download-link { overflow-wrap: anywhere; }
.statement-cta, .statement-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.statement-cta h2, .statement-strip h2 { max-width: 760px; font-size: clamp(1.75rem, 2.7vw, 2.8rem); }
.statement-cta p:not(.eyebrow), .statement-strip p:not(.eyebrow) { max-width: 760px; margin-top: 12px; }
.federal-statement { background: linear-gradient(180deg, #fff, var(--pearl)); }
.capability-reference { padding-top: 0; background: #fff; }
.contact-resource {
  display: grid;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.contact-resource p:not(.eyebrow) { font-size: .98rem; }

.corporate-cta, .cta-section {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--navy);
  color: #fff;
}
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-wrap h2 { color: #fff; max-width: 720px; }
.cta-wrap p:not(.eyebrow) { color: rgba(255,255,255,.78); max-width: 660px; margin-top: 12px; }
.cta-wrap .eyebrow { color: #90d5e3; }

.page-hero {
  padding: clamp(48px, 6vw, 82px) 0;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, var(--sky) 50%, #f5fbfd);
}
.page-hero h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 4.25vw, 4.6rem);
  line-height: 1.02;
  font-weight: 650;
}
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr); gap: clamp(34px, 5vw, 76px); align-items: center; }
.page-hero__copy { display: grid; gap: 17px; }
.page-hero__copy p:not(.eyebrow) { max-width: 700px; font-size: 1.12rem; }
.page-visual { position: relative; min-height: 390px; overflow: hidden; box-shadow: var(--shadow-soft); }
.about-hero-final { background: linear-gradient(90deg, #fff 0%, #fff 44%, #eef8fb 44%, #eef8fb 100%); }
.about-hero-final .page-hero__grid { grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr); }
.about-hero-final .page-visual { min-height: 470px; }
.about-hero-final .page-visual img { object-position: center; }
.capabilities-hero-final { background: linear-gradient(180deg, #eef8fb 0%, #fff 86%); }
.capabilities-hero-final .page-hero__grid { grid-template-columns: 1fr; }
.capabilities-hero-final .page-visual { min-height: 440px; }
.capabilities-hero-final .page-hero__copy { max-width: 880px; }
.federal-hero-final { background: linear-gradient(90deg, #fff 0%, #fff 58%, #eef8fb 58%, #eef8fb 100%); }
.federal-hero-final .page-visual img { object-position: center 42%; }
.values-hero-final { background: linear-gradient(135deg, #fff, #f6fbfd); }
.values-hero-final .page-hero__grid { grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); }
.values-hero-final .page-visual { min-height: 460px; border-radius: 0 0 0 72px; }
.contact-hero-final { padding-bottom: 52px; background: linear-gradient(90deg, #fff 0%, #fff 62%, #eef8fb 62%, #eef8fb 100%); }
.contact-hero-final .page-visual { min-height: 330px; border-radius: 0 0 0 58px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); font-size: .9rem; }
.breadcrumb a { color: var(--blue-2); font-weight: 700; }

.content-band { background: var(--pearl); }
.service-relevance { background: #fff; }
.service-context { background: linear-gradient(180deg, #fff, var(--pearl)); }
.service-context__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.context-panel { padding: clamp(24px, 3.2vw, 38px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); }
.context-panel h2 { margin: 12px 0; font-size: clamp(1.55rem, 2.3vw, 2.45rem); }
.context-panel p:not(.eyebrow) { font-size: 1.04rem; }
.content-grid { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); gap: clamp(30px, 5vw, 72px); align-items: start; }
.content-grid.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); }
.prose { display: grid; gap: 18px; font-size: 1.04rem; }
.prose p { max-width: 760px; }
.numbered-list { display: grid; gap: 28px; border-left: 1px solid #bdd3e8; padding-left: 34px; }
.numbered-list article { position: relative; display: grid; gap: 8px; }
.numbered-list article::before { content: ""; position: absolute; left: -43px; top: 5px; width: 16px; height: 16px; background: var(--blue); border: 6px solid #e7f1fb; }
.numbered-list span { color: var(--cyan); font-size: .78rem; font-weight: 780; letter-spacing: .12em; }

.mission-vision { background: #fff; }
.mission-vision__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mv-panel {
  min-height: 440px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
  background: var(--navy);
}
.mv-panel:first-child { background: linear-gradient(180deg, rgba(11,24,40,.12), rgba(11,24,40,.88)), url("../images/systems-engineering.jpg") center/cover; }
.mv-panel:last-child { background: linear-gradient(180deg, rgba(11,24,40,.2), rgba(11,24,40,.9)), url("../images/company-culture.jpg") center/cover; }
.mv-panel h2, .mv-panel h3 { color: #fff; }
.mv-panel p { color: rgba(255,255,255,.84); font-size: 1.12rem; }
.mv-panel .eyebrow { color: #9ee0eb; }
.mission-panel { min-height: 520px; }
.vision-panel { min-height: 520px; background-position: center; }

.capability-system { background: #fff; }
.capability-system__grid { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.capability-flow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.capability-flow article { min-height: 210px; display: grid; align-content: end; gap: 9px; padding: clamp(22px, 3vw, 34px); background: linear-gradient(180deg, #fff, var(--pearl)); }
.capability-flow span { color: var(--cyan); font-size: .78rem; font-weight: 780; letter-spacing: .12em; }
.capability-flow h3 { font-size: clamp(1.22rem, 1.7vw, 1.65rem); }
.capability-flow p { font-size: .98rem; }

.service-graphic {
  min-height: 510px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, var(--navy), #10243a);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.service-graphic svg { width: min(100%, 520px); height: auto; }
.sg-bg { fill: rgba(255,255,255,.035); }
.sg-line { fill: none; stroke: #8bd7e6; stroke-width: 5; stroke-linecap: round; opacity: .95; }
.sg-line.thin { stroke: rgba(255,255,255,.24); stroke-width: 2; }
.sg-node { fill: #135fc7; stroke: #bfeaf3; stroke-width: 5; }
.sg-label { fill: #fff; font: 700 16px "Segoe UI", Arial, sans-serif; }
.service-graphic--cyber .sg-node { fill: #0d4fa8; }
.service-graphic--network .sg-node { fill: #2aa6bb; }
.service-graphic--helpdesk .sg-node { fill: #4f7fb8; }

.value-layout { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(34px, 5vw, 72px); align-items: start; }
.value-stack { display: grid; gap: 18px; }
.value-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.value-row span { color: var(--blue-2); font-size: .78rem; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }

.credential-area { display: grid; gap: 18px; padding-top: 22px; border-top: 1px solid var(--line); }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.credential-item { padding: 20px; border: 1px solid var(--line); background: #fff; }
.credential-item span { display: block; color: var(--muted); font-size: .76rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.credential-item strong { display: block; margin-top: 8px; color: var(--navy); font-size: 1.2rem; }
.capability-statement { padding: 34px; background: var(--navy); color: #fff; }
.capability-statement h3 { color: #fff; }
.capability-statement p { color: rgba(255,255,255,.8); }

.contact-page-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 70px); align-items: start; }
.contact-info-panel { display: grid; gap: 22px; }
.contact-list { display: grid; gap: 18px; padding-top: 10px; }
.contact-list p { display: grid; grid-template-columns: 28px 1fr; gap: 14px; color: var(--ink); }
.contact-list a { color: var(--blue-2); font-weight: 760; overflow-wrap: anywhere; }
.mini-icon { width: 20px; height: 20px; border: 2px solid var(--blue); border-radius: 50%; margin-top: 4px; }
.mini-icon.email { border-radius: 2px; height: 15px; }
.mini-icon.phone { border-radius: 4px 4px 9px 9px; transform: rotate(-18deg); }
.form-shell {
  padding: clamp(24px, 3.5vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full, .checkbox-field, .form-privacy-note, .form-messages, form .button { grid-column: 1 / -1; }
label { color: var(--navy); font-size: .92rem; font-weight: 760; }
.required { color: var(--muted); font-size: .75rem; }
input, textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid #bdcfdf;
  border-radius: 4px;
  padding: 12px 14px;
  background: #fdfefe;
  color: var(--ink);
}
textarea { min-height: 170px; resize: vertical; }
input:focus, textarea:focus { outline: 3px solid rgba(19,95,199,.16); border-color: var(--blue); background: #fff; }
.form-errors, .form-success { grid-column: 1 / -1; padding: 14px 16px; border-left: 4px solid; }
.form-errors { background: #fff4f4; color: #7d1f1f; border-color: #c84444; }
.form-success { background: #eefaf2; color: #245c34; border-color: #34a853; }
.form-alert { grid-column: 1 / -1; padding: 14px 16px; border-left: 4px solid; }
.form-alert.error { background: #fff4f4; color: #7d1f1f; border-color: #c84444; }
.form-alert.success { background: #eefaf2; color: #245c34; border-color: #34a853; }
.field label span { color: var(--muted); font-size: .75rem; }
.field-error { color: #a02b2b; font-size: .86rem; }
.checkbox-field { grid-template-columns: 22px 1fr; align-items: start; gap: 10px 12px; padding-top: 6px; }
.checkbox-field input { width: 18px; min-height: 18px; height: 18px; margin-top: 5px; }
.checkbox-field label { font-weight: 600; line-height: 1.48; }
.checkbox-field label a, .form-privacy-note a, .legal-content a, .cookie-links a { color: var(--blue-2); font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }
.checkbox-field .field-error { grid-column: 2; }
.form-privacy-note { font-size: .94rem; color: var(--muted); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer {
  padding: 50px 0 22px;
  background: radial-gradient(circle at 18% 0%, rgba(42,166,187,.22), transparent 28%), linear-gradient(135deg, #07111f, #10243a);
  color: #fff;
}
.footer-grid { display: grid; grid-template-columns: minmax(300px, 1.45fr) repeat(4, minmax(145px, 1fr)); gap: clamp(24px, 3vw, 38px); align-items: start; }
.footer-brand img { width: min(286px, 100%); height: auto; margin-bottom: 14px; }
.site-footer p, .site-footer address { color: rgba(255,255,255,.76); }
.site-footer h2 { margin: 0 0 12px; color: #9ee0eb; font-size: .78rem; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.footer-subhead { margin-top: 24px !important; }
.site-footer a, .footer-link-button { display: block; color: rgba(255,255,255,.88); margin: 7px 0; overflow-wrap: anywhere; }
.footer-link-button { padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.site-footer a:hover, .footer-link-button:hover { color: #fff; }
.footer-credentials {
  display: grid;
  grid-template-columns: minmax(170px, .8fr) minmax(0, 2.2fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(158,224,235,.34);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-credentials h2 {
  margin: 0;
}
.footer-credentials dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 0;
  margin: 0;
}
.footer-credentials div {
  min-width: 0;
  padding: 0 clamp(16px, 2vw, 24px);
  border-left: 1px solid rgba(42,166,187,.48);
}
.footer-credentials div:first-child {
  padding-left: 0;
  border-left: 0;
}
.footer-credentials dt {
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-credentials dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 760;
  white-space: nowrap;
}
.footer-credentials__link {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  justify-self: end;
  margin: 0 !important;
  color: #9ee0eb !important;
  font-weight: 780;
  white-space: nowrap;
}
.footer-credentials__link span {
  width: 16px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 45%,70% 45%,48% 18%,58% 10%,100% 50%,58% 90%,48% 82%,70% 55%,0 55%);
}
.footer-bottom { margin-top: 20px; padding-top: 10px; padding-right: 156px; font-size: .9rem; }

.legal-hero { background: linear-gradient(90deg, #fff 0%, #fff 58%, #eef8fb 58%, #eef8fb 100%); }
.page-hero.compact .page-hero__inner { display: grid; gap: 14px; max-width: 860px; }
.last-updated { color: var(--navy); font-weight: 760; }
.legal-section { background: #fff; }
.legal-layout { display: grid; grid-template-columns: minmax(210px, .28fr) minmax(0, .72fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.legal-toc { position: sticky; top: 122px; display: grid; gap: 6px; padding: 22px; border: 1px solid var(--line); background: var(--pearl); }
.legal-toc h2 { margin-bottom: 6px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-2); }
.legal-toc a { padding: 6px 0; color: #334962; font-size: .95rem; font-weight: 680; }
.legal-toc a:hover { color: var(--blue-2); }
.legal-content { display: grid; gap: 28px; max-width: 840px; }
.legal-content section { padding-bottom: 28px; border-bottom: 1px solid var(--line); scroll-margin-top: 126px; }
.legal-content h2 { margin-bottom: 12px; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.18; }
.legal-content p + p { margin-top: 12px; }
.legal-mobile-toc { display: none; }
.legal-content a, .contact-list a, .site-footer a[href^="mailto:"], .site-footer address { overflow-wrap: anywhere; word-break: normal; }

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(189,207,223,.9);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
}
body.footer-in-view .cookie-banner {
  top: 110px;
  bottom: auto;
}
.cookie-banner[hidden], .cookie-modal[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.08rem; margin-bottom: 4px; }
.cookie-banner p { font-size: .94rem; line-height: 1.48; }
.cookie-links { display: flex; gap: 16px; margin-top: 8px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions .button { min-height: 42px; padding: 10px 14px; font-size: .92rem; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11,24,40,.58);
}
.cookie-modal__panel {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cookie-modal__header { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.cookie-modal__header h2 { font-size: 2rem; }
.cookie-close { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 4px; cursor: pointer; }
.cookie-close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.cookie-preferences { display: grid; grid-template-columns: 1fr; gap: 14px; }
.preference-row { display: flex; justify-content: space-between; gap: 18px; padding: 18px; border: 1px solid var(--line); background: var(--pearl); }
.preference-row h3, .preference-row strong { color: var(--navy); font-size: 1.05rem; }
.preference-row p, .preference-row small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.45; }
.always-active { align-self: start; color: var(--blue-2); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.switch-row input { width: 22px; min-height: 22px; flex: 0 0 22px; accent-color: var(--blue); }
.modal-open { overflow: hidden; }

/* Support Assistant */
.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;
}
.support-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 75;
  width: min(410px, calc(100vw - 32px));
  pointer-events: none;
}
.support-assistant.is-cookie-visible:not(.is-open) { display: none; }
.support-assistant.is-open .support-launcher { display: none; }
.support-launcher {
  margin-left: auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  pointer-events: auto;
  font-weight: 780;
}
.support-launcher svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.support-launcher:focus-visible, .support-icon-button:focus-visible, .support-chip:focus-visible, .support-back:focus-visible {
  outline: 3px solid rgba(19,95,199,.32);
  outline-offset: 3px;
}
.support-panel {
  pointer-events: auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: min(640px, calc(100dvh - 112px));
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.support-panel[hidden] { display: none; }
.support-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, var(--navy), #14385d);
  color: #fff;
}
.support-panel__header h2 { color: #fff; font-size: 1.12rem; line-height: 1.2; }
.support-panel__header p { color: rgba(255,255,255,.78); font-size: .82rem; line-height: 1.35; }
.support-panel__header .eyebrow { color: #9ee0eb; font-size: .68rem; }
.support-icon-button {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.support-icon-button svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.support-panel__body {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}
.support-messages {
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 3px;
}
.support-message {
  max-width: 92%;
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.support-message.is-user {
  justify-self: end;
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.support-message__label {
  color: inherit;
  opacity: .78;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.support-message p { color: inherit; font-size: .92rem; line-height: 1.45; }
.support-message.is-assistant p { color: #2c4058; }
.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.support-links a {
  color: var(--blue-2);
  font-size: .84rem;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.support-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.support-chip {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #b8cce2;
  border-radius: 4px;
  background: #fff;
  color: var(--blue-2);
  font-size: .84rem;
  font-weight: 760;
  cursor: pointer;
}
.support-ask {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.support-ask input { min-height: 46px; }
.support-ask .button { min-height: 46px; padding: 10px 14px; }
.support-agent-form {
  min-height: 0;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  padding-right: 3px;
}
.support-agent-intro { display: grid; gap: 7px; }
.support-agent-intro h3 { font-size: 1.28rem; }
.support-agent-intro p { font-size: .92rem; line-height: 1.45; }
.support-back {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-2);
  font-size: .86rem;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.support-agent-form textarea { min-height: 116px; }
.support-agent-form .field { gap: 5px; }
.support-agent-form label { font-size: .86rem; }
.support-agent-form input, .support-agent-form textarea { min-height: 46px; padding: 9px 11px; }
.support-agent-form .checkbox-field {
  grid-template-columns: 20px 1fr;
  gap: 8px 10px;
  padding-top: 0;
}
.support-agent-form .checkbox-field input { width: 17px; height: 17px; min-height: 17px; }
.support-agent-form .checkbox-field label { font-size: .82rem; font-weight: 600; }
.support-agent-form a { color: var(--blue-2); font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }
.support-agent-actions {
  display: grid;
  gap: 8px;
}
.support-agent-actions .button { width: 100%; }
.support-agent-actions p { font-size: .84rem; text-align: center; }
.support-form-alert {
  padding: 11px 12px;
  border-left: 4px solid;
  font-size: .88rem;
  outline: none;
}
.support-form-alert.error { background: #fff4f4; color: #7d1f1f; border-color: #c84444; }
.support-form-alert.success { background: #eefaf2; color: #245c34; border-color: #34a853; }

.reveal { opacity: 1; transform: none; }
.has-js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 16px; font-size: .9rem; }
  .executive-hero__grid, .page-hero__grid, .editorial-split, .editorial-split.reverse, .federal-resource__grid, .contact-page-grid { grid-template-columns: 1fr; }
  .editorial-split.reverse .image-panel { order: 0; }
  .hero-editorial, .page-visual, .image-panel { min-height: 430px; }
  .capability-gallery { grid-template-columns: repeat(2, 1fr); }
  .capability-tile:first-child, .capability-tile:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-credentials {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .footer-credentials dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-credentials div:nth-child(2n + 1) {
    padding-left: 0;
    border-left: 0;
  }
  .footer-credentials__link { justify-self: start; }
  .resource-card { grid-template-columns: 1fr; }
  .resource-card__content { order: -1; }
  .resource-card__preview { border-right: 0; border-top: 1px solid var(--line); }
  .resource-card__preview img { width: min(100%, 260px); }
  .statement-cta, .statement-strip { display: grid; }
}

@media (max-width: 1100px) {
  .container { width: 100%; max-width: none; padding-left: 16px; padding-right: 16px; }
  .nav-wrap { position: relative; min-height: 78px; gap: 12px; padding-right: 76px; }
  .brand { min-width: 0; }
  .brand img { width: clamp(190px, 54vw, 265px); }
  .menu-toggle { position: absolute; right: 16px; top: 50%; flex: 0 0 48px; transform: translateY(-50%); }
  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    max-height: calc(100vh - 78px);
    overflow: auto;
    display: grid;
    gap: 0;
    padding: 18px 16px 28px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .18s var(--ease), transform .18s var(--ease);
  }
  .site-nav > * + * { margin-left: 0; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a, .nav-drop-toggle { width: 100%; min-height: 52px; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .nav-cta { justify-content: center !important; margin-top: 14px; }
  .nav-drop-menu { position: static; width: 100%; padding: 0 0 8px 12px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; display: none; }
  .nav-dropdown.is-open .nav-drop-menu { display: block; }
  .executive-hero,
  .page-hero,
  .about-hero-final,
  .federal-hero-final,
  .values-hero-final,
  .contact-hero-final { background: linear-gradient(180deg, #fff 0%, #f4fafc 100%); }
  .executive-hero { padding-top: 42px; }
  .executive-hero__grid { gap: 30px; }
  .container, .executive-hero__grid, .page-hero__grid, .editorial-split, .content-grid, .value-layout, .button-row, .button { min-width: 0; }
  .executive-hero__copy, .page-hero__copy, .editorial-copy, .institution-band__inner, .institution-band__inner div, .hero-editorial, .hero-editorial figcaption, .page-visual, .image-panel, .content-grid > *, .value-layout > * { min-width: 0; max-width: 100%; }
  .page-visual, .image-panel, .hero-editorial { width: 100%; margin-left: 0; margin-right: 0; }
  .executive-hero__grid, .page-hero__grid, .about-hero-final .page-hero__grid, .values-hero-final .page-hero__grid, .capabilities-hero-final .page-hero__grid, .federal-hero-final .page-hero__grid, .contact-hero-final .page-hero__grid, .editorial-split, .editorial-split.reverse, .content-grid, .content-grid.reverse, .value-layout, .mission-vision__grid, .federal-resource__grid, .contact-page-grid { grid-template-columns: minmax(0, 1fr); }
  .page-hero { padding: 42px 0 54px; }
  .page-hero__grid { gap: 28px; align-items: start; }
  h1 { font-size: clamp(2.45rem, 10.8vw, 3.45rem); line-height: 1; }
  .page-hero h1 { font-size: clamp(2.1rem, 8vw, 3rem); line-height: 1.06; }
  h2 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-editorial, .page-visual, .image-panel { min-height: 330px; }
  .values-hero-final .page-visual,
  .about-hero-final .page-visual,
  .federal-hero-final .page-visual,
  .contact-hero-final .page-visual {
    min-height: clamp(260px, 48vw, 360px);
    border-radius: 0 0 0 28px;
  }
  .institution-band__inner, .mission-vision__grid, .value-layout, .content-grid, .content-grid.reverse, .service-context__grid, .capability-system__grid { grid-template-columns: 1fr; }
  .institution-band__inner div { border-right: 1px solid var(--line-dark); }
  .capability-gallery { grid-template-columns: 1fr; grid-auto-rows: minmax(320px, auto); }
  .signature-section { min-height: 560px; }
  .signature-section::after { background: rgba(11,24,40,.82); }
  .cta-wrap { display: grid; }
  form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-credentials {
    margin-top: 26px;
    padding: 18px 0 20px;
  }
  .footer-credentials dl { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .footer-credentials div,
  .footer-credentials div:nth-child(2n + 1) {
    padding-left: 13px;
    border-left: 2px solid rgba(42,166,187,.78);
  }
  .footer-credentials dd { white-space: normal; overflow-wrap: normal; word-break: normal; }
  .footer-bottom { padding-right: 72px; }
  .legal-layout { grid-template-columns: minmax(0, 1fr); }
  .legal-toc { display: none; }
  .legal-mobile-toc { display: block; padding: 16px; border: 1px solid var(--line); background: var(--pearl); }
  .legal-mobile-toc summary { color: var(--navy); font-weight: 780; cursor: pointer; }
  .legal-mobile-toc div { display: grid; gap: 8px; margin-top: 14px; }
  .legal-mobile-toc a { color: var(--blue-2); font-weight: 700; }
  .legal-hero { background: linear-gradient(180deg, #fff 0%, #f4fafc 100%); }
  .cookie-banner { grid-template-columns: 1fr; left: 16px; right: 16px; bottom: 16px; padding: 16px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .button { flex: 1 1 190px; }
  .preference-row { display: grid; }
  .has-js .reveal { opacity: 1; transform: none; }
  .support-assistant { right: 16px; bottom: 16px; width: min(410px, calc(100vw - 32px)); }
  .support-panel { height: min(620px, calc(100dvh - 104px)); }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .container { padding-left: 14px; padding-right: 14px; }
  .brand img { width: clamp(142px, 48vw, 188px); }
  .menu-toggle { right: 14px; width: 44px; height: 44px; flex-basis: 44px; }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(2rem, 9vw, 2.35rem); line-height: 1.08; }
  .page-hero h1 { font-size: clamp(2rem, 8.8vw, 2.35rem); line-height: 1.1; }
  h2 { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  .hero-kicker { font-size: 1.02rem; line-height: 1.28; }
  .page-hero__copy p:not(.eyebrow), .hero-summary { font-size: 1rem; }
  .executive-hero__copy, .page-hero__copy { width: 100%; }
  .executive-hero__copy h1, .page-hero__copy h1, .hero-kicker, .hero-summary, .page-hero__copy p, .institution-band p, .editorial-copy p { max-width: 100%; overflow-wrap: normal; word-break: normal; }
  .hero-editorial, .page-visual, .image-panel { width: 100%; max-width: 100%; }
  .capability-flow { grid-template-columns: 1fr; }
  .service-graphic { min-height: 330px; padding: 22px; }
  .mobile-break { display: block; }
  .button-row, .button { width: 100%; }
  .hero-editorial figcaption { left: 18px; right: 18px; bottom: 18px; }
  .institution-band__inner div { padding: 22px 18px; }
  .value-row { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 22px 0; }
  .value-row span { font-size: .76rem; }
  .core-value-row span { color: var(--cyan); }
  .credential-grid { grid-template-columns: 1fr; }
  .resource-card__content { padding: 24px; }
  .resource-card__preview { padding: 22px; }
  .resource-card__preview img { width: min(100%, 230px); }
  .resource-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .resource-actions .button { width: 100%; }
  .statement-cta, .statement-strip { padding: 22px; }
  .statement-cta .button-row, .statement-strip .button-row { width: 100%; }
  .cookie-banner { max-height: 45vh; overflow: auto; padding: 14px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .cookie-actions .button { width: 100%; flex-basis: auto; min-height: 38px; padding: 8px 10px; font-size: .86rem; }
  .cookie-actions .button:nth-child(3) { grid-column: 1 / -1; }
  .cookie-banner h2 { font-size: .96rem; }
  .cookie-banner p { font-size: .84rem; line-height: 1.35; }
  .cookie-links { margin-top: 6px; }
  .cookie-modal { padding: 14px; }
  .cookie-modal__panel { max-height: calc(100vh - 28px); padding: 20px; }
  .cookie-modal__header h2 { font-size: 1.6rem; }
  .support-assistant {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }
  .support-launcher {
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 4px;
  }
  .support-launcher span { display: none; }
  .support-panel {
    height: min(86dvh, 650px);
    margin-bottom: 10px;
  }
  .support-panel__header { padding: 15px; }
  .support-panel__header h2 { font-size: 1rem; }
  .support-panel__body { padding: 13px; }
  .support-message { max-width: 96%; }
  .support-ask { grid-template-columns: minmax(0, 1fr); }
  .support-ask .button { width: 100%; }
}

@media (max-width: 600px) {
  .footer-credentials dl { grid-template-columns: 1fr; gap: 14px; }
  .footer-credentials dd { font-size: .98rem; }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-height: 30vh;
    padding: 10px 12px;
    gap: 7px;
  }
  body.footer-in-view .cookie-banner {
    top: 88px;
    bottom: auto;
  }
  .cookie-banner h2 { font-size: .9rem; margin-bottom: 2px; }
  .cookie-banner p { font-size: .78rem; line-height: 1.28; }
  .cookie-links { gap: 12px; margin-top: 3px; }
  .cookie-actions { gap: 6px; }
  .cookie-actions .button { min-height: 32px; padding: 6px 8px; font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto; transition-duration: .01ms; animation-duration: .01ms; animation-iteration-count: 1; }
  .has-js .reveal { opacity: 1; transform: none; }
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.insight-card {
    background: #fff;
    border: 1px solid rgba(14, 38, 64, .14);
    border-radius: 8px;
    padding: 24px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-card p {
    color: var(--muted);
    margin: 0 0 12px;
    font-size: .92rem;
}

.insight-card h3 {
    margin: 0 0 18px;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.insight-featured {
    margin: 28px 0;
    border-radius: 8px;
    overflow: hidden;
}

.insight-featured img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.insights-hero {
  padding: clamp(54px, 6vw, 82px) 0 clamp(30px, 4vw, 46px);
  background: linear-gradient(180deg, #f6fbfe 0%, #fff 100%);
}

.insights-hero h1 {
  font-size: clamp(2.65rem, 5vw, 5rem);
  margin-top: 10px;
}

.insights-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 16px;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.insights-section,
.related-insights {
  padding: clamp(38px, 5vw, 74px) 0;
}

.insight-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.insight-filters a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--navy);
  font-weight: 720;
  background: #fff;
}

.insight-filters a[aria-current="page"],
.insight-filters a:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.featured-insight {
  margin-bottom: clamp(42px, 6vw, 70px);
}

.insight-list-card {
  min-width: 0;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(14, 38, 64, .14);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}

.insight-list-card:hover {
  border-color: rgba(19, 95, 199, .34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.insight-list-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef5fa;
}

.insight-list-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .18s var(--ease);
}

.insight-list-card:hover .insight-list-card__image img {
  transform: scale(1.02);
}

.insight-list-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-meta {
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.insight-list-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.insight-list-card h2 a {
  color: var(--navy);
}

.insight-list-card:hover h2 a {
  color: var(--blue-2);
}

.insight-list-card__body > p:not(.insight-meta) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-list-card__footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .92rem;
}

.insight-list-card .text-link span {
  display: inline-block;
  transition: transform .18s var(--ease);
}

.insight-list-card:hover .text-link span {
  transform: translateX(4px);
}

.insight-list-card.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .9fr);
  align-items: stretch;
}

.insight-list-card.featured .insight-list-card__image {
  aspect-ratio: auto;
  min-height: 360px;
}

.insight-list-card.featured .insight-list-card__body {
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.insight-list-card.featured .insight-meta::before {
  content: "Featured Insight";
  display: block;
  color: var(--navy);
  font-size: .82rem;
  margin-bottom: 8px;
}

.insight-list-card.featured h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.insight-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1240px;
}

.insight-card-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.insight-pagination a,
.insight-pagination span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
}

.insight-article {
  padding: clamp(52px, 6vw, 82px) 0;
}

.insight-article__header {
  padding-bottom: 8px;
}

.insight-breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .92rem;
}

.insight-breadcrumbs a {
  color: var(--blue-2);
  font-weight: 720;
}

.insight-deck {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
}

.insight-article .narrow {
  width: min(820px, calc(100% - 48px));
}

.insight-article .legal-content {
  font-size: 18px;
  line-height: 1.76;
}

.insight-article .legal-content h2,
.insight-article .legal-content h3 {
  margin-top: 1.55em;
}

.insight-article .legal-content blockquote {
  margin: 1.4em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--cyan);
  background: #f6fbfe;
  color: var(--navy);
}

.insight-article .legal-content a {
  color: var(--blue-2);
  font-weight: 720;
}

@media (max-width: 1020px) {
  .insight-card-grid,
  .insight-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-list-card.featured {
    grid-template-columns: 1fr;
  }

  .insight-list-card.featured .insight-list-card__image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .insight-card-grid,
  .insight-card-grid.compact {
    grid-template-columns: 1fr;
  }

  .insight-list-card__body {
    padding: 18px;
  }

  .insight-list-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}
