:root {
  --ink: #111827;
  --muted: #4b5563;
  --soft: #eef2f7;
  --panel: #ffffff;
  --line: #d7dee8;
  --navy: #0b1f3a;
  --navy-2: #13345c;
  --steel: #536579;
  --accent: #1e5a97;
  --accent-2: #2563a8;
  --sky: #5d8fc7;
  --blue: #1e5a97;
  --button-bg: var(--accent);
  --button-bg-hover: var(--navy-2);
  --button-dark-bg: var(--navy);
  --button-border-muted: rgba(11, 31, 58, 0.22);
  --button-on-dark-border: rgba(255, 255, 255, 0.72);
  --button-on-dark-bg: rgba(255, 255, 255, 0.08);
  --button-on-dark-bg-hover: rgba(255, 255, 255, 0.18);
  --text-on-dark: rgba(255, 255, 255, 0.84);
  --text-on-dark-strong: #ffffff;
  --text-on-dark-muted: #d7e4f3;
  --text-on-dark-accent: #b9d6f2;
  --shadow: 0 18px 45px rgba(11, 31, 58, 0.14);
  --shadow-soft: 0 10px 26px rgba(11, 31, 58, 0.08);
  --shadow-card: 0 14px 34px rgba(11, 31, 58, 0.1);
  --wash-line: rgba(30, 90, 151, 0.08);
  --radius: 0;
  --site-max: 1440px;
  --site-gutter-total: 48px;
  --section-y: clamp(88px, 6vw, 118px);
  --section-y-compact: clamp(70px, 4.8vw, 88px);
  --section-head-gap: clamp(44px, 3vw, 58px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #f7f9fc;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(93, 143, 199, 0.82);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.08);
}

.nav-shell {
  width: min(var(--site-max), calc(100% - var(--site-gutter-total)));
  margin: 0 auto;
  min-height: 74px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
  position: relative;
}

.brand img {
  width: 190px;
  height: auto;
}

.primary-nav {
  flex: 1 1 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1px;
  min-width: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
}

.nav-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 10px 11px;
  color: var(--navy);
  text-decoration: none;
  font: inherit;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0;
  position: relative;
}

.primary-nav .nav-link {
  padding-inline: 14px;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(30, 90, 151, 0.08);
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 3px;
  background: var(--accent);
  opacity: 0;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}

.nav-trigger {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-block: auto;
}

.nav-item .nav-link {
  padding-right: 7px;
}

.nav-trigger::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 0;
  bottom: 5px;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger,
.nav-item.is-open .nav-trigger,
.nav-item.is-current .nav-trigger {
  background: rgba(30, 90, 151, 0.08);
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after,
.nav-item.is-open .nav-trigger::after,
.nav-item.is-current .nav-trigger::after {
  opacity: 1;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link,
.nav-item.is-open .nav-link,
.nav-item.is-current .nav-link {
  background: transparent;
  color: var(--accent);
}

.nav-item .nav-link::after {
  content: none;
}

.nav-dropdown-toggle {
  width: 25px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.nav-dropdown-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-item:hover .nav-dropdown-toggle,
.nav-item:focus-within .nav-dropdown-toggle,
.nav-item.is-open .nav-dropdown-toggle,
.nav-item.is-current .nav-dropdown-toggle {
  color: var(--accent);
}

.nav-item.is-open .nav-dropdown-toggle span,
.nav-item:hover .nav-dropdown-toggle span,
.nav-item:focus-within .nav-dropdown-toggle span {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 240px;
  display: grid;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.14);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.primary-nav .nav-item:last-child .nav-dropdown {
  left: auto;
  right: 0;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 11px 12px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  border-left: 3px solid transparent;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible,
.nav-dropdown-link[aria-current="page"] {
  background: rgba(30, 90, 151, 0.08);
  color: var(--accent);
  border-left-color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 10px 16px;
  background: var(--button-bg);
  color: #fff;
  border-radius: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: inset 0 -3px 0 rgba(5, 15, 29, 0.2);
}

.header-cta:hover {
  background: var(--button-bg-hover);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 31, 58, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  content: "";
}

.menu-button span::before {
  transform: translateY(-7px);
}

.menu-button span::after {
  transform: translateY(5px);
}

.menu-button[aria-expanded="true"] span {
  background: transparent;
}

.menu-button[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.menu-button[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100vh - 130px), 790px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero.hero-short {
  min-height: clamp(500px, 58vh, 640px);
}

.contact-hero {
  min-height: clamp(500px, 56vh, 620px);
}

.contact-hero .hero-content {
  padding: clamp(50px, 6vw, 68px) 0;
}

.contact-hero h1 {
  max-width: 680px;
  font-size: clamp(2.85rem, 4.2vw, 4.25rem);
}

.contact-hero p {
  max-width: 620px;
  font-size: 1.1rem;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 29, 0.88) 0%, rgba(5, 15, 29, 0.68) 34%, rgba(5, 15, 29, 0.28) 64%, rgba(5, 15, 29, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 15, 29, 0.62), rgba(5, 15, 29, 0.02) 56%);
}

.hero-content {
  position: relative;
  width: min(var(--site-max), calc(100% - var(--site-gutter-total)));
  margin: 0 auto;
  padding: 78px 0;
}

.hero.hero-short .hero-content {
  width: min(var(--site-max), calc(100% - var(--site-gutter-total)));
}

.hero.government-hero {
  min-height: clamp(620px, calc(100vh - 130px), 790px);
}

.hero.government-hero h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 4.55vw, 5.1rem);
}

.hero.government-hero p {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.86rem;
}

.hero .eyebrow,
.section.navy .eyebrow {
  color: var(--text-on-dark-accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3.35rem, 4.55vw, 5.1rem);
  font-weight: 900;
}

.hero p {
  max-width: 700px;
  color: var(--text-on-dark);
  font-size: 1.2rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  min-width: 168px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

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

.button.primary {
  background: var(--button-bg);
  color: #fff;
  border-color: var(--button-bg);
}

.button.primary:hover {
  background: var(--button-bg-hover);
  border-color: var(--button-bg-hover);
}

.button.secondary {
  color: #fff;
  border-color: var(--button-on-dark-border);
  background: var(--button-on-dark-bg);
}

.button.secondary:hover {
  background: var(--button-on-dark-bg-hover);
}

.button.dark {
  background: var(--button-dark-bg);
  color: #fff;
  border-color: var(--button-dark-bg);
}

.button.dark:hover {
  background: var(--button-bg-hover);
  border-color: var(--button-bg-hover);
}

.button.light {
  border-color: var(--button-border-muted);
  background: #fff;
  color: var(--navy);
}

.button.light:hover {
  border-color: var(--button-bg);
  color: var(--button-bg);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section.compact {
  padding: var(--section-y-compact) 0;
}

.section.navy {
  background: var(--navy);
  color: #fff;
}

.section.navy h2,
.section.navy h3,
.section.navy h4 {
  color: #fff;
}

.section.navy p,
.section.navy li {
  color: var(--text-on-dark);
}

.bd-cta-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.99) 0%, rgba(11, 31, 58, 0.96) 62%, rgba(19, 52, 92, 0.94) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 96px 96px;
}

.bd-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(93, 143, 199, 0.08)),
    linear-gradient(0deg, rgba(5, 15, 29, 0.32), transparent 58%);
  pointer-events: none;
}

.bd-cta-section .split {
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: 42px;
}

.bd-cta-section .split > div:first-child {
  display: grid;
  align-content: center;
  padding: 10px 0;
}

.bd-route-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.bd-route-list span {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(185, 214, 242, 0.22);
  color: #fff;
  font-weight: 900;
}

