:root {
  --navy: #292866;
  --navy-2: #202052;
  --red: #b51f2c;
  --ink: #171b2e;
  --muted: #646a80;
  --line: #dfe2ea;
  --paper: #f3f3f1;
  --white: #ffffff;
  --domain-primary: #292866;
  --domain-accent: #b51f2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.header-shell {
  min-height: 98px;
  display: grid;
  grid-template-columns: minmax(190px, 320px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 7vw, 110px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span,
.mobile-brand strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--navy-2);
  font-size: 17px;
}

.desktop-nav a {
  padding: 34px 0 31px;
  border-bottom: 3px solid transparent;
}

.desktop-nav a[aria-current="page"] {
  border-color: var(--navy);
}

.arrow-cta,
.outline-cta,
.header-cta,
.mobile-cta,
.panel-submit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.arrow-cta,
.header-cta,
.mobile-cta {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  padding-right: 34px;
}

.outline-cta {
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  right: 0;
  width: min(330px, calc(100vw - 32px));
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(15, 18, 42, .18);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--navy);
}

.mobile-brand img {
  width: 44px;
  height: 44px;
}

.mobile-menu-panel nav {
  display: grid;
  gap: 4px;
  margin: 12px 0;
}

.mobile-menu-panel nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
}

.source-hero {
  position: relative;
  min-height: 730px;
  background: var(--navy);
  overflow: hidden;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  min-height: 730px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: center;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 8vw, 130px);
  color: var(--white);
  background: rgba(20, 24, 64, .78);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

h1 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
  color: inherit;
}

h2 {
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.04;
  color: var(--navy);
}

h3 {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.12;
  color: var(--navy);
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.split-narrative p:not(.eyebrow),
.service-intro > p:not(.eyebrow),
.fit-band > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.path-copy > p:not(.eyebrow),
.insights-copy > p:not(.eyebrow),
.standard-intro > p:not(.eyebrow),
.legal-hero > p {
  margin-top: 24px;
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.source-hero .hero-copy > p:not(.eyebrow),
.insights-hero p:not(.eyebrow),
.dark-cta p:not(.eyebrow),
.fit-band p:not(.eyebrow) {
  color: rgba(255,255,255,.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-proof {
  padding: 34px;
  border-left: 2px solid var(--red);
  background: rgba(13, 16, 48, .38);
}

.hero-proof h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 20px;
}

.hero-proof ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
  padding: 30px clamp(24px, 8vw, 130px);
}

.proof-strip article {
  min-height: 110px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.16);
}

.proof-strip article:last-child {
  border-right: 1px solid rgba(255,255,255,.16);
}

.proof-strip strong {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.proof-strip span {
  max-width: 220px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.split-narrative,
.section-block,
.resource-preview,
.highlight-standards,
.featured-resource,
.article-list-section,
.standard-intro,
.legal-hero,
.contact-service-grid {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 130px);
}

.split-narrative {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
}

.narrative-copy a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
}

.capability-hub {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 130px);
  background: var(--paper);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

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

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.hub-diagram {
  display: grid;
  gap: 38px;
  justify-items: center;
}

.hub-core {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.hub-core img {
  width: 88px;
  height: 88px;
}

.hub-lanes {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.hub-lanes article {
  min-height: 205px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
}

.hub-lanes strong {
  color: var(--red);
}

.hub-lanes span {
  color: var(--navy);
  font-weight: 900;
}

.hub-lanes p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-matrix {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  padding: clamp(55px, 7vw, 95px) clamp(24px, 8vw, 130px) clamp(80px, 9vw, 130px);
}

.matrix-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
}

.matrix-card:nth-child(even) {
  background: var(--navy);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}

.matrix-card:nth-child(even) h3,
.matrix-card:nth-child(even) a {
  color: var(--white);
}

.matrix-card p:first-child,
.article-meta {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-card h3 {
  margin-bottom: 16px;
}

.matrix-card p:not(:first-child) {
  color: var(--muted);
}

.matrix-card:nth-child(even) p:not(:first-child) {
  color: rgba(255,255,255,.82);
}

.matrix-card a {
  margin-top: auto;
  padding-top: 26px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
}

.card-1 {
  grid-row: span 2;
}

.fit-band,
.dark-cta {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 130px);
  background: var(--navy);
  color: var(--white);
}

.fit-band h2,
.dark-cta h2 {
  color: var(--white);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.resource-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.resource-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .85fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 24, 64, .08);
}

.resource-feature-image {
  display: block;
  min-height: 420px;
  overflow: hidden;
  background: var(--paper);
}

.resource-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-feature > div {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
}

.resource-feature h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.resource-feature p:not(.article-meta) {
  color: var(--muted);
}

.resource-feature span {
  display: block;
  margin-top: auto;
  padding-top: 26px;
  color: #8a90a3;
  font-size: 13px;
}

.resource-side {
  display: grid;
  gap: 20px;
}

.resource-side .article-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.resource-side .article-image {
  aspect-ratio: 1 / 1;
}

.resource-side .article-copy {
  padding: 0;
  border-bottom: 0;
}

.article-card {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.article-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-copy {
  padding: 28px 0;
}

.article-copy h3 {
  margin-bottom: 16px;
}

.article-copy p:not(.article-meta) {
  color: var(--muted);
}

.article-copy span {
  display: block;
  margin-top: 18px;
  color: #8a90a3;
  font-size: 13px;
}

.article-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-standards {
  padding-top: 0;
}

.standard-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standard-line article {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.standard-line strong {
  color: var(--red);
  font-size: 22px;
}

.standard-line p {
  color: var(--muted);
}

.dark-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  overflow: hidden;
}

.dark-cta > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.2);
}

