:root {
  --navy: #061d36;
  --navy-2: #0a2c4e;
  --ink: #10283d;
  --blue: #087fca;
  --sky: #25a9ea;
  --teal: #16b7ad;
  --yellow: #ffe344;
  --mist: #eaf4f8;
  --pale: #f5f9fb;
  --line: #d5e2e8;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: white;
  color: var(--navy);
  border-radius: 6px;
}
.skip-link:focus {
  top: 16px;
}
.utility-bar {
  background: #031426;
  color: #a9bfd0;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-inner nav {
  display: flex;
  gap: 24px;
}
.utility-inner a:hover,
.utility-inner a:focus {
  color: white;
}
.site-header {
  background: rgba(6, 29, 54, 0.98);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand .custom-logo-link {
  display: flex;
  align-items: center;
}
.brand .custom-logo,
.brand-logo {
  max-width: 225px;
  max-height: 53px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--sky), var(--teal));
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}
.brand b {
  display: block;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.brand small {
  display: block;
  margin-top: 1px;
  color: #a9bfd0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.primary-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  color: #c9d7e2;
}
.primary-nav a:hover,
.primary-nav a:focus {
  color: white;
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  padding: 9px 12px;
  border-radius: 5px;
  font: inherit;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  background: var(--blue);
  color: white !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 75, 135, 0.24);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.button:hover,
.button:focus {
  background: #096da9;
  transform: translateY(-1px);
}
.button-small {
  min-height: 42px;
  padding: 0 17px;
}
.button-inverse {
  background: white;
  color: var(--navy) !important;
  box-shadow: none;
}
.button-inverse:hover,
.button-inverse:focus {
  background: var(--mist);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 73% 44%,
      rgba(18, 147, 203, 0.22),
      transparent 31%
    ),
    linear-gradient(120deg, #061d36 0%, #082846 72%, #073052 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent 0, #000 60%, #000 100%);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 84px;
  align-items: center;
  min-height: 630px;
  padding: 72px 0 82px;
}
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8cd5f1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--yellow);
}
.eyebrow.dark {
  color: #307894;
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 700;
}
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-intro {
  max-width: 710px;
  margin: 27px 0 0;
  color: #c1d2df;
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
}
.intelligence-card {
  border: 1px solid rgba(122, 213, 239, 0.28);
  border-radius: 15px;
  padding: 27px;
  background: rgba(5, 26, 47, 0.82);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7ccfeb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.live-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #74c9b9;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
}
.live-dot:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48d3aa;
  box-shadow: 0 0 0 5px rgba(72, 211, 170, 0.1);
}
.intelligence-card h2 {
  margin: 30px 0 10px;
  font-size: 29px;
  letter-spacing: -0.035em;
}
.intelligence-card > p {
  margin: 0;
  color: #9fb6c7;
  line-height: 1.6;
  font-size: 14px;
}
.signal-stack {
  display: grid;
  gap: 8px;
  margin-top: 25px;
}
.signal-stack div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 7px;
}
.signal-stack span {
  color: #5da6c1;
  font-size: 10px;
}
.signal-stack b {
  font-size: 12px;
}
.signal-stack i {
  color: #80cdbc;
  font-size: 10px;
  font-style: normal;
}
.pulse-line {
  height: 40px;
  margin-top: 15px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pulse-line span {
  width: 3px;
  background: var(--yellow);
  border-radius: 3px 3px 0 0;
  opacity: 0.75;
}
.pulse-line span:nth-child(1) {
  height: 11px;
}
.pulse-line span:nth-child(2) {
  height: 23px;
}
.pulse-line span:nth-child(3) {
  height: 17px;
}
.pulse-line span:nth-child(4) {
  height: 32px;
}
.pulse-line span:nth-child(5) {
  height: 26px;
}
.trust-row {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 47px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #adbfcc;
  font-size: 12px;
}
.trust-row span {
  color: #6d899d;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
}
.trust-row strong {
  color: #c5d4de;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.section {
  padding: 110px 0;
}
.section-light,
.pathway-section {
  background: var(--pale);
  color: var(--ink);
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 110px;
  align-items: end;
}
.section-heading h2,
.awxp-section h2,
.outcomes h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.section-heading > p {
  margin: 0 0 3px;
  color: #567084;
  line-height: 1.75;
  font-size: 16px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 66px;
  border: 1px solid var(--line);
  background: white;
}
.pillar-grid article {
  position: relative;
  min-height: 340px;
  padding: 35px;
  border-right: 1px solid var(--line);
}
.pillar-grid article:last-child {
  border-right: 0;
}
.pillar-number {
  position: absolute;
  right: 25px;
  top: 25px;
  color: #a5bbc8;
  font-size: 10px;
}
.pillar-icon {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 1px solid #b7d9e4;
  background: var(--mist);
  color: #177b9f;
  font-weight: 800;
  font-size: 12px;
}
.pillar-grid h3 {
  margin: 31px 0 13px;
  font-size: 22px;
  letter-spacing: -0.025em;
}
.pillar-grid p {
  min-height: 80px;
  margin: 0;
  color: #647b8b;
  line-height: 1.65;
  font-size: 14px;
}
.pillar-grid a {
  display: inline-block;
  margin-top: 24px;
  color: #0874ae;
  font-size: 12px;
  font-weight: 800;
}
.awxp-section {
  background: linear-gradient(125deg, #071d32, #092b48);
}
.awxp-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 120px;
  align-items: center;
}
.section-intro {
  margin: 24px 0 0;
  max-width: 610px;
  color: #aac0cf;
  font-size: 17px;
  line-height: 1.7;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
  display: grid;
  gap: 21px;
}
.check-list li {
  position: relative;
  padding-left: 35px;
  display: grid;
  gap: 5px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 183, 173, 0.14);
  color: #5ed5c6;
  font-size: 11px;
}
.check-list b {
  font-size: 14px;
}
.check-list span {
  color: #91aabd;
  font-size: 13px;
  line-height: 1.5;
}
.awxp-button {
  margin-top: 35px;
}
.system-map {
  position: relative;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 153, 193, 0.17),
    transparent 58%
  );
}
.system-map:before,
.system-map:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(72, 188, 217, 0.18);
  inset: 14%;
}
.system-map:after {
  inset: 30%;
}
.map-center {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a84b9, #0b5d91);
  box-shadow: 0 0 55px rgba(17, 153, 204, 0.3);
}
.map-center span {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.map-center small {
  text-align: center;
  color: #c7ebf4;
  line-height: 1.35;
}
.map-node {
  position: absolute;
  min-width: 112px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: #0c2a46;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}
.map-node b,
.map-node small {
  display: block;
}
.map-node b {
  font-size: 12px;
}
.map-node small {
  margin-top: 4px;
  color: #7ea7bc;
  font-size: 10px;
}
.node-1 {
  left: 7%;
  top: 21%;
}
.node-2 {
  right: 3%;
  top: 22%;
}
.node-3 {
  left: 7%;
  bottom: 18%;
}
.node-4 {
  right: 3%;
  bottom: 19%;
}
.centered {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.centered .eyebrow {
  justify-content: center;
}
.centered > p:last-child {
  margin-top: 18px;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
}
.audience-card {
  min-height: 490px;
  padding: 52px;
  color: white;
}
.audience-card.government {
  background: linear-gradient(145deg, #0a6f9f, #074a75);
}
.audience-card.employer {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 0;
}
.audience-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #99e5ef;
}
.employer .audience-label {
  color: #1b829f;
}
.audience-card h3 {
  margin: 28px 0 30px;
  max-width: 460px;
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}
.audience-card li {
  position: relative;
  padding-left: 17px;
  font-size: 12px;
}
.audience-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54d5c4;
}
.pathway-section {
  background: #fff;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}
.pathway-grid article {
  padding: 35px;
  border: 1px solid var(--line);
  background: var(--pale);
}
.pathway-grid span {
  color: #147b9c;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.pathway-grid h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.pathway-grid p {
  color: #637b8b;
  font-size: 14px;
  line-height: 1.65;
}
.outcomes {
  background: #071c31;
}
.outcomes-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.metric-grid div {
  min-height: 135px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.metric-grid div:nth-child(2n) {
  border-right: 0;
}
.metric-grid div:nth-child(n + 3) {
  border-bottom: 0;
}
.metric-grid b,
.metric-grid span {
  display: block;
}
.metric-grid b {
  color: var(--yellow);
  font-size: 17px;
}
.metric-grid span {
  margin-top: 13px;
  color: #93aabd;
  font-size: 12px;
  line-height: 1.55;
}
.cta-section {
  padding: 85px 0;
  background: linear-gradient(110deg, #eaf6f8, #fff);
  color: var(--ink);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 100px;
  align-items: center;
}
.cta-inner > div:last-child p {
  color: #5e7586;
  line-height: 1.65;
  margin: 0 0 25px;
}
.site-footer {
  padding: 42px 0;
  background: #031426;
  color: #869eae;
}
.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  margin: 0;
  color: white;
}
.footer-row > p {
  font-size: 10px;
  letter-spacing: 0.04em;
}
.footer-row > p:nth-child(2) {
  text-align: center;
}
.footer-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b8cad7;
  font-size: 12px;
  font-weight: 700;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.content-main {
  min-height: 65vh;
  background: var(--pale);
  color: var(--ink);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(18, 147, 203, 0.16),
      transparent 28%
    ),
    linear-gradient(125deg, #071d32, #0a3556);
  color: white;
}
.page-hero:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
  height: 4px;
  background: var(--yellow);
}
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.content-shell {
  padding-top: 75px;
  padding-bottom: 90px;
}
.prose {
  max-width: none;
  font-size: 17px;
  line-height: 1.8;
  color: #425d70;
}
.prose > p {
  max-width: 900px;
}
.prose h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.prose h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.prose li {
  margin-bottom: 10px;
}
.prose a {
  color: #0874ae;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-card {
  padding: 32px;
  margin-bottom: 20px;
  background: white;
  border: 1px solid var(--line);
}
.ah-lead {
  max-width: 980px !important;
  margin: 0;
  font-size: 21px;
  line-height: 1.72;
  color: #294b63;
}
.ah-kicker {
  margin: 0 0 12px !important;
  color: #177b9f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ah-section-block {
  margin-top: 78px;
}
.ah-section-heading {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}
.ah-section-heading > .ah-kicker {
  grid-column: 1/-1;
  margin-bottom: -53px !important;
}
.ah-section-heading h2 {
  max-width: 600px;
  font-size: 42px;
}
.ah-section-heading > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #5d7484;
  line-height: 1.65;
}
.ah-component-grid,
.ah-capability-grid,
.ah-role-grid,
.ah-metric-grid {
  display: grid;
  background: white;
  border: 1px solid var(--line);
}
.ah-component-grid {
  grid-template-columns: repeat(4, 1fr);
}
.ah-capability-grid,
.ah-metric-grid {
  grid-template-columns: repeat(3, 1fr);
}
.ah-role-grid {
  grid-template-columns: repeat(3, 1fr);
}
.ah-component-grid article,
.ah-capability-grid article,
.ah-role-grid article,
.ah-metric-grid article {
  position: relative;
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ah-component-grid article:nth-child(4n),
.ah-capability-grid article:nth-child(3n),
.ah-role-grid article:nth-child(3n),
.ah-metric-grid article:nth-child(3n) {
  border-right: 0;
}
.ah-component-grid article:nth-last-child(-n + 3),
.ah-capability-grid article:nth-last-child(-n + 3),
.ah-role-grid article:nth-last-child(-n + 3),
.ah-metric-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.ah-component-grid article > span,
.ah-capability-grid article > span,
.ah-role-grid article > span,
.ah-metric-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mist);
  color: #187e9e;
  font-size: 10px;
  font-weight: 800;
}
.ah-component-grid h3,
.ah-capability-grid h3,
.ah-role-grid h3,
.ah-metric-grid h3 {
  margin: 25px 0 10px;
  font-size: 21px;
}
.ah-component-grid p,
.ah-capability-grid p,
.ah-role-grid p,
.ah-metric-grid p {
  margin: 0;
  color: #647b8b;
  font-size: 14px;
  line-height: 1.65;
}
.ah-accent-card {
  border-top: 4px solid var(--yellow) !important;
  background: linear-gradient(145deg, #fffde7, #fff) !important;
}
.ah-governance-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
  margin-top: 72px;
  padding: 48px 52px;
  border-left: 6px solid var(--yellow);
  background: linear-gradient(125deg, #061d36, #0a3556);
  color: white;
}
.ah-governance-panel h2 {
  color: white;
  font-size: 39px;
}
.ah-governance-panel > p {
  margin: 0;
  color: #b8cad7;
  line-height: 1.72;
}
.ah-governance-panel .ah-kicker {
  color: #80d6ed;
}
.ah-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
  padding: 45px 52px;
  background: white;
  border: 1px solid var(--line);
}
.ah-cta-panel h2 {
  font-size: 36px;
}
.ah-cta-panel p:not(.ah-kicker) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #647b8b;
}
.ah-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px !important;
  border-radius: 6px;
  background: var(--blue);
  color: white !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 89, 150, 0.2);
}
.ah-button:hover,
.ah-button:focus {
  background: #096da9;
}
.ah-definition {
  padding: 36px 40px;
  border-left: 6px solid var(--yellow);
  background: white;
  box-shadow: 0 18px 48px rgba(9, 44, 74, 0.08);
}
.ah-definition > p:last-child {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.5;
}
.ah-definition + .ah-lead {
  margin-top: 45px;
}
.ah-not-panel {
  margin-top: 62px;
  padding: 40px;
  border: 1px solid #b8d8e3;
  background: var(--mist);
}
.ah-not-panel h2 {
  font-size: 35px;
}
.ah-not-panel > p:last-child {
  max-width: 900px;
  margin: 15px 0 0;
}
.ah-process-flow {
  counter-reset: none;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: white;
}
.ah-process-flow li {
  position: relative;
  min-height: 178px;
  margin: 0;
  padding: 27px 23px;
  border-right: 1px solid var(--line);
}
.ah-process-flow li:last-child {
  border-right: 0;
}
.ah-process-flow span,
.ah-process-flow b,
.ah-process-flow small {
  display: block;
}
.ah-process-flow span {
  color: #1681a1;
  font-size: 10px;
  font-weight: 800;
}
.ah-process-flow b {
  margin-top: 23px;
  color: var(--ink);
  font-size: 18px;
}
.ah-process-flow small {
  margin-top: 8px;
  color: #667d8d;
  font-size: 12px;
  line-height: 1.5;
}
.ah-process-flow li:after {
  content: "→";
  position: absolute;
  right: -9px;
  top: 50%;
  z-index: 2;
  color: var(--blue);
  font-weight: 900;
}
.ah-process-flow li:last-child:after {
  display: none;
}
.ah-process-four {
  grid-template-columns: repeat(4, 1fr);
}
.ah-pathway-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}
.ah-pathway-cards article {
  min-height: 350px;
  padding: 35px;
  border: 1px solid var(--line);
  background: white;
}
.ah-pathway-cards span {
  color: #147b9c;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.ah-pathway-cards h2 {
  margin-top: 30px;
  font-size: 27px;
}
.ah-pathway-cards p {
  color: #637b8b;
  font-size: 14px;
  line-height: 1.75;
}
.ah-about-intro {
  position: relative;
  padding: 42px 45px;
  background: white;
  border: 1px solid var(--line);
}
.ah-about-intro:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  background: var(--yellow);
}
.ah-about-intro .ah-lead {
  max-width: 960px !important;
}
.ah-values-section {
  margin-top: 75px;
  padding: 55px;
  background: #e9f3f7;
}
.ah-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: #cddde4;
}
.ah-values-grid article {
  min-height: 180px;
  padding: 30px;
  background: white;
}
.ah-values-grid b {
  display: block;
  color: var(--ink);
  font-size: 19px;
}
.ah-values-grid b:before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--yellow);
}
.ah-values-grid p {
  margin: 10px 0 0;
  color: #647b8b;
  font-size: 14px;
  line-height: 1.6;
}
.ah-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 55px;
}
.ah-contact-grid section {
  padding: 48px;
  background: white;
  border: 1px solid var(--line);
}
.ah-contact-grid h2 {
  font-size: 37px;
}
.ah-contact-grid section > p {
  max-width: 640px;
}
.ah-contact-grid .ah-button {
  margin-top: 18px;
}
.ah-contact-support {
  background: linear-gradient(140deg, #061d36, #0a3556) !important;
  color: white;
}
.ah-contact-support h2 {
  color: white;
}
.ah-contact-support p {
  color: #b8cad7;
}
.ah-contact-support .ah-kicker {
  color: #80d6ed;
}
.ah-text-link {
  display: block;
  margin-top: 22px;
  color: white !important;
  font-weight: 800;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 8px;
}
.ah-form-section {
  margin-top: 70px;
  padding: 50px;
  background: white;
  border: 1px solid var(--line);
}
.ah-form-section .ah-section-heading {
  margin-bottom: 35px;
}
.ah-partner-form {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.ah-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ah-partner-form label {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.ah-partner-form label > span[aria-hidden="true"] {
  color: #a92f2f;
}
.ah-partner-form input,
.ah-partner-form select,
.ah-partner-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #b9cbd4;
  border-radius: 5px;
  background: #fbfdfe;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}
.ah-partner-form input,
.ah-partner-form select {
  min-height: 49px;
}
.ah-partner-form input:focus,
.ah-partner-form select:focus,
.ah-partner-form textarea:focus {
  outline: 3px solid rgba(37, 169, 234, 0.22);
  border-color: var(--blue);
}
.ah-form-wide {
  grid-column: 1/-1;
}
.ah-form-consent {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px;
  font-weight: 600 !important;
  color: #536c7d !important;
}
.ah-form-consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 4px;
}
.ah-form-consent a {
  color: #0874ae;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ah-not-found {
  max-width: 850px;
  padding: 45px;
  background: white;
  border: 1px solid var(--line);
  border-right: 12px solid var(--yellow);
}
.ah-not-found h2 {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.ah-not-found p:not(.ah-kicker) {
  max-width: 680px;
  color: #536c7d;
  font-size: 18px;
  line-height: 1.7;
}
.ah-not-found-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}
.ah-partner-form .ah-button {
  margin-top: 28px;
  border: 0;
  cursor: pointer;
}
.ah-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.ah-form-notice {
  margin-bottom: 25px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: var(--mist);
  color: var(--ink);
  font-weight: 700;
}
.ah-form-notice.success {
  border-color: #1b9c80;
}
.ah-form-notice.error {
  border-color: #b34545;
  background: #fff1f1;
}
.ah-note {
  margin-top: 30px;
  padding: 18px 22px;
  background: #fff9d5;
  border-left: 4px solid var(--yellow);
}
@media (max-width: 1050px) {
  .primary-nav .menu {
    gap: 14px;
    font-size: 11px;
  }
  .hero-layout,
  .awxp-layout,
  .split-heading,
  .outcomes-layout,
  .cta-inner,
  .ah-section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ah-section-heading > .ah-kicker {
    grid-column: auto;
    margin-bottom: -12px !important;
  }
  .hero-layout {
    padding-top: 70px;
  }
  .trust-row {
    flex-wrap: wrap;
    gap: 18px 30px;
    padding: 24px 0;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pillar-grid article:last-child {
    border-bottom: 0;
  }
  .system-map {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .audience-card {
    padding: 38px;
  }
  .pathway-grid,
  .ah-pathway-cards {
    grid-template-columns: 1fr;
  }
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
  }
  .footer-row > p:nth-child(2) {
    text-align: center;
  }
  .footer-nav {
    grid-column: auto;
  }
  .ah-component-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ah-component-grid article:nth-child(4n) {
    border-right: 1px solid var(--line);
  }
  .ah-component-grid article:nth-child(2n) {
    border-right: 0;
  }
  .ah-component-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .ah-component-grid article:last-child {
    border-bottom: 0;
  }
  .ah-capability-grid,
  .ah-metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ah-capability-grid article:nth-child(3n),
  .ah-metric-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .ah-capability-grid article:nth-child(2n),
  .ah-metric-grid article:nth-child(2n) {
    border-right: 0;
  }
  .ah-capability-grid article:nth-last-child(-n + 3),
  .ah-metric-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .ah-capability-grid article:nth-last-child(-n + 2),
  .ah-metric-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
@media (max-width: 830px) {
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #061d36;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 24px;
  }
  .primary-nav.is-open {
    display: block;
  }
  .primary-nav .menu {
    display: grid;
    gap: 0;
  }
  .primary-nav .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .primary-nav .menu a {
    display: block;
    padding: 14px 0;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-card.employer {
    border-left: 1px solid var(--line);
    border-top: 0;
  }
}
@media (max-width: 700px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }
  .utility-inner > span {
    display: none;
  }
  .utility-inner {
    justify-content: center;
  }
  .nav-row {
    min-height: 72px;
  }
  .brand b {
    font-size: 18px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 48px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading h2,
  .awxp-section h2,
  .outcomes h2,
  .cta-section h2 {
    font-size: 38px;
  }
  .audience-card {
    min-height: auto;
    padding: 35px 27px;
  }
  .audience-card h3 {
    font-size: 27px;
  }
  .audience-card ul {
    grid-template-columns: 1fr;
  }
  .system-map {
    height: 390px;
  }
  .map-node {
    min-width: 98px;
    padding: 9px 11px;
  }
  .map-center {
    width: 118px;
    height: 118px;
  }
  .map-center span {
    font-size: 22px;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .metric-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .metric-grid div:last-child {
    border-bottom: 0 !important;
  }
  .page-hero {
    padding: 60px 0;
  }
  .page-hero h1 {
    font-size: 43px;
  }
  .content-shell {
    padding-top: 50px;
  }
  .ah-lead {
    font-size: 18px;
  }
  .ah-section-block {
    margin-top: 58px;
  }
  .ah-component-grid,
  .ah-capability-grid,
  .ah-role-grid,
  .ah-metric-grid,
  .ah-values-grid,
  .ah-form-grid {
    grid-template-columns: 1fr;
  }
  .ah-component-grid article,
  .ah-capability-grid article,
  .ah-role-grid article,
  .ah-metric-grid article {
    min-height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .ah-component-grid article:last-child,
  .ah-capability-grid article:last-child,
  .ah-role-grid article:last-child,
  .ah-metric-grid article:last-child {
    border-bottom: 0 !important;
  }
  .ah-governance-panel,
  .ah-cta-panel,
  .ah-contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 28px;
  }
  .ah-process-flow,
  .ah-process-four {
    grid-template-columns: 1fr;
  }
  .ah-process-flow li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ah-process-flow li:last-child {
    border-bottom: 0;
  }
  .ah-process-flow li:after {
    content: "↓";
    right: 25px;
    top: auto;
    bottom: -13px;
  }
  .ah-definition,
  .ah-about-intro {
    padding: 30px 26px;
  }
  .ah-definition > p:last-child {
    font-size: 21px;
  }
  .ah-values-section {
    padding: 35px 25px;
  }
  .ah-values-grid article {
    min-height: auto;
  }
  .ah-contact-grid {
    padding: 0;
  }
  .ah-contact-grid section {
    padding: 34px 28px;
  }
  .ah-form-section {
    padding: 34px 25px;
  }
  .ah-form-wide {
    grid-column: auto;
  }
  .footer-nav,
  .ah-not-found-actions {
    align-items: center;
    flex-direction: column;
  }
  .ah-not-found {
    padding: 34px 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}