.bd-route-list strong {
  color: var(--sky);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.bd-cta-section .bd-notice {
  display: grid;
  align-content: center;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid rgba(185, 214, 242, 0.3);
  border-left: 6px solid var(--button-bg);
  box-shadow: 0 22px 42px rgba(5, 17, 32, 0.24);
}

.section.navy.bd-cta-section .bd-notice h3 {
  color: var(--navy);
}

.section.navy.bd-cta-section .bd-notice p {
  color: var(--ink);
}

.section.soft {
  background:
    linear-gradient(135deg, rgba(238, 242, 247, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, var(--wash-line) 1px, transparent 1px),
    linear-gradient(0deg, var(--wash-line) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
}

.section.white {
  background:
    linear-gradient(135deg, #ffffff, #f8fafc 62%, #eef3f9),
    linear-gradient(90deg, rgba(30, 90, 151, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.045) 1px, transparent 1px);
  background-size: auto, 118px 118px, 118px 118px;
}

.section.band {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(245, 248, 252, 0.98), rgba(255, 255, 255, 0.92) 56%, rgba(226, 236, 247, 0.96)),
    linear-gradient(90deg, var(--wash-line) 1px, transparent 1px),
    linear-gradient(0deg, var(--wash-line) 1px, transparent 1px);
  background-size: auto, 110px 110px, 110px 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#ways-to-work {
  background:
    linear-gradient(135deg, rgba(245, 248, 252, 0.99), rgba(232, 239, 247, 0.96)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
}

.section.band::before,
#ways-to-work::before,
.outcomes-section::before,
.history-section::before,
.benefits-section::before,
.contact-section::before,
.career-path-section::before,
.careers-culture::before,
.career-experience::before,
.career-legal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(93, 143, 199, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
}

.section.band > .container,
#ways-to-work > .container,
.outcomes-section > .container,
.history-section > .container,
.benefits-section > .container,
.contact-section > .container,
.career-path-section > .container,
.careers-culture > .container,
.career-experience > .container,
.career-legal-section > .container {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--site-max), calc(100% - var(--site-gutter-total)));
  margin: 0 auto;
}

.section-head {
  max-width: 800px;
  margin-bottom: var(--section-head-gap);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 1.05;
}

.section-head p {
  color: var(--muted);
  font-size: 1.12rem;
}

.mission-proof-copy h2,
.outcomes-copy h2,
.history-copy h2,
.locations-intro h2,
.benefits-copy h2,
.capability-preview-copy h2,
.support-command-panel h2,
.veterans-section h2,
.contact-command h2,
.contact-info-stack .section-head h2 {
  line-height: 1.05;
}

.mission-proof-copy p,
.outcomes-copy p,
.history-copy p,
.benefits-copy p,
.contact-command p,
.contact-info-stack .section-head p {
  font-size: 1.05rem;
}

.split h2,
.contact-card h2 {
  font-size: 2.25rem;
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.five > * {
  grid-column: span 2;
}

.five > :nth-child(4):nth-last-child(2) {
  grid-column: 1 / span 3;
}

.five > :nth-child(5):last-child {
  grid-column: 4 / span 3;
}

.card {
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 900;
}

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

.image-card img,
.plane-card img,
.feature-image img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.plane-card img {
  height: 245px;
}

.plane-card .card-body {
  border-left: 5px solid var(--accent);
}

.plane-card {
  display: grid;
  grid-template-rows: 245px 1fr;
}

.plane-card .card-body,
.home-capability .card-body,
.capability-card .card-body {
  display: grid;
  align-content: start;
}

.capability-card {
  display: grid;
  grid-template-rows: 190px 1fr;
}

.capability-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

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

.icon-card {
  background:
    linear-gradient(180deg, #ffffff, #f7fafd),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.icon-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(30, 90, 151, 0.1);
  color: var(--blue);
  border-radius: 0;
}

.icon-card .icon svg {
  width: 26px;
  height: 26px;
}

.icon-card h3,
.notice h3 {
  color: var(--navy);
}

.icon-card p,
.notice p,
.notice li {
  color: var(--muted);
}

.notice a {
  color: var(--blue);
  font-weight: 800;
}

.section.navy .icon-card h3,
.section.navy .notice h3,
.section.navy .card h3 {
  color: var(--navy);
}

.section.navy .icon-card p,
.section.navy .notice p,
.section.navy .notice li,
.section.navy .card p,
.section.navy .card li {
  color: var(--muted);
}

.icon-card.compact {
  min-height: 100%;
  box-shadow: none;
}

.proof-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.proof-panel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.96)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-panel.blue {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.92), rgba(30, 90, 151, 0.86)),
    url("../../assets/images/cockpit-refueling.jpg") center / cover;
}

.proof-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-panel h3 {
  max-width: 620px;
  font-size: 2.05rem;
  font-weight: 900;
}

.proof-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-panel.blue h3,
.proof-panel.blue p,
.proof-panel.blue .proof-kicker,
.proof-panel.blue .text-link {
  color: #fff;
}

.proof-panel.blue p {
  color: rgba(255, 255, 255, 0.84);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 3px solid currentColor;
}

.proof-support {
  margin-top: 22px;
}

.temporary-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.temporary-proof-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.05) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid rgba(30, 90, 151, 0.72);
  box-shadow: var(--shadow-soft);
}

.temporary-proof-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.temporary-proof-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.temp-label {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(83, 101, 121, 0.46);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.mission-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: stretch;
}

.mission-proof-copy {
  display: grid;
  align-content: center;
}

.mission-proof-copy h2 {
  max-width: 820px;
  font-size: 3rem;
  font-weight: 900;
}

.mission-proof-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.glance-stat {
  min-height: 124px;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff, #f4f8fc),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.glance-stat strong {
  display: block;
  color: var(--accent);
  font-size: 1.85rem;
  line-height: 1;
}

.glance-stat span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
}

.mission-proof-media {
  position: relative;
  display: block;
  min-height: 100%;
}

.mission-proof-media .feature-image {
  min-height: 520px;
  height: 100%;
}

.mission-proof-media .feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.mission-proof-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(30, 90, 151, 0.9)),
    url("../../assets/images/conference-room-aircraft-wall.jpg") center / cover;
  color: #fff;
  border-left: 0;
  border-top: 6px solid var(--sky);
  box-shadow: var(--shadow);
}

.mission-proof-note h3 {
  color: #fff;
  font-size: 1.08rem;
}

.mission-proof-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.capability-preview-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.96), rgba(11, 31, 58, 0.9) 48%, rgba(30, 90, 151, 0.66)),
    url("../../assets/images/stratcom-briefing.jpg") center / cover;
}

.capability-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  pointer-events: none;
}

.capability-preview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.capability-preview-copy h2 {
  max-width: 660px;
  color: #fff;
  font-size: 3.25rem;
  font-weight: 900;
}

.capability-preview-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.capability-signal-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
}

.capability-signal-list span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(185, 214, 242, 0.18);
  border-left: 5px solid var(--sky);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.capability-signal-list strong {
  color: #fff;
  font-size: 0.86rem;
}

.capability-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.capability-teaser {
  position: relative;
  min-height: 365px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(185, 214, 242, 0.28);
  box-shadow: 0 18px 42px rgba(3, 10, 22, 0.34);
}

.capability-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 15, 29, 0.12), rgba(5, 15, 29, 0.78) 68%, rgba(5, 15, 29, 0.94)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.35), transparent 58%);
}

.capability-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-teaser-body {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-left: 5px solid rgba(93, 143, 199, 0.9);
  background: linear-gradient(90deg, rgba(11, 31, 58, 0.72), rgba(11, 31, 58, 0));
}