.cta-service-grid a {
  min-height: 165px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .2s ease, transform .2s ease;
}

.cta-service-grid a:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}

.cta-service-grid strong {
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.cta-service-grid span {
  color: rgba(255,255,255,.9);
  font-weight: 900;
}

.page-split-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  min-height: 650px;
  background: var(--white);
}

.page-hero-copy {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 8vw, 130px);
  align-self: center;
}

.page-hero-media {
  min-height: 650px;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

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

.page-proof {
  margin-top: 0;
}

.fit-band {
  position: relative;
  overflow: hidden;
}

.fit-band::after {
  content: "SERVICES";
  position: absolute;
  right: -40px;
  bottom: -40px;
  color: rgba(255,255,255,.06);
  font-size: clamp(70px, 14vw, 190px);
  font-weight: 900;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 50px;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 130px);
  background: var(--navy);
  color: var(--white);
}

.about-hero h1,
.about-hero h2 {
  color: var(--white);
}

.about-hero p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.about-proof {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.16);
}

.about-proof article {
  padding: 30px;
  background: rgba(255,255,255,.08);
}

.about-proof strong {
  display: block;
  color: var(--white);
  font-size: 38px;
}

.standard-intro {
  border-top: 1px solid var(--line);
}

.standards-list {
  padding: 0 clamp(24px, 8vw, 130px) clamp(70px, 8vw, 120px);
}

.standards-list article {
  display: grid;
  grid-template-columns: 100px minmax(180px, 260px) 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.standards-list span {
  color: #e5e7ee;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.standards-list strong {
  color: var(--navy);
}

.standards-list p {
  color: var(--muted);
}

.coverage-block {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 40px;
  margin: 0 clamp(24px, 8vw, 130px) clamp(80px, 9vw, 130px);
  padding: clamp(42px, 6vw, 70px);
  background: var(--navy);
  color: var(--white);
}

.coverage-block h2 {
  color: var(--white);
}

.coverage-block p {
  margin: 20px 0;
  color: rgba(255,255,255,.82);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.coverage-grid article {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
}

.coverage-grid strong {
  display: block;
  color: var(--white);
  font-size: 42px;
}

.insights-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 60px;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 130px);
  background: var(--navy);
  color: var(--white);
}

.insights-hero h1,
.insights-hero h2 {
  color: var(--white);
}

.insights-panel {
  align-self: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}

.lead-article {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 24, 64, .08);
}

.lead-image {
  display: block;
  min-height: 380px;
  overflow: hidden;
}

.lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-article > div {
  padding: clamp(30px, 5vw, 64px);
}

.lead-article h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
}

.lead-article p:not(.article-meta) {
  color: var(--muted);
}

.lead-article span {
  display: block;
  margin: 26px 0;
  color: #8a90a3;
}

.lead-article a:last-child,
.related-chips a {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.article-list-section {
  padding-top: 0;
}

.related-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.related-chips a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  color: var(--navy);
}

.post-hero {
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 130px);
  background: var(--navy);
  color: var(--white);
}

.post-hero h1 {
  max-width: 980px;
  color: var(--white);
}

.post-hero p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 24px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.post-hero time {
  display: inline-block;
  margin-top: 24px;
  color: rgba(255,255,255,.68);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px clamp(24px, 8vw, 130px);
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 10px;
  color: #a2a7b7;
}

.article-media {
  width: min(1040px, calc(100% - 48px));
  margin: 64px auto 0;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-points,
.article-body,
.article-aux {
  width: min(880px, calc(100% - 48px));
  margin: 56px auto;
}

.article-points {
  padding: 28px;
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.article-points h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.article-points ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-body section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.article-body h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 42px);
}

.article-body p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.article-aux {
  display: grid;
  gap: 20px;
}

.article-aux-block {
  padding: 26px;
  border: 1px solid var(--line);
}

.article-aux-block h2 {
  margin-bottom: 18px;
  font-size: 22px;
}

.article-aux-block div {
  display: grid;
  gap: 12px;
}

.article-aux-block a {
  color: var(--navy);
  font-weight: 800;
}

.contact-intake {
  display: grid;
  grid-template-columns: 1fr minmax(360px, .86fr);
  min-height: 760px;
  background: var(--paper);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 110px);
  background: var(--navy);
  color: var(--white);
}

