:root {
  --carbon: #0b1219;
  --carbon-soft: #111b24;
  --navy: #173b5e;
  --blue: #183dce;
  --red: #c83b36;
  --aerospace-white: #f5f7f8;
  --white: #ffffff;
  --ink: #17212a;
  --steel: #6f7e89;
  --line: #d8dee3;
  --line-dark: rgba(255, 255, 255, 0.18);
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --container: 1280px;
  --section-space: 112px;
  --header-height: 88px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--aerospace-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid #6f91ff;
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(11, 18, 25, 0.98);
  border-color: var(--line-dark);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), 1360px);
  min-height: var(--header-height);
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 206px;
}

.brand img,
.footer-brand img {
  width: 206px;
  height: auto;
}

.desktop-nav {
  flex: 1;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: var(--header-height);
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.nav-item > a {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  padding-left: 13px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.dropdown-toggle {
  display: inline-grid;
  width: 28px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-toggle svg {
  width: 14px;
  transition: transform var(--transition);
}

.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown:focus-within .dropdown-toggle svg,
.dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-item::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 13px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-item:hover::after,
.nav-item:focus-within::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 0 17px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--transition);
}

.header-cta:hover {
  background: #244cde;
}

.header-cta svg {
  width: 15px;
}

.dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 330px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 24px 56px rgba(5, 13, 21, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.dropdown-right {
  right: 0;
  left: auto;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown > a {
  display: flex;
  min-height: 42px;
  padding: 9px 12px;
  align-items: center;
  border-bottom: 1px solid #e5e9ec;
  font-size: 13px;
  line-height: 1.4;
  transition: color var(--transition), background-color var(--transition);
}

.dropdown > a:last-child {
  border-bottom: 0;
}

.dropdown > a:hover,
.dropdown > a:focus-visible {
  color: var(--blue);
  background: #f3f5f7;
}

.dropdown-wide {
  width: 390px;
}

.dropdown-columns {
  right: 0;
  left: auto;
  width: 480px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.has-dropdown:hover > .dropdown-columns,
.has-dropdown:focus-within > .dropdown-columns,
.has-dropdown.is-open > .dropdown-columns {
  display: grid;
}

.mega-menu {
  position: fixed;
  top: var(--header-height);
  right: 24px;
  left: 24px;
  width: auto;
  max-width: var(--container);
  padding: 34px;
  margin-inline: auto;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 2fr);
  gap: 42px;
}

.has-dropdown:hover > .mega-menu,
.has-dropdown:focus-within > .mega-menu,
.has-dropdown.is-open > .mega-menu {
  display: grid;
}

.mega-intro {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.menu-code {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.mega-intro h2 {
  max-width: 320px;
  margin: 18px 0 26px;
  font-size: 25px;
  line-height: 1.25;
}

.menu-command {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.menu-command svg {
  width: 15px;
}

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

.mega-links a {
  display: grid;
  min-height: 58px;
  padding: 10px 4px;
  grid-template-columns: 24px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.35;
}

.mega-links a:hover {
  color: var(--blue);
}

.mega-links span {
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 10px;
}

.mobile-menu-button,
.mobile-navigation {
  display: none;
}

.hero {
  position: relative;
  min-height: min(740px, 80svh);
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--carbon);
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: contents;
}

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-overlay {
  background: rgba(4, 10, 16, 0.67);
}

.hero::after {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: calc(50% - 640px);
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(min(740px, 80svh) - var(--header-height));
  padding-top: 70px;
  padding-bottom: 126px;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  align-items: center;
  gap: 96px;
}

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

.eyebrow {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #aebcf7;
}

.hero h1 {
  max-width: 840px;
  font-size: 68px;
  line-height: 1.02;
}

.hero-lead {
  max-width: 760px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.button svg {
  width: 17px;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #284fe0;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(11, 18, 25, 0.28);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(11, 18, 25, 0.62);
}

.hero-index {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-index-label {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-index ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-index li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 30px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-index li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-index li > span {
  color: #aebcf7;
  font-family: var(--font-mono);
  font-size: 10px;
}

.hero-index strong,
.hero-index small {
  grid-column: 2;
}

.hero-index strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.hero-index small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.hero-capability-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 15, 22, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

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

.capability-bar-grid a {
  display: grid;
  min-height: 82px;
  padding: 0 24px;
  grid-template-columns: 28px 1fr 20px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 13px;
  font-weight: 500;
}

.capability-bar-grid a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.capability-bar-grid a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.capability-bar-grid span {
  color: #aebcf7;
  font-family: var(--font-mono);
  font-size: 10px;
}

.capability-bar-grid svg {
  width: 15px;
  opacity: 0.55;
}

.company-intro {
  position: relative;
  background: var(--aerospace-white);
}

.company-intro::before {
  position: absolute;
  top: 0;
  right: max(0px, calc((100% - var(--container)) / 2));
  width: 21%;
  height: 4px;
  content: "";
  background: var(--red);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 104px;
}

.section-copy h2,
.section-heading-row h2 {
  max-width: 760px;
  font-size: 48px;
  line-height: 1.08;
}

.section-lead {
  margin: 34px 0 18px;
  color: #33414c;
  font-size: 19px;
  line-height: 1.65;
}

.section-copy > p:not(.eyebrow):not(.section-lead) {
  max-width: 700px;
  color: var(--steel);
}

.text-command {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.text-command svg {
  width: 16px;
  transition: transform var(--transition);
}

.text-command:hover svg {
  transform: translateX(4px);
}

.supporting-links {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.supporting-links a {
  display: grid;
  min-height: 56px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition), padding-left var(--transition);
}

.supporting-links a:hover {
  padding-left: 8px;
  color: var(--blue);
}

.supporting-links span {
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 10px;
}

.intro-visual {
  position: relative;
  margin: 0;
}

.intro-visual::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: -18px;
  width: 72px;
  height: 72px;
  content: "";
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}

.image-frame {
  aspect-ratio: 4 / 5;
  background: #d9dee2;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.intro-visual:hover img {
  transform: scale(1.015);
}

.intro-visual figcaption {
  display: flex;
  padding-top: 12px;
  justify-content: space-between;
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.capabilities {
  color: var(--white);
  background: var(--carbon-soft);
}

.section-heading-row {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading-row > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.capability-list {
  border-top: 1px solid var(--line-dark);
}

.capability-item {
  display: grid;
  min-height: 88px;
  padding: 0 10px;
  grid-template-columns: 66px minmax(0, 1fr) minmax(190px, 0.42fr) 34px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  transition: padding var(--transition), background-color var(--transition);
}

.capability-item:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.capability-number {
  color: #aebcf7;
  font-family: var(--font-mono);
  font-size: 10px;
}

.capability-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.capability-tag {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.capability-item svg {
  width: 17px;
  color: rgba(255, 255, 255, 0.5);
}

.additional-capabilities {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
  gap: 18px;
}

.additional-capabilities > span {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.additional-capabilities a {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
  font-size: 12px;
  line-height: 1.45;
}

.additional-capabilities a:hover {
  color: #aebcf7;
}

.section-command {
  display: inline-flex;
  margin-top: 38px;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.section-command svg {
  width: 17px;
  transition: transform var(--transition);
}

.section-command:hover svg {
  transform: translateX(4px);
}

.section-command-dark {
  color: #aebcf7;
}

section[id],
footer[id],
#careers {
  scroll-margin-top: var(--header-height);
}

.industries {
  background: var(--white);
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 96px;
}

.industries-visual {
  position: relative;
  min-height: 660px;
  background: var(--carbon-soft);
  overflow: hidden;
}

.industries-visual::before {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  width: 64px;
  height: 64px;
  content: "";
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.industries-visual img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.82;
  transition: transform 600ms ease;
}

.industries-picture {
  display: block;
  height: 100%;
}

.industries-visual:hover img {
  transform: scale(1.015);
}

.industries-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(5, 11, 17, 0.38);
}

.industries-visual-caption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: grid;
  color: var(--white);
  gap: 8px;
}

.industries-visual-caption span {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.industries-visual-caption strong {
  max-width: 360px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.industries-content h2,
.quality-heading h2,
.experience-main h2,
.insights-heading h2,
.contact-cta-content h2 {
  font-size: 48px;
  line-height: 1.08;
}

.industries-intro {
  max-width: 680px;
  margin: 28px 0 34px;
  color: var(--steel);
  font-size: 17px;
}

.industry-list {
  border-top: 1px solid var(--line);
}

.industry-list > a {
  display: grid;
  min-height: 82px;
  padding: 12px 4px;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color var(--transition), padding var(--transition), background-color var(--transition);
}

.industry-list > a:hover {
  padding-right: 12px;
  padding-left: 12px;
  color: var(--blue);
  background: var(--aerospace-white);
}

.industry-number {
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 10px;
}

.industry-list strong,
.industry-list small {
  display: block;
}

.industry-list strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.industry-list small {
  margin-top: 3px;
  color: var(--steel);
  font-size: 11px;
  line-height: 1.45;
}

.industry-list svg {
  width: 16px;
  color: var(--steel);
}

.quality {
  background: #e9edf0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 96px;
}

.quality-copy {
  padding-left: 30px;
  border-left: 2px solid var(--blue);
}

.quality-copy p {
  margin-bottom: 0;
  color: #33414c;
}

.quality-copy .quality-note {
  margin-top: 12px;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.55;
}

.trust-index {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #bcc6cd;
  border-bottom: 1px solid #bcc6cd;
}

.trust-index a {
  display: grid;
  min-height: 168px;
  padding: 24px;
  grid-template-columns: 1fr 20px;
  align-content: space-between;
  border-left: 1px solid #bcc6cd;
  transition: color var(--transition), background-color var(--transition);
}

.trust-index a:last-child {
  border-right: 1px solid #bcc6cd;
}

.trust-index a:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.58);
}

.trust-index span {
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 10px;
}

.trust-index strong {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.trust-index svg {
  width: 16px;
  grid-column: 2;
  grid-row: 2;
  color: var(--steel);
}

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

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.62fr);
  gap: 96px;
}

.experience-main > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.project-pathways {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.project-pathways a {
  display: grid;
  min-height: 92px;
  padding: 18px 20px;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  align-items: center;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  transition: background-color var(--transition);
}

.project-pathways a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.project-pathways span {
  color: #aebcf7;
  font-family: var(--font-mono);
  font-size: 10px;
}

.project-pathways svg {
  width: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.collaboration-panel {
  position: relative;
  padding: 44px 40px;
  align-self: stretch;
  background: var(--carbon-soft);
  border-top: 3px solid var(--red);
}

.panel-code {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 10px;
}

.collaboration-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 60px 0 34px;
  color: #aebcf7;
  stroke-width: 1.2;
}

.collaboration-panel h3 {
  font-size: 27px;
  line-height: 1.22;
}

.collaboration-panel > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.text-command-light {
  color: #aebcf7;
}

.insights {
  background: var(--white);
}

.insights-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.insights-heading > p {
  margin-bottom: 2px;
  color: var(--steel);
}

.insight-pathways {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.insight-pathways > a {
  display: flex;
  min-height: 290px;
  padding: 28px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition), background-color var(--transition);
}

.insight-pathways > a:hover {
  color: var(--blue);
  background: var(--aerospace-white);
}

.insight-type {
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.insight-pathways > a > svg {
  width: 30px;
  height: 30px;
  margin: 62px 0 28px;
  color: var(--blue);
  stroke-width: 1.35;
}

.insight-pathways h3 {
  max-width: 330px;
  font-size: 22px;
  line-height: 1.3;
}

.insight-link {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 600;
}

.insight-link svg {
  width: 14px;
}

.contact-cta {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--carbon);
  overflow: hidden;
}

.contact-cta > img,
.contact-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-cta > img {
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.54;
}

.contact-cta-overlay {
  background: rgba(5, 11, 17, 0.72);
}

.contact-cta-content {
  position: relative;
  z-index: 2;
  padding-block: 94px;
}

.contact-cta-content h2 {
  max-width: 790px;
}

.contact-cta-content > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding-top: 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--carbon);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-masthead {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-masthead-signal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-masthead-signal svg {
  width: 13px;
  color: var(--red);
}

.footer-layout {
  display: grid;
  padding-block: 60px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(440px, 1.5fr) minmax(220px, 0.62fr) 52px;
  align-items: start;
  gap: 52px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-brand .footer-contact {
  margin-top: 42px;
}

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

.footer-contact > span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-contact > a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 21px;
}

.footer-contact address {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-style: normal;
}

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

.footer-navigation > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-navigation span,
.footer-careers > span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-navigation a {
  padding: 5px 0;
  font-size: 12px;
  transition: color var(--transition);
}

.footer-navigation a:hover {
  color: var(--white);
}

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

.footer-careers p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-careers .text-command {
  margin-top: 18px;
  font-size: 12px;
}

.footer-top {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-top:hover {
  background: rgba(255, 255, 255, 0.06);
}

.footer-top svg {
  width: 18px;
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-designer-row {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-designer-label {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-credit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.footer-credit svg {
  width: 13px;
}

.footer-credit:hover {
  color: var(--white);
}

.prototype-credit-chip {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-height: 50px;
  padding: 7px 11px 7px 7px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(11, 18, 25, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), border-color var(--transition);
}

.prototype-credit-chip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.prototype-credit-chip:hover {
  border-color: rgba(111, 145, 255, 0.7);
  transform: translateY(-2px);
}

.credit-chip-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.credit-chip-mark svg {
  width: 16px;
}

.credit-chip-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
  line-height: 1.15;
}

.credit-chip-copy small {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.credit-chip-copy strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.credit-chip-arrow {
  width: 14px;
  color: rgba(255, 255, 255, 0.58);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .header-inner {
    width: min(calc(100% - 64px), var(--container));
  }

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

  .header-inner {
    justify-content: space-between;
  }

  .mobile-menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-button svg {
    width: 21px;
  }

  .mobile-navigation {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    color: var(--white);
    background: var(--carbon);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .mobile-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav-inner {
    width: min(calc(100% - 64px), 760px);
    padding: 30px 0 52px;
    margin-inline: auto;
  }

  .mobile-parent-link,
  .mobile-group-heading {
    min-height: 60px;
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-parent-link {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
  }

  .mobile-group-heading {
    display: grid;
    grid-template-columns: 1fr 52px;
    align-items: center;
  }

  .mobile-group-heading > a {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
  }

  .mobile-group-heading button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    justify-self: end;
    border: 0;
    background: transparent;
  }

  .mobile-group-heading svg {
    width: 18px;
    transition: transform var(--transition);
  }

  .mobile-group.is-open .mobile-group-heading svg {
    transform: rotate(45deg);
  }

  .mobile-submenu {
    display: grid;
    max-height: 0;
    padding-left: 18px;
    overflow: hidden;
    transition: max-height 350ms ease;
  }

  .mobile-group.is-open .mobile-submenu {
    max-height: 700px;
  }

  .mobile-submenu a {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.64);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .mobile-contact {
    width: 100%;
    margin-top: 28px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 50px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .section-grid {
    gap: 60px;
  }

  .industries-layout,
  .quality-heading {
    gap: 56px;
  }

  .experience-layout {
    gap: 48px;
  }

  .footer-layout {
    gap: 30px;
  }
}

@media (max-width: 840px) {
  :root {
    --section-space: 80px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-layout {
    min-height: 684px;
    padding-top: 74px;
    padding-bottom: 190px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 42px;
  }

  .hero-index {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .capability-bar-grid {
    grid-template-columns: 1fr;
  }

  .capability-bar-grid a {
    min-height: 54px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .capability-bar-grid a:last-child {
    border-bottom: 0;
  }

  .section-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 70px;
  }

  .section-heading-row {
    gap: 24px;
  }

  .intro-visual {
    width: min(100%, 560px);
  }

  .additional-capabilities {
    grid-template-columns: 1fr;
  }

  .additional-capabilities a {
    min-height: 44px;
    padding: 10px 0 10px 18px;
  }

  .industries-layout,
  .quality-heading,
  .experience-layout,
  .insights-heading {
    grid-template-columns: 1fr;
  }

  .industries-layout,
  .experience-layout {
    gap: 64px;
  }

  .industries-content {
    order: 1;
  }

  .industries-visual {
    min-height: 480px;
    order: 2;
  }

  .industries-visual img {
    height: 480px;
  }

  .quality-heading,
  .insights-heading {
    gap: 30px;
  }

  .quality-copy {
    padding-left: 22px;
  }

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

  .trust-index a:nth-child(3) {
    border-top: 1px solid #bcc6cd;
  }

  .trust-index a:nth-child(4) {
    border-top: 1px solid #bcc6cd;
    border-right: 1px solid #bcc6cd;
  }

  .collaboration-panel {
    min-height: 470px;
  }

  .insight-pathways {
    grid-template-columns: 1fr;
  }

  .insight-pathways > a {
    min-height: 220px;
  }

  .insight-pathways > a > svg {
    margin: 36px 0 22px;
  }

  .footer-layout {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 52px 24px;
  }

  .footer-brand,
  .footer-navigation,
  .footer-careers {
    grid-column: 1;
  }

  .footer-top {
    width: 44px;
    height: 44px;
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 72px;
    --section-space: 72px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .brand {
    flex-basis: 174px;
    min-height: 44px;
  }

  .brand img {
    width: 174px;
  }

  .mobile-nav-inner {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background: rgba(4, 10, 16, 0.74);
  }

  .hero-layout {
    min-height: 648px;
    padding-top: 34px;
    padding-bottom: 180px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .eyebrow span {
    width: 24px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-lead {
    margin: 24px 0 28px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .capability-bar-grid a {
    padding-inline: 16px;
    grid-template-columns: 28px 1fr 16px;
    font-size: 11px;
  }

  .section-copy h2,
  .section-heading-row h2,
  .industries-content h2,
  .quality-heading h2,
  .experience-main h2,
  .insights-heading h2,
  .contact-cta-content h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .section-lead {
    margin-top: 26px;
    font-size: 17px;
  }

  .section-grid {
    gap: 58px;
  }

  .company-intro {
    padding-top: 54px;
  }

  .intro-visual::before {
    top: -12px;
    left: -12px;
    width: 48px;
    height: 48px;
  }

  .capability-item {
    min-height: 82px;
    grid-template-columns: 38px 1fr 24px;
  }

  .capability-name {
    font-size: 17px;
    line-height: 1.35;
  }

  .capability-tag {
    display: none;
  }

  .section-command {
    min-height: 44px;
    margin-top: 30px;
  }

  .text-command {
    min-height: 44px;
  }

  .industries-layout,
  .experience-layout {
    gap: 48px;
  }

  .industries-visual,
  .industries-visual img {
    height: 400px;
    min-height: 400px;
  }

  .industries-visual-caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .industry-list > a {
    min-height: 76px;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
  }

  .industry-list strong {
    font-size: 15px;
  }

  .industry-list small {
    display: none;
  }

  .trust-index {
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .trust-index a {
    min-height: 102px;
    padding: 18px;
  }

  .trust-index a + a {
    border-top: 1px solid #bcc6cd;
  }

  .trust-index a,
  .trust-index a:last-child {
    border-right: 1px solid #bcc6cd;
  }

  .project-pathways {
    grid-template-columns: 1fr;
  }

  .collaboration-panel {
    min-height: 0;
    padding: 34px 26px;
  }

  .collaboration-icon {
    margin: 42px 0 28px;
  }

  .collaboration-panel h3 {
    font-size: 24px;
  }

  .insight-pathways {
    margin-top: 42px;
  }

  .insight-pathways > a {
    min-height: 210px;
    padding: 22px;
  }

  .insight-pathways h3 {
    font-size: 19px;
  }

  .contact-cta {
    min-height: 560px;
  }

  .contact-cta-content {
    padding-block: 72px;
  }

  .contact-cta-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .contact-actions {
    display: grid;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-layout {
    grid-template-columns: 1fr 44px;
    gap: 42px 20px;
  }

  .footer-brand,
  .footer-navigation,
  .footer-careers {
    grid-column: 1;
  }

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

  .footer-navigation a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-navigation > div:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .footer-navigation > div:last-child > span,
  .footer-navigation > div:last-child > a:first-of-type {
    grid-column: 1 / -1;
  }

  .footer-top {
    width: 44px;
    height: 44px;
    grid-column: 2;
    grid-row: 1;
  }

  .footer-bottom {
    display: grid;
    padding: 16px 0;
    gap: 4px;
  }

  /* Dedicated phone optimisation */
  :root {
    --section-space: 64px;
  }

  a,
  button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(111, 145, 255, 0.18);
  }

  .header-inner {
    width: calc(100% - 40px);
    gap: 16px;
  }

  .brand {
    flex-basis: 164px;
  }

  .brand img {
    width: 164px;
  }

  .mobile-navigation {
    height: calc(100dvh - var(--header-height));
    background: #081018;
    overscroll-behavior: contain;
  }

  .mobile-nav-inner {
    padding: 10px 0 calc(28px + env(safe-area-inset-bottom));
  }

  .mobile-parent-link,
  .mobile-group-heading {
    min-height: 56px;
  }

  .mobile-parent-link,
  .mobile-group-heading > a {
    font-size: 17px;
  }

  .mobile-group-heading button {
    width: 48px;
    height: 48px;
  }

  .mobile-submenu {
    padding-left: 14px;
    border-left: 1px solid rgba(111, 145, 255, 0.35);
  }

  .mobile-submenu a {
    display: flex;
    min-height: 44px;
    padding: 8px 0;
    align-items: center;
    font-size: 13px;
    line-height: 1.35;
  }

  .mobile-contact {
    position: static;
    min-height: 50px;
    margin-top: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  .hero {
    min-height: 700px;
  }

  .hero-layout {
    min-height: 628px;
    padding-top: 24px;
    padding-bottom: 164px;
  }

  .hero h1 {
    font-size: clamp(35px, 9.6vw, 40px);
    line-height: 1.07;
  }

  .hero-lead {
    margin: 22px 0 24px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
  }

  .button {
    min-height: 50px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .button svg {
    flex: 0 0 auto;
  }

  .button-ghost {
    background: rgba(5, 11, 17, 0.52);
  }

  .capability-bar-grid a {
    min-height: 52px;
  }

  .section-copy h2,
  .section-heading-row h2,
  .industries-content h2,
  .quality-heading h2,
  .experience-main h2,
  .insights-heading h2,
  .contact-cta-content h2 {
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.14;
  }

  .section-lead,
  .industries-intro,
  .experience-main > p:not(.eyebrow),
  .contact-cta-content > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .section-grid {
    gap: 48px;
  }

  .company-intro {
    padding-top: 48px;
  }

  .supporting-links {
    margin-top: 34px;
  }

  .capability-item {
    min-height: 76px;
    padding-inline: 4px;
  }

  .additional-capabilities {
    margin-top: 24px;
    gap: 4px;
  }

  .industries-layout,
  .experience-layout {
    gap: 42px;
  }

  .industries-visual,
  .industries-visual img {
    height: 360px;
    min-height: 360px;
  }

  .industry-list > a {
    min-height: 70px;
  }

  .quality-copy {
    padding-left: 18px;
  }

  .trust-index {
    margin-top: 38px;
  }

  .trust-index a {
    min-height: 88px;
  }

  .project-pathways {
    margin-top: 38px;
  }

  .project-pathways a {
    min-height: 76px;
    padding: 14px 16px;
  }

  .collaboration-panel {
    padding: 30px 24px;
  }

  .collaboration-icon {
    margin: 34px 0 24px;
  }

  .insight-pathways {
    margin-top: 36px;
  }

  .insight-pathways > a {
    min-height: 180px;
    padding: 20px;
  }

  .insight-pathways > a > svg {
    margin: 24px 0 18px;
  }

  .contact-cta {
    min-height: 520px;
  }

  .contact-cta-content {
    padding-block: 60px;
  }

  .site-footer {
    padding-top: 0;
  }

  .footer-masthead {
    display: grid;
    min-height: 64px;
    padding-block: 13px;
    justify-content: start;
    gap: 4px;
  }

  .footer-layout {
    padding-block: 40px 36px;
    gap: 30px 18px;
  }

  .footer-brand p {
    margin-top: 14px;
  }

  .footer-brand .footer-contact {
    margin-top: 26px;
  }

  .footer-contact > span,
  .footer-navigation span,
  .footer-careers > span {
    margin-bottom: 8px;
  }

  .footer-contact > a {
    display: flex;
    min-height: 44px;
    align-items: center;
    font-size: 18px;
  }

  .footer-contact address {
    margin-top: 8px;
    line-height: 1.55;
  }

  .footer-navigation {
    gap: 8px 20px;
  }

  .footer-navigation a {
    padding: 0;
    font-size: 13px;
  }

  .footer-careers p {
    line-height: 1.6;
  }

  .footer-careers .text-command {
    margin-top: 10px;
  }

  .footer-bottom {
    min-height: 58px;
    padding: 12px 0;
  }

  .footer-designer-row {
    display: grid;
    min-height: 0;
    padding: 14px 0;
    justify-items: stretch;
    gap: 8px;
  }

  .footer-designer-label {
    padding-inline: 2px;
  }

  .footer-credit {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(90deg, rgba(31, 78, 216, 0.24), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(111, 145, 255, 0.28);
    border-left: 3px solid var(--blue);
  }

  .footer-credit strong {
    margin-left: auto;
    color: var(--white);
    font-size: 13px;
  }

  .footer-credit svg {
    width: 15px;
    flex: 0 0 auto;
  }

  .prototype-credit-chip {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    max-width: calc(100% - 24px);
    min-height: 46px;
  }
}

@media (max-width: 340px) {
  .container,
  .header-inner,
  .mobile-nav-inner {
    width: calc(100% - 24px);
    min-width: 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 0 1 132px;
  }

  .brand img {
    width: 132px;
  }

  .mobile-menu-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .hero-copy,
  .section-copy,
  .industries-content,
  .quality-heading,
  .experience-main,
  .insights-heading,
  .contact-cta-content,
  .footer-brand,
  .footer-navigation,
  .footer-careers {
    min-width: 0;
    max-width: 100%;
  }

  .hero-layout {
    padding-top: 18px;
  }

  .eyebrow {
    max-width: 100%;
    gap: 8px;
    align-items: flex-start;
    font-size: 8px;
    line-height: 1.45;
  }

  .eyebrow span {
    width: 18px;
    flex: 0 0 18px;
    margin-top: 5px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(29px, 10vw, 34px);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 14px;
  }

  .button {
    max-width: 100%;
    padding-inline: 12px;
    gap: 8px;
    font-size: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .capability-bar-grid a {
    min-width: 0;
    padding-inline: 10px;
    grid-template-columns: 22px minmax(0, 1fr) 14px;
    gap: 4px;
    font-size: 10px;
    overflow-wrap: anywhere;
  }

  .section-copy h2,
  .section-heading-row h2,
  .industries-content h2,
  .quality-heading h2,
  .experience-main h2,
  .insights-heading h2,
  .contact-cta-content h2 {
    max-width: 100%;
    font-size: 27px;
    overflow-wrap: anywhere;
  }

  .supporting-links a {
    grid-template-columns: 32px minmax(0, 1fr);
    overflow-wrap: anywhere;
  }

  .capability-item {
    grid-template-columns: 30px minmax(0, 1fr) 18px;
  }

  .capability-name,
  .industry-list strong,
  .project-pathways a,
  .footer-contact > a,
  .footer-navigation a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .industry-list > a {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
  }

  .trust-index a,
  .project-pathways a,
  .insight-pathways > a,
  .collaboration-panel {
    min-width: 0;
  }

  .footer-layout {
    grid-template-columns: minmax(0, 1fr) 44px;
    column-gap: 12px;
  }

  .footer-navigation {
    column-gap: 14px;
  }

  .footer-masthead-code,
  .footer-masthead-signal {
    overflow-wrap: anywhere;
  }

  .prototype-credit-chip {
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    max-width: calc(100% - 16px);
    padding: 6px 9px 6px 6px;
    gap: 8px;
  }

  .credit-chip-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .credit-chip-copy small {
    font-size: 7px;
  }

  .credit-chip-copy strong {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