.capability-teaser-body span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b9d6f2;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-teaser-body h3 {
  color: #fff;
  font-size: 1.42rem;
  font-weight: 900;
}

.capability-teaser-body p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 31, 58, 0.14);
  background: #fff;
}

.feature-image img {
  height: 430px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.logo-tile {
  position: relative;
  overflow: hidden;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.95)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.logo-tile::before {
  content: none;
}

.logo-tile img {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.logo-tile img[src*="special-operations-command"] {
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.logo-tile strong {
  color: var(--navy);
  line-height: 1.2;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.93rem;
}

.customer-roster {
  margin-top: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f4f8fc),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.customer-roster h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.18rem;
}

.customer-roster .pill-list li {
  background: #fff;
  border-color: rgba(30, 90, 151, 0.12);
  color: var(--navy);
}

.customer-logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: none;
  margin: 0 auto;
}

.customer-logo-tile {
  min-height: 150px;
  gap: 10px;
  padding: 16px;
  justify-content: center;
}

.customer-logo-tile .logo-emblem {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.customer-logo-tile img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 10px 16px rgba(11, 31, 58, 0.14));
}

.customer-logo-tile img[src*="special-operations-command"],
.customer-logo-tile img[src*="socom"] {
  width: 78px;
  height: 78px;
}

.customer-logo-tile strong {
  max-width: 16ch;
  font-size: 0.95rem;
}

.home-customer-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: none;
}

.home-customer-grid .customer-logo-tile {
  min-height: 180px;
  padding: 20px;
}

.home-customer-grid .logo-emblem {
  width: 96px;
  height: 96px;
}

.home-customer-grid .customer-logo-tile img {
  width: 82px;
  height: 82px;
}

.home-customer-grid .customer-logo-tile img[src*="special-operations-command"],
.home-customer-grid .customer-logo-tile img[src*="socom"] {
  width: 86px;
  height: 86px;
}

.home-customer-grid .customer-logo-tile strong {
  font-size: 1.02rem;
}

.customer-roster {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
  max-width: none;
  margin: 26px auto 0;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 252, 0.95)),
    radial-gradient(circle at 86% 18%, rgba(93, 143, 199, 0.14), transparent 24%),
    linear-gradient(90deg, rgba(30, 90, 151, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 92px 92px;
  border: 1px solid rgba(30, 90, 151, 0.14);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.customer-roster h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.2rem;
}

.customer-roster-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.customer-roster-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.roster-column {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 90, 151, 0.12);
  box-shadow: none;
}

.roster-column h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.roster-column .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.roster-column .pill-list li {
  padding: 7px 10px;
  font-size: 0.82rem;
}

.customer-base-section {
  padding-top: clamp(72px, 5vw, 92px);
  padding-bottom: clamp(76px, 5.2vw, 96px);
}

.customer-base-section .section-head {
  margin-bottom: 34px;
}

.customer-base-section .section-head h2 {
  font-size: clamp(2.55rem, 4vw, 3.45rem);
}

.roster-column .pill-list li {
  padding: 12px 14px;
  background: #fff;
  border-color: rgba(30, 90, 151, 0.14);
}

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

.engagement-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 248, 252, 0.94)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.06) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.engagement-card::after {
  content: none;
}

.engagement-card .route-icon,
.job-path-card .route-icon,
.support-card .route-icon,
.contact-route-card .route-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--navy);
  color: #fff;
}

.engagement-card .route-icon svg,
.job-path-card .route-icon svg,
.support-card .route-icon svg,
.contact-route-card .route-icon svg {
  width: 27px;
  height: 27px;
}

.engagement-card span,
.vehicle-card span,
.job-path-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.engagement-card h3 {
  font-size: 1.42rem;
}

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

.vehicle-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 8px;
  background: rgba(30, 90, 151, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-card .card-body {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.vehicle-card {
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--accent);
  background:
    linear-gradient(180deg, #ffffff, #f7fafd),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
}

.vehicle-card.featured {
  border-left-color: var(--accent);
  background:
    linear-gradient(180deg, #ffffff, #f7fafd),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
}

.vehicle-card::before {
  content: none;
}

.vehicle-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--navy);
  color: #fff;
}

.vehicle-icon svg {
  width: 28px;
  height: 28px;
}

.mission-list {
  padding-left: 20px;
  margin: 18px 0 0;
}

.mission-list li + li {
  margin-top: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.tag-row li,
.tag-row span {
  padding: 5px 8px;
  background: rgba(30, 90, 151, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-list + .tag-row {
  margin-top: 18px;
}

.mission-cred {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.94), rgba(11, 31, 58, 0.86) 50%, rgba(30, 90, 151, 0.58)),
    url("../../assets/images/cockpit-refueling.jpg") center / cover;
  position: relative;
  overflow: hidden;
}

.mission-cred::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.28;
  pointer-events: none;
}

.mission-cred > .container {
  position: relative;
  z-index: 1;
}

.mission-cred-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 38px;
  align-items: center;
}

.credibility-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.credibility-panel .stat {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(185, 214, 242, 0.22);
  border-left: 5px solid rgba(93, 143, 199, 0.85);
}

.credibility-image-stack {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  align-items: stretch;
}

.credibility-image-stack img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid rgba(185, 214, 242, 0.34);
  box-shadow: 0 18px 40px rgba(5, 15, 29, 0.28);
}

.credibility-image-stack img:first-child {
  height: 290px;
  align-self: end;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-year {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.leader-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: stretch;
}

.leader-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.notice {
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafd),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 86px 86px;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.outcomes-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.98), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
}

.outcomes-copy h2,
.outcomes-grid h3 {
  color: var(--navy);
}

.outcomes-copy h2 {
  max-width: 780px;
  font-size: 3.15rem;
  font-weight: 900;
}

.outcomes-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.outcome-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafd),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.outcome-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.outcome-card h3 {
  font-size: 1.42rem;
  font-weight: 900;
}

.outcome-card p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
}

.trust-section .eyebrow,
.veterans-section .eyebrow,
.career-support-section .eyebrow {
  color: #b9d6f2;
}

.outcomes-section .eyebrow {
  color: var(--accent);
}

.history-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #f3f7fb 0%, #edf3f9 100%),
    linear-gradient(90deg, rgba(30, 90, 151, 0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.075) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.foundation-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 252, 0.98)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.045) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
  background-repeat: no-repeat, repeat, repeat;
}

.foundation-head {
  max-width: 920px;
  margin: 0 auto 26px;
}

.foundation-head h2 {
  max-width: 900px;
  font-size: 3.05rem;
  font-weight: 900;
}

.foundation-panel {
  display: grid;
  gap: 20px;
  max-width: none;
  margin: 0 auto;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  width: 100%;
}

.statement-card {
  min-height: 220px;
  padding: 34px;
  background:
    linear-gradient(180deg, #ffffff, #f6f9fc),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-left: 0;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.statement-card:first-child {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.98), rgba(30, 90, 151, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border-color: rgba(185, 214, 242, 0.22);
  border-top-color: var(--sky);
}

.statement-card:first-child span,
.statement-card:first-child h3 {
  color: #fff;
}

.statement-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b9d6f2;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.statement-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.value-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-left: 0;
  box-shadow: var(--shadow-soft);
}

.value-card h3 {
  font-size: 1.18rem;
}

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

.values-grid .value-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(30, 90, 151, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border-color: rgba(185, 214, 242, 0.2);
  border-top-color: var(--sky);
}

.values-grid .value-card:nth-child(2) h3,
.values-grid .value-card:nth-child(2) p {
  color: #fff;
}