.contact-copy h1 {
  color: var(--white);
}

.intake-panel {
  align-self: center;
  margin: clamp(24px, 5vw, 80px);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 24, 64, .08);
}

.intake-panel h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.intake-panel > p {
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 26px 0;
}

.field-grid label {
  display: grid;
  gap: 8px;
}

.field-grid span {
  color: #7d8498;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: #9ba1b2;
  background: #fbfbfd;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.field-grid textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.field-grid input:focus,
.field-grid textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  color: var(--ink);
}

.field-grid .wide {
  grid-column: 1 / -1;
}

.panel-submit {
  border: 0;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: clamp(55px, 8vw, 95px) clamp(24px, 8vw, 130px);
  background: #f4f6fa;
}

.contact-facts article,
.contact-card-grid article,
.path-side article {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-facts p {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-facts strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 34px);
}

.solution-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: 54px;
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 130px);
}

.path-copy ol {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--red);
}

.path-copy li {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  padding: 0 0 42px 0;
}

.path-copy li span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-left: -27px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.path-copy li h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

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

.path-side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.path-side p,
.contact-card-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.path-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.path-facts a {
  color: var(--navy);
  font-weight: 900;
}

.path-facts span {
  color: var(--navy);
  font-weight: 900;
}

.path-side .dark-side {
  background: var(--navy);
  color: var(--white);
}

.path-side .dark-side h3,
.path-side .dark-side p {
  color: var(--white);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.legal-hero {
  background: var(--navy);
  color: var(--white);
}

.legal-hero h1 {
  color: var(--white);
}

.policy-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 8vw, 130px);
}

.policy-grid article,
.policy-panel,
.sitemap-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.policy-grid span,
.policy-panel span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
}

.policy-grid h2,
.policy-panel h2,
.sitemap-grid h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.policy-grid p,
.policy-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.sitemap-grid a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.not-found {
  min-height: 66vh;
  display: grid;
  align-content: center;
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 130px);
  background: var(--navy);
  color: var(--white);
}

.not-found h1 {
  color: var(--white);
}

.not-found p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255,255,255,.82);
}

.site-footer {
  background: #eeeeec;
  color: var(--ink);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr .72fr 1fr 1.15fr 1fr;
  gap: 32px;
  padding: clamp(46px, 7vw, 76px) clamp(24px, 8vw, 130px);
}

.footer-brand img {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.footer-brand strong {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.footer-brand p {
  margin-top: 10px;
  color: var(--muted);
}

.footer-brand a {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
}

.footer-contact-line {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.footer-col a,
.footer-col span {
  color: #24304e;
  font-size: 15px;
}

.footer-action p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-action .arrow-cta {
  justify-self: start;
  color: var(--white);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(24px, 8vw, 130px);
  border-top: 1px solid #d4d6dc;
  color: var(--muted);
  font-size: 14px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .mobile-menu {
    display: block;
  }

  .hero-overlay,
  .split-narrative,
  .page-split-hero,
  .about-hero,
  .insights-hero,
  .lead-article,
  .resource-showcase,
  .resource-feature,
  .contact-intake,
  .solution-path,
  .coverage-block {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    min-height: 360px;
    clip-path: none;
  }

  .service-matrix,
  .article-grid,
  .standard-line,
  .hub-lanes,
  .footer-shell,
  .contact-facts,
  .contact-card-grid,
  .policy-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .card-1 {
    grid-row: auto;
  }

  .standards-list article {
    grid-template-columns: 70px 1fr;
  }

  .standards-list p {
    grid-column: 2;
  }

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

  .dark-cta,
  .cta-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-shell {
    min-height: 76px;
    padding-inline: 16px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .source-hero,
  .hero-overlay {
    min-height: 0;
  }

  .hero-overlay,
  .split-narrative,
  .section-block,
  .resource-preview,
  .highlight-standards,
  .featured-resource,
  .article-list-section,
  .standard-intro,
  .legal-hero,
  .contact-service-grid,
  .capability-hub,
  .fit-band,
  .dark-cta,
  .page-hero-copy,
  .about-hero,
  .insights-hero,
  .post-hero,
  .solution-path,
  .contact-copy {
    padding-inline: 18px;
  }

  .hero-overlay {
    padding-block: 70px;
  }

  .hero-proof,
  .insights-panel,
  .intake-panel,
  .path-side article {
    padding: 22px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .proof-strip article {
    min-height: 90px;
    border-right: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .service-matrix,
  .standards-list,
  .contact-facts,
  .highlight-standards,
  .policy-grid,
  .sitemap-grid {
    padding-inline: 18px;
  }

  .matrix-card {
    min-height: 260px;
  }

  .resource-side .article-card {
    grid-template-columns: 1fr;
  }

  .resource-side .article-image {
    aspect-ratio: 16 / 10;
  }

  .resource-feature-image,
  .lead-image,
  .article-media {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

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

  .footer-legal {
    flex-direction: column;
    padding-inline: 18px;
  }
}