.values-grid .value-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.84);
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas:
    "copy stack"
    "image image";
  gap: 30px 36px;
  align-items: start;
}

.history-copy {
  grid-area: copy;
}

.history-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.history-image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.history-image-wide {
  grid-area: image;
}

.history-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(90deg, rgba(7, 21, 41, 0.94), rgba(30, 90, 151, 0.74));
  color: #fff;
  font-weight: 800;
}

.history-copy h2 {
  font-size: 3.1rem;
  font-weight: 900;
}

.history-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.history-stack {
  grid-area: stack;
  display: grid;
  gap: 18px;
  align-content: start;
}

.history-section .timeline {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 252, 0.94)),
    radial-gradient(circle at 88% 16%, rgba(93, 143, 199, 0.16), transparent 24%);
  border: 1px solid rgba(30, 90, 151, 0.16);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
}

.history-section .timeline-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.history-section .timeline-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.history-section .timeline h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.history-section .timeline p {
  margin: 6px 0 0;
  color: var(--muted);
}

.principle-panel {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.97), rgba(30, 90, 151, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 92px 92px;
  border-left-color: var(--sky);
}

.notice.principle-panel h3,
.notice.principle-panel li {
  color: #fff;
}

.notice.principle-panel li {
  color: rgba(255, 255, 255, 0.84);
}

.leadership-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 252, 0.98)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 116px 116px, 116px 116px;
}

.leadership-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(93, 143, 199, 0.15), transparent 24%),
    linear-gradient(90deg, rgba(30, 90, 151, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.045) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
}

.leadership-section > .container {
  position: relative;
  z-index: 1;
}

.leader-profile {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f4f8fc),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.leader-mark {
  padding: 18px 22px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(30, 90, 151, 0.86)),
    url("../../assets/images/rivet-joint-ground.jpg") center / cover;
  color: #fff;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.leader-profile .card-body {
  border-left: 5px solid var(--accent);
}

.leader-title {
  display: inline-flex;
  margin: 8px 0 14px;
  padding: 5px 8px;
  background: rgba(30, 90, 151, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-profile h3 {
  font-size: 1.45rem;
  font-weight: 900;
}

.leader-profile p {
  color: var(--muted);
}

.trust-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.92), rgba(11, 31, 58, 0.84), rgba(30, 90, 151, 0.55)),
    url("../../assets/images/tc-135-red-arrows.jpg") center 76% / cover;
  color: #fff;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(93, 143, 199, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 78px 78px;
  pointer-events: none;
}

.trust-section > .container {
  position: relative;
  z-index: 1;
}

.trust-section .section-head h2,
.trust-card h3 {
  color: #fff;
}

.trust-section .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

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

.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(185, 214, 242, 0.28);
  border-left: 5px solid rgba(93, 143, 199, 0.55);
}

.trust-card.primary {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(30, 90, 151, 0.16)),
    rgba(255, 255, 255, 0.08);
  border-left-color: var(--sky);
}

.trust-card:nth-child(3),
.trust-card:nth-child(6) {
  background: rgba(255, 255, 255, 0.14);
}

.trust-card:nth-child(4),
.trust-card:nth-child(5) {
  background: rgba(30, 90, 151, 0.18);
}

.trust-card span,
.support-card span,
.career-proof-card span,
.contact-route-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.career-proof-card span,
.contact-route-card span {
  color: var(--accent);
}

.trust-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.8);
}

.locations-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(93, 143, 199, 0.18), transparent 28%),
    linear-gradient(135deg, #071529, #0b1f3a 56%, #123d69);
  color: #fff;
}

.locations-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.locations-intro h2 {
  max-width: 840px;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
}

.locations-intro p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

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

.location-stats span {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(185, 214, 242, 0.24);
  box-shadow: 0 10px 24px rgba(5, 15, 29, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.location-stats strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.location-confirm-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.careers-culture {
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.career-path-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0 52%, rgba(238, 243, 249, 0.96) 52% 100%),
    radial-gradient(circle at 12% 8%, rgba(93, 143, 199, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(30, 90, 151, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 116px 116px, 116px 116px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
}

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

.job-path-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 248, 252, 0.94)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.job-path-card::after {
  content: none;
}

.job-path-card h3 {
  font-size: 1.28rem;
}

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

.career-value-grid,
.career-proof-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

.career-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-value-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.career-value-card::before {
  content: none;
}

.career-value-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 900;
  border: 1px solid rgba(30, 90, 151, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.career-value-card h3,
.career-proof-card h3,
.support-card h3,
.contact-route-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
}

.career-value-card p,
.career-proof-card p,
.support-card p,
.contact-route-card p {
  color: var(--muted);
}

.career-value-card.tone-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.95)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
}

.career-value-card.tone-steel {
  background:
    linear-gradient(135deg, rgba(232, 239, 247, 0.98), rgba(250, 252, 255, 0.98)),
    radial-gradient(circle at 88% 16%, rgba(93, 143, 199, 0.16), transparent 24%);
  border-left-color: #739ec8;
}

.career-value-card.tone-dark {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.96), rgba(30, 90, 151, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border-color: rgba(185, 214, 242, 0.24);
  border-left-color: var(--sky);
}

.career-value-card.tone-dark span,
.career-value-card.tone-dark h3,
.career-value-card.tone-dark p {
  color: #fff;
}

.career-value-card.tone-dark span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(185, 214, 242, 0.28);
}

.career-value-card.tone-dark p {
  color: rgba(255, 255, 255, 0.84);
}

.benefits-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(238, 243, 249, 0.98), rgba(255, 255, 255, 0.97)),
    radial-gradient(circle at 8% 16%, rgba(93, 143, 199, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 112px 112px, 112px 112px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 36px;
  align-items: stretch;
}

.benefits-copy {
  display: grid;
  align-content: center;
}

.benefits-copy h2 {
  font-size: 3rem;
  font-weight: 900;
}

.benefits-copy p {
  color: var(--muted);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.94)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.benefit-list span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.benefit-list article:last-child {
  grid-column: 1 / -1;
}

.benefit-list p {
  margin: 0;
}

.benefits-image img {
  height: 100%;
  min-height: 520px;
}

.veterans-section {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.98), rgba(11, 31, 58, 0.92), rgba(30, 90, 151, 0.78)),
    url("../../assets/images/cockpit-refueling.jpg") center / cover no-repeat;
  color: #fff;
}

.veterans-section h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
}

.veterans-section p {
  color: rgba(255, 255, 255, 0.84);
}

.career-experience {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #f3f7fb, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.career-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-proof-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, #f4f8fc),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.career-proof-card::after {
  content: none;
}

.career-support-section {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.98), rgba(11, 31, 58, 0.94) 48%, rgba(30, 90, 151, 0.7)),
    url("../../assets/images/air-show.jpg") center / cover no-repeat;
  color: #fff;
}

.career-support-section h2,
.support-card h3 {
  color: #fff;
}

.support-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.support-command-panel {
  display: grid;
  align-content: center;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.92), rgba(30, 90, 151, 0.72)),
    url("../../assets/images/nc-135-greenville.jpg") center / cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(185, 214, 242, 0.26);
  border-left: 6px solid var(--sky);
  box-shadow: 0 18px 42px rgba(3, 10, 22, 0.28);
}

.support-command-panel h2 {
  max-width: 620px;
  font-size: 3.1rem;
  font-weight: 900;
}

.support-command-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.support-readiness {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.support-readiness span {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(185, 214, 242, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.support-readiness strong {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.support-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafd),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid rgba(185, 214, 242, 0.28);
  border-left: 5px solid var(--sky);
  box-shadow: 0 14px 34px rgba(3, 10, 22, 0.22);
}

.support-card h3 {
  color: var(--navy);
}

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

.support-card span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.support-card .route-icon {
  margin-bottom: 2px;
}

.support-card:nth-child(2),
.support-card:nth-child(3) {
  background: linear-gradient(180deg, #f5f8fc, #ffffff);
}

.support-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.92), rgba(30, 90, 151, 0.82)),
    url("../../assets/images/conference-room-aircraft-wall.jpg") center / cover;
  background-repeat: no-repeat;
}

.support-card:nth-child(4) h3,
.support-card:nth-child(4) p,
.support-card:nth-child(4) span {
  color: #fff;
}

.support-card:nth-child(4) p {
  color: rgba(255, 255, 255, 0.84);
}

.support-card:nth-child(4) .route-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.career-legal-section {
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border-top: 1px solid var(--line);
}

.careers-culture::before,
.career-experience::before,
.career-legal-section::before {
  content: none;
}

.contact-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #ffffff, #f4f8fc);
  border-bottom: 1px solid var(--line);
}

.contact-layout,
.contact-system {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.contact-system {
  grid-template-areas:
    "intro intro intro"
    "routes routes routes"
    "form form form"
    "map map map";
  gap: 24px 32px;
}

.contact-command {
  grid-area: intro;
}

.contact-system > .contact-route-grid {
  grid-area: routes;
}

.contact-system > .contact-form-card {
  grid-area: form;
}

.contact-system > .contact-map-panel {
  grid-area: map;
}

.contact-info-stack {
  display: grid;
  gap: 18px;
}

.contact-info-stack .section-head,
.contact-command {
  margin-bottom: 4px;
  max-width: none;
  min-height: 280px;
  padding: 36px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(90deg, rgba(7, 21, 41, 0.96) 0 48%, rgba(11, 31, 58, 0.86) 48% 70%, rgba(30, 90, 151, 0.72)),
    url("../../assets/images/stratcom-briefing.jpg") center / cover no-repeat;
  border-left: 6px solid var(--sky);
  box-shadow: var(--shadow);
}

.contact-command h2 {
  max-width: 850px;
  font-size: clamp(2.7rem, 4.2vw, 4rem);
}

.contact-command p {
  max-width: 760px;
}

.contact-info-stack .section-head h2,
.contact-command h2 {
  color: #fff;
}

.contact-info-stack .section-head p,
.contact-info-stack .section-head .eyebrow,
.contact-command p,
.contact-command .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-self: stretch;
}

.contact-route-head {
  max-width: 880px;
  margin-bottom: 32px;
}

.contact-route-head h2 {
  font-size: clamp(2.35rem, 3.2vw, 3.2rem);
}

.contact-route-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f5f8fc),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.contact-route-card:first-child {
  grid-column: auto;
}

.contact-route-card a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-route-card a:hover,
.contact-route-card a:focus-visible {
  text-decoration: underline;
}

.contact-route-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-form-card {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  column-gap: 36px;
  align-items: start;
  border-top: 0;
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
  align-self: start;
}

.contact-form-card::before {
  content: "Business development, careers, SkillBridge, and general inquiries all route through the Calvert inbox.";
  display: block;
  grid-column: 1 / -1;
  margin: -4px 0 20px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.94), rgba(30, 90, 151, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

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

.contact-form-card > .eyebrow,
.contact-form-card > h2,
.contact-form-card > p {
  grid-column: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card {
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafd),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card + .contact-card {
  margin-top: 16px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.contact-form-card .form-grid {
  grid-column: 2;
  grid-row: 2 / span 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.contact-form-card .form-grid label:nth-child(5),
.contact-form-card .form-grid button {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c9d3df;
  border-radius: 0;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-panel {
  margin-top: 16px;
  padding: 12px;
  background: #071529;
  border: 1px solid rgba(185, 214, 242, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-map-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr);
  gap: 0;
  padding: 0;
}

.contact-map-copy {
  display: grid;
  align-content: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.96), rgba(30, 90, 151, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  color: #fff;
  border-left: 6px solid var(--sky);
}

.contact-map-copy h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
}

.contact-map-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-map-copy .button {
  justify-self: start;
}

#contact-headquarters-map,
#calvert-locations-map .clm-layout {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(30, 90, 151, 0.32);
  background:
    linear-gradient(180deg, rgba(15, 35, 61, 0.78), rgba(5, 17, 32, 0.9)),
    radial-gradient(circle at top left, rgba(93, 143, 199, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(30, 90, 151, 0.12), transparent 28%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(11, 31, 58, 0.18);
}

#contact-headquarters-map {
  min-height: 420px;
  overflow: hidden;
}

#contact-headquarters-map::before,
#calvert-locations-map .clm-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.22)),
    radial-gradient(circle at center, rgba(93, 143, 199, 0.08), transparent 52%);
  pointer-events: none;
  z-index: 390;
}

#contact-headquarters-map .chm-grid,
#calvert-locations-map .clm-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(93, 143, 199, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 143, 199, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  z-index: 395;
}

#contact-headquarters-map .chm-toolbar,
#calvert-locations-map .clm-toolbar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  pointer-events: none;
}

#calvert-locations-map .clm-toolbar-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  pointer-events: auto;
}

#contact-headquarters-map .chm-button,
#calvert-locations-map .clm-button {
  border: 1px solid rgba(93, 143, 199, 0.42);
  border-radius: 0;
  background: rgba(9, 24, 43, 0.92);
  color: #eef4fb;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.68rem 0.92rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(5, 17, 32, 0.24);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  pointer-events: auto;
}

#contact-headquarters-map .chm-button:hover,
#contact-headquarters-map .chm-button:focus-visible,
#calvert-locations-map .clm-button:hover,
#calvert-locations-map .clm-button:focus-visible {
  border-color: rgba(93, 143, 199, 0.82);
  background: rgba(19, 52, 92, 0.98);
  transform: translateY(-1px);
  outline: none;
}

#calvert-locations-map .clm-button.is-active {
  border-color: rgba(93, 143, 199, 0.9);
  background: rgba(30, 90, 151, 0.52);
  color: #ffffff;
}

#contact-headquarters-map .chm-activate,
#calvert-locations-map .clm-activate {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 500;
  transform: translateX(-50%);
  border: 1px solid rgba(93, 143, 199, 0.36);
  border-radius: 0;
  background: rgba(9, 24, 43, 0.88);
  color: #eef4fb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.68rem 0.92rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(5, 17, 32, 0.24);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#contact-headquarters-map.is-active .chm-activate,
#calvert-locations-map .clm-frame.is-active .clm-activate {
  opacity: 0;
}

#contact-headquarters-map.is-inactive::after,
#calvert-locations-map .clm-frame.is-inactive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 32, 0.14);
  pointer-events: none;
  z-index: 405;
}

#contact-headquarters-map .chm-map,
#calvert-locations-map .clm-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: #08101c;
}

#contact-headquarters-map .leaflet-pane.leaflet-tile-pane,
#calvert-locations-map .leaflet-pane.leaflet-tile-pane {
  filter: none;
}

#contact-headquarters-map .leaflet-container,
#calvert-locations-map .leaflet-container,
#contact-headquarters-map .leaflet-tile-container,
#calvert-locations-map .leaflet-tile-container {
  background: #08101c;
}

#contact-headquarters-map .leaflet-control-attribution,
#contact-headquarters-map .leaflet-control-zoom a,
#calvert-locations-map .leaflet-control-attribution,
#calvert-locations-map .leaflet-control-zoom a {
  background: rgba(9, 24, 43, 0.94) !important;
  color: #d7e4f3 !important;
  border-color: rgba(93, 143, 199, 0.42) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#contact-headquarters-map .leaflet-control-attribution a,
#calvert-locations-map .leaflet-control-attribution a {
  color: #8fb7df !important;
}

#calvert-locations-map .clm-layout {
  display: grid;
  gap: 1.25rem;
  padding: 1.1rem;
  overflow: hidden;
  border-color: rgba(185, 214, 242, 0.32);
  background:
    linear-gradient(180deg, rgba(8, 22, 40, 0.78), rgba(5, 17, 32, 0.92)),
    radial-gradient(circle at 8% 0%, rgba(93, 143, 199, 0.18), transparent 30%);
}

#calvert-locations-map .clm-frame {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(30, 90, 151, 0.28);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(93, 143, 199, 0.2), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(30, 90, 151, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(15, 35, 61, 0.74), rgba(5, 17, 32, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 -80px 120px rgba(5, 17, 32, 0.35);
}

#calvert-locations-map .clm-map {
  min-height: 620px;
}

#calvert-locations-map .clm-rail-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-on-dark-muted);
}

#calvert-locations-map .clm-rail-copy .eyebrow {
  color: var(--text-on-dark-strong);
}

#calvert-locations-map .clm-rail-copy h3 {
  margin: 0.2rem 0 0;
  color: var(--text-on-dark-strong);
  font-size: 1.55rem;
  line-height: 1.2;
}

#calvert-locations-map .clm-rail-copy p:last-child {
  max-width: 720px;
  margin: 0.35rem 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.94rem;
}

#calvert-locations-map .clm-rail-controls {
  display: flex;
  gap: 0.55rem;
}

#calvert-locations-map .clm-rail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid rgba(93, 143, 199, 0.42);
  background: rgba(9, 24, 43, 0.78);
  color: var(--text-on-dark-strong);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#calvert-locations-map .clm-rail-button:hover,
#calvert-locations-map .clm-rail-button:focus-visible {
  background: rgba(19, 52, 92, 0.94);
  border-color: rgba(93, 143, 199, 0.84);
  transform: translateY(-1px);
  outline: none;
}

#calvert-locations-map .clm-card-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 285px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.45rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(93, 143, 199, 0.65) rgba(9, 24, 43, 0.48);
}

#calvert-locations-map .clm-card-grid::-webkit-scrollbar {
  height: 10px;
}

#calvert-locations-map .clm-card-grid::-webkit-scrollbar-track {
  background: rgba(9, 24, 43, 0.48);
  border-radius: 0;
}

#calvert-locations-map .clm-card-grid::-webkit-scrollbar-thumb {
  background: rgba(93, 143, 199, 0.65);
  border-radius: 0;
}

#calvert-locations-map .clm-item {
  width: 100%;
  border: 1px solid rgba(93, 143, 199, 0.32);
  border-radius: 0;
  background: rgba(9, 24, 43, 0.74);
  padding: 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#calvert-locations-map .clm-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(93, 143, 199, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

#calvert-locations-map .clm-item:hover,
#calvert-locations-map .clm-item.is-selected {
  border-color: rgba(93, 143, 199, 0.78);
  background: rgba(19, 52, 92, 0.94);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(5, 17, 32, 0.24);
}

#calvert-locations-map .clm-item:hover::before,
#calvert-locations-map .clm-item.is-selected::before {
  opacity: 1;
}

#calvert-locations-map .clm-item-title {
  position: relative;
  color: var(--text-on-dark-strong);
  font-weight: 800;
  font-size: 1rem;
}

#calvert-locations-map .clm-item-type {
  position: relative;
  margin-top: 0.25rem;
  color: var(--text-on-dark-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#calvert-locations-map .clm-item-address {
  position: relative;
  margin-top: 0.75rem;
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

#calvert-locations-map .clm-item-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  color: var(--text-on-dark-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

#calvert-locations-map .clm-item-link:hover,
#calvert-locations-map .clm-item-link:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
  outline: none;
}

.chm-pin,
.clm-pin {
  position: relative;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 2px solid rgba(215, 228, 243, 0.96);
  border-radius: 0;
  transform: rotate(45deg);
  box-shadow: 0 0 0 6px rgba(30, 90, 151, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.chm-pin.is-hq,
.clm-pin.is-hq {
  width: 26px;
  height: 26px;
  background: var(--navy);
  box-shadow: 0 0 0 8px rgba(11, 31, 58, 0.22);
}

.chm-pin::after,
.clm-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 0;
  background: #d7e4f3;
}

.clm-pin.is-selected {
  transform: rotate(45deg) scale(1.12);
  box-shadow: 0 0 0 8px rgba(93, 143, 199, 0.28);
}

.clm-pin.is-dim {
  opacity: 0.42;
  box-shadow: 0 0 0 3px rgba(30, 90, 151, 0.08);
}

.locations-section #calvert-locations-map .clm-layout {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.97), rgba(11, 31, 58, 0.9)),
    radial-gradient(circle at 12% 0%, rgba(93, 143, 199, 0.28), transparent 34%);
  border-color: rgba(30, 90, 151, 0.42);
  box-shadow: 0 24px 52px rgba(5, 17, 32, 0.28);
}

.locations-section #calvert-locations-map .clm-frame,
.locations-section #calvert-locations-map .clm-map {
  min-height: 560px;
}

.contact-map-panel {
  margin-top: 0;
  border-color: rgba(30, 90, 151, 0.26);
  box-shadow: var(--shadow);
}

.contact-map-panel #contact-headquarters-map,
.contact-map-panel #contact-headquarters-map .chm-map {
  min-height: 420px;
}

.contact-hero {
  min-height: clamp(500px, 56vh, 620px);
}

.contact-section {
  padding-top: clamp(70px, 5vw, 92px);
  padding-bottom: clamp(76px, 5.2vw, 96px);
}

.contact-section::before {
  content: none;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.contact-intro-grid .contact-command {
  grid-area: auto;
}

.contact-direct-panel {
  display: grid;
  align-content: center;
  padding: 34px;
  background:
    linear-gradient(180deg, #ffffff, #f5f8fc),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow);
}

.contact-direct-panel h3 {
  max-width: 620px;
  font-size: 2rem;
  font-weight: 900;
}

.contact-direct-panel p {
  max-width: 620px;
  color: var(--muted);
}

.contact-mini-list,
.contact-context-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.contact-mini-list span,
.contact-context-list span {
  padding: 13px 15px;
  border: 1px solid rgba(30, 90, 151, 0.18);
  background: rgba(30, 90, 151, 0.06);
  color: var(--navy);
  font-weight: 800;
}

.contact-route-band {
  margin-top: 24px;
}

.contact-route-band .contact-route-card {
  min-height: 188px;
  padding: 26px;
}

.contact-route-card.primary-route {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.97), rgba(30, 90, 151, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border-color: rgba(185, 214, 242, 0.24);
  border-left-color: var(--sky);
}

.contact-route-card.primary-route .route-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-route-card.primary-route span,
.contact-route-card.primary-route h3,
.contact-route-card.primary-route p,
.contact-route-card.primary-route a {
  color: #fff;
}

.contact-route-card.primary-route p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-form-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(238, 243, 249, 0.98), rgba(255, 255, 255, 0.98));
  color: var(--ink);
  padding-top: clamp(70px, 5vw, 90px);
  padding-bottom: clamp(76px, 5.2vw, 96px);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(460px, 1.3fr);
  gap: 30px;
  align-items: center;
}

.contact-form-copy {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 252, 0.9)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid rgba(30, 90, 151, 0.16);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.contact-form-copy h2 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(2.2rem, 3.2vw, 2.85rem);
  font-weight: 900;
}

.contact-form-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form-copy .eyebrow {
  color: var(--accent);
}

.contact-form-copy .contact-context-list span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(30, 90, 151, 0.14);
  color: var(--navy);
}

.contact-form-copy .contact-context-list strong {
  color: var(--accent);
}

.contact-form-card {
  padding: 28px;
  grid-template-columns: 1fr;
  border-left-width: 6px;
}

.contact-form-card::before {
  content: none;
}

.contact-form-card > .eyebrow,
.contact-form-card > h2,
.contact-form-card > p,
.contact-form-card .form-grid {
  grid-column: auto;
  grid-row: auto;
}

.contact-form-card .form-grid {
  margin-top: 18px;
}

.contact-map-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #ffffff, #eef3f9);
  padding-top: clamp(70px, 5vw, 90px);
  padding-bottom: clamp(76px, 5.2vw, 96px);
}

.contact-map-section .contact-map-panel {
  grid-template-columns: minmax(340px, 0.36fr) minmax(0, 0.64fr);
}

.contact-map-section .contact-map-copy {
  padding: 34px;
  border-left-color: var(--accent);
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.98), rgba(30, 90, 151, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
}

#ways-to-work .section-head {
  max-width: 980px;
}

#ways-to-work .engagement-grid {
  margin-top: 12px;
}

#ways-to-work .engagement-card {
  min-height: 320px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.94)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
}

#ways-to-work .engagement-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.94), rgba(30, 90, 151, 0.78)),
    url("../../assets/images/rivet-joint.jpg") center / cover no-repeat;
  border-color: rgba(185, 214, 242, 0.26);
  border-left-color: var(--sky);
}

#ways-to-work .engagement-card:nth-child(2) h3,
#ways-to-work .engagement-card:nth-child(2) p,
#ways-to-work .engagement-card:nth-child(2) span {
  color: #fff;
}

#ways-to-work .engagement-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.84);
}

#ways-to-work .engagement-card:nth-child(2) .route-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.outcomes-section {
  background:
    linear-gradient(180deg, rgba(238, 243, 249, 0.98), rgba(255, 255, 255, 0.97)),
    radial-gradient(circle at 88% 10%, rgba(93, 143, 199, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30, 90, 151, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 112px 112px, 112px 112px;
}

.outcomes-layout {
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.outcomes-copy {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 32px;
  align-items: center;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.95)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
  border: 1px solid rgba(30, 90, 151, 0.14);
  border-left: 6px solid var(--accent);
  box-shadow: var(--shadow-soft);
}

.outcomes-copy h2 {
  max-width: 760px;
}

.outcomes-copy .eyebrow,
.outcomes-copy h2,
.outcomes-copy > p {
  grid-column: 1;
}

.outcomes-copy .section-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-content: flex-end;
  margin-top: 0;
}

.outcomes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.outcome-card {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  align-content: start;
  min-height: 100%;
  padding: 30px;
}

.outcome-card p {
  grid-column: auto;
}

.locations-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(93, 143, 199, 0.18), transparent 28%),
    linear-gradient(135deg, #071529, #0b1f3a 56%, #123d69);
}

.locations-section #calvert-locations-map .clm-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr);
  grid-template-areas:
    "map rail"
    "map cards";
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.locations-section #calvert-locations-map .clm-frame {
  grid-area: map;
  min-height: 620px;
  border: 0;
  border-right: 1px solid rgba(185, 214, 242, 0.24);
}

.locations-section #calvert-locations-map .clm-map {
  min-height: 620px;
}

.locations-section #calvert-locations-map .clm-rail-header {
  grid-area: rail;
  display: grid;
  align-content: end;
  padding: 28px;
  min-height: 250px;
  border-bottom: 1px solid rgba(185, 214, 242, 0.18);
  background:
    linear-gradient(135deg, rgba(7, 21, 41, 0.92), rgba(30, 90, 151, 0.56)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
}

.locations-section #calvert-locations-map .clm-card-grid {
  grid-area: cards;
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 370px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  scroll-snap-type: y proximity;
}

.locations-section #calvert-locations-map .clm-item {
  border-width: 0 0 1px;
  border-color: rgba(93, 143, 199, 0.26);
  min-height: 160px;
  scroll-snap-align: start;
}

.career-proof-card,
.job-path-card,
.career-value-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.95)),
    linear-gradient(90deg, rgba(30, 90, 151, 0.055) 1px, transparent 1px);
  background-size: auto, 84px 84px;
}

.site-footer {
  background: #071529;
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.site-footer img {
  width: 210px;
  padding: 0;
  background: transparent;
  border-radius: var(--radius);
  filter: brightness(0) invert(1);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 9px;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.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;
}

@media (max-width: 1060px) {
  html.mobile-menu-open,
  html.mobile-menu-open body {
    overflow: hidden;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .section-head h2 {
    font-size: 2.85rem;
  }

  .outcomes-copy h2,
  .history-copy h2,
  .locations-intro h2,
  .benefits-copy h2,
  .capability-preview-copy h2,
  .support-command-panel h2,
  .veterans-section h2 {
    font-size: 2.55rem;
  }

  .split h2,
  .contact-card h2 {
    font-size: 2rem;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .mobile-panel {
    position: fixed;
    inset: 76px 0 auto 0;
    height: auto;
    max-height: calc(100vh - 76px);
    z-index: 45;
    display: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px 16px max(28px, env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid rgba(11, 31, 58, 0.1);
    box-shadow: none;
  }

  .mobile-panel.is-open {
    display: grid;
  }

  .mobile-panel a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: var(--navy);
    background: transparent;
    border: 0;
    text-decoration: none;
    font: inherit;
    font-weight: 800;
    text-align: left;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
  }

  .mobile-panel a[aria-current="page"] {
    color: var(--accent);
  }

  .mobile-nav-group {
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: stretch;
    gap: 0;
  }

  .mobile-panel .mobile-nav-row a {
    border-bottom: 0;
  }

  .mobile-accordion-toggle {
    display: grid;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
  }

  .mobile-accordion-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.18s ease;
  }

  .mobile-nav-group.is-open .mobile-accordion-toggle {
    color: var(--accent);
  }

  .mobile-nav-group.is-open .mobile-accordion-toggle span {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-subnav {
    display: none;
    padding: 0 0 12px 14px;
  }

  .mobile-nav-group.is-open .mobile-subnav {
    display: grid;
  }

  .mobile-panel .mobile-subnav a {
    padding: 9px 0 9px 14px;
    border-bottom: 0;
    border-left: 3px solid rgba(30, 90, 151, 0.25);
    color: var(--steel);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-panel .mobile-subnav a[aria-current="page"],
  .mobile-panel .mobile-subnav a:hover {
    color: var(--accent);
    border-left-color: var(--accent);
  }

  .mobile-panel .mobile-cta {
    margin-top: 12px;
    padding: 13px 14px !important;
    background: var(--accent) !important;
    color: #fff !important;
    text-align: center !important;
    border-bottom: 0 !important;
  }

  .four,
  .icon-row,
  .temporary-proof-grid,
  .proof-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three,
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .five > * {
    grid-column: span 2;
  }

  .five > :nth-child(4):nth-last-child(2) {
    grid-column: 1 / span 3;
  }

  .five > :nth-child(5):last-child {
    grid-column: 4 / span 3;
  }

  .outcomes-layout,
  .mission-proof,
  .capability-preview-layout,
  .mission-cred-layout,
  .history-layout,
  .locations-intro,
  .benefits-layout,
  .support-showcase,
  .contact-system,
  .contact-intro-grid,
  .contact-form-layout,
  .contact-map-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .outcomes-copy {
    grid-template-columns: 1fr;
  }

  .outcomes-copy .section-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 18px;
  }

  .history-layout {
    grid-template-areas:
      "copy"
      "stack"
      "image";
  }

  .contact-system {
    grid-template-areas:
      "intro"
      "routes"
      "form"
      "map";
  }

  .contact-map-section .contact-map-panel {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .job-path-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bd-route-list {
    grid-template-columns: 1fr;
  }

  .trust-card.primary {
    grid-column: span 1;
  }

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

  .career-value-card {
    grid-column: auto;
  }

  .customer-logo-grid,
  .customer-roster-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-proof-grid,
  .contact-route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-route-card:first-child {
    grid-column: auto;
  }

  .contact-form-card {
    position: static;
  }

  .contact-command {
    min-height: 240px;
  }

  .locations-section #calvert-locations-map .clm-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "rail"
      "cards";
  }

  .locations-section #calvert-locations-map .clm-frame {
    border-right: 0;
    border-bottom: 1px solid rgba(185, 214, 242, 0.24);
  }

  .locations-section #calvert-locations-map .clm-rail-header {
    min-height: auto;
  }

  .locations-section #calvert-locations-map .clm-card-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 275px);
    grid-template-columns: none;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.45rem;
    scroll-snap-type: x proximity;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #calvert-locations-map .clm-card-grid {
    grid-auto-columns: minmax(245px, 275px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --site-gutter-total: 32px;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 158px;
  }

  .mobile-panel {
    inset-block-start: 74px;
    height: auto;
    max-height: calc(100vh - 74px);
  }

  .hero,
  .hero.hero-short {
    min-height: 560px;
  }

  .hero-media img {
    object-position: var(--hero-mobile-position, var(--hero-position, center));
  }

  .hero-content {
    padding: 56px 0 42px;
  }

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

  .hero.government-hero h1 {
    max-width: 100%;
    font-size: clamp(2.28rem, 10.4vw, 2.55rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .section-head h2 {
    font-size: 2.08rem;
  }

  .outcomes-copy h2,
  .history-copy h2,
  .locations-intro h2,
  .benefits-copy h2,
  .capability-preview-copy h2,
  .support-command-panel h2,
  .veterans-section h2 {
    font-size: 2.05rem;
  }

  .split h2,
  .contact-card h2 {
    font-size: 1.72rem;
  }

  .section {
    padding: 68px 0;
  }

  .section.compact {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .card-body,
  .icon-card,
  .notice {
    padding: 20px;
  }

  .hero-actions,
  .section-actions {
    margin-top: 22px;
  }

  .statement-card {
    min-height: auto;
    padding: 24px;
  }

  .feature-image img {
    height: 320px;
  }

  .logo-tile {
    min-height: 132px;
  }

  .two,
  .three,
  .four,
  .five,
  .icon-row,
  .glance-stat-grid,
  .engagement-grid,
  .credibility-panel,
  .credibility-image-stack,
  .capability-preview-grid,
  .statement-grid,
  .values-grid,
  .logo-grid,
  .customer-logo-grid,
  .proof-split,
  .temporary-proof-grid,
  .outcomes-grid,
  .trust-grid,
  .job-path-grid,
  .career-value-grid,
  .career-proof-grid,
  .support-grid,
  .contact-route-grid,
  .location-stats,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mission-proof-copy h2,
  .foundation-head h2 {
    font-size: 2.05rem;
  }

  .mission-proof-media .feature-image img,
  .credibility-image-stack img,
  .credibility-image-stack img:first-child,
  .capability-teaser,
  .history-image-card img {
    height: 300px;
  }

  .mission-proof-media .feature-image,
  .mission-proof-media .feature-image img {
    min-height: 300px;
  }

  .mission-proof-note {
    position: static;
    border-top: 0;
    border-left: 6px solid var(--sky);
  }

  .customer-roster-columns {
    grid-template-columns: 1fr;
  }

  .customer-roster {
    grid-template-columns: 1fr;
  }

  .foundation-copy {
    padding: 0 8px;
  }

  .capability-teaser {
    min-height: 320px;
  }

  .capability-teaser-body,
  .support-command-panel,
  .support-card {
    padding: 22px;
  }

  .plane-card,
  .capability-card {
    grid-template-rows: auto 1fr;
  }

  .plane-card img,
  .capability-card img {
    height: 220px;
  }

  .proof-panel {
    min-height: 260px;
    padding: 24px;
  }

  .proof-panel h3 {
    font-size: 1.58rem;
  }

  .five > * {
    grid-column: auto;
  }

  .five > :nth-child(4):nth-last-child(2),
  .five > :nth-child(5):last-child {
    grid-column: auto;
  }

  .outcome-card,
  .benefit-list,
  .benefit-list article {
    grid-template-columns: 1fr;
  }

  .benefit-list article:last-child,
  .contact-route-card:first-child {
    grid-column: auto;
  }

  .outcome-card p {
    grid-column: auto;
  }

  .trust-card.primary {
    grid-column: auto;
  }

  .history-section .timeline {
    padding: 20px;
  }

  .location-stats span {
    min-height: auto;
  }

  .benefits-image img {
    min-height: 300px;
  }

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

  .leader-card img {
    height: 250px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .button {
    width: 100%;
  }

  #contact-headquarters-map,
  #contact-headquarters-map .chm-map,
  #calvert-locations-map .clm-frame,
  #calvert-locations-map .clm-map {
    min-height: 430px;
  }

  .locations-section #calvert-locations-map .clm-frame,
  .locations-section #calvert-locations-map .clm-map {
    min-height: 340px;
  }

  .contact-map-panel {
    grid-template-columns: 1fr;
  }

  .contact-map-section .contact-map-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-form-card .form-grid {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .contact-form-card .form-grid label:nth-child(5),
  .contact-form-card .form-grid button {
    grid-column: auto;
  }

  .contact-command {
    min-height: auto;
    padding: 24px;
  }

  .contact-direct-panel,
  .contact-form-card {
    padding: 24px;
  }

  .contact-direct-panel h3,
  .contact-form-copy h2 {
    font-size: 2rem;
  }

  .contact-route-band .contact-route-card {
    min-height: auto;
    padding: 24px;
  }

  .contact-form-copy .contact-context-list span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-map-copy {
    padding: 22px;
  }

  #calvert-locations-map .clm-layout {
    padding: 0.85rem;
  }

  #calvert-locations-map .clm-frame {
    padding: 0.7rem;
  }

  #calvert-locations-map .clm-toolbar {
    position: static;
    justify-content: stretch;
    margin-bottom: 0.7rem;
  }

  #calvert-locations-map .clm-toolbar-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  #calvert-locations-map .clm-button {
    width: 100%;
    padding: 0.62rem 0.42rem;
    font-size: 0.68rem;
  }

  #contact-headquarters-map .chm-toolbar,
  #contact-headquarters-map .chm-toolbar {
    top: 0.7rem;
    right: 0.7rem;
    left: 0.7rem;
  }

  #contact-headquarters-map .chm-activate,
  #calvert-locations-map .clm-activate {
    width: calc(100% - 1.4rem);
    text-align: center;
  }

  #calvert-locations-map .clm-card-grid {
    display: block;
    max-height: 360px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.25rem;
  }

  #calvert-locations-map .clm-item + .clm-item {
    margin-top: 0.75rem;
  }

  #calvert-locations-map .clm-item {
    scroll-snap-align: none;
  }

  #calvert-locations-map .clm-rail-controls {
    justify-content: flex-start;
  }
}
