:root {
  --ink: #061520;
  --ink-2: #0b2232;
  --ink-3: #123044;
  --blue: #0d8ec8;
  --cyan: #20c4db;
  --cyan-dark: #006f82;
  --lime: #9de35d;
  --white: #ffffff;
  --paper: #f5f8f9;
  --paper-2: #edf3f5;
  --line: #d8e2e6;
  --text: #18313e;
  --muted: #596f7a;
  --muted-light: #a9bdc8;
  --shadow: 0 24px 70px rgba(5, 23, 34, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6.7vw, 6.5rem);
  font-weight: 690;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  font-weight: 670;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 650;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 750;
  transform: translateY(-160%);
}

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

.eyebrow,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 790;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--cyan);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 23px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 12px 30px rgba(32, 196, 219, 0.18);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 16px 36px rgba(157, 227, 93, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 0.82rem;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
}

.button-white {
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan-dark);
}

.text-link-light {
  color: var(--white);
  text-decoration-color: var(--lime);
}

.topbar {
  position: relative;
  z-index: 31;
  color: #d8e6ec;
  background: #03101a;
  font-size: 0.75rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  letter-spacing: 0.03em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(157, 227, 93, 0.12);
}

.topbar-links {
  display: flex;
  gap: 24px;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--cyan);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 226, 230, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(5, 23, 34, 0.09);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--cyan-dark);
  background: var(--paper-2);
  border-radius: 11px;
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: square;
}

.brand-mark .brand-mark-core {
  fill: var(--lime);
  stroke: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 0.83rem;
  letter-spacing: 0.105em;
  line-height: 1.08;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.14rem;
  font-weight: 820;
  letter-spacing: 0.03em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.primary-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.primary-nav > a,
.nav-dropdown > summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 11px;
  border-radius: 7px;
  color: #263f4c;
  font-size: 0.81rem;
  font-weight: 720;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.primary-nav a[aria-current="page"],
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown[open] > summary {
  color: var(--ink);
  background: var(--paper-2);
}

.nav-contact {
  display: none !important;
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  width: min(820px, calc(100vw - 48px));
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transform: translateX(-48%);
}

.mega-menu::before {
  position: absolute;
  top: -19px;
  left: 0;
  width: 100%;
  height: 19px;
  content: "";
}

.mega-menu-vision {
  grid-template-columns: 0.85fr 1.8fr;
  gap: 12px;
}

.mega-menu-verify {
  width: min(730px, calc(100vw - 48px));
}

.mega-intro {
  min-height: 100%;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--ink-2), var(--ink));
  border-radius: 11px;
}

.mega-intro .mini-kicker {
  margin-bottom: 16px;
  color: var(--cyan);
}

.mega-intro strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.mega-intro p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.83rem;
  line-height: 1.6;
}

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

.mega-links a {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 15px 18px;
  border-radius: 9px;
}

.mega-links a:hover,
.mega-links a:focus-visible {
  background: var(--paper-2);
}

.mega-links strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.9rem;
}

.mega-links span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.menu-label {
  font-size: 0.78rem;
  font-weight: 760;
}

.menu-lines {
  display: grid;
  width: 19px;
  gap: 4px;
}

.menu-lines i {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero {
  height: clamp(520px, calc(100svh - 116px), 690px);
}

.home-hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 16, 26, 0.98) 0%, rgba(3, 16, 26, 0.91) 40%, rgba(3, 16, 26, 0.42) 72%, rgba(3, 16, 26, 0.2) 100%), linear-gradient(0deg, rgba(3, 16, 26, 0.62), transparent 56%);
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 60px;
  padding-block: clamp(40px, 6vh, 64px);
}

.home-hero-copy {
  max-width: 850px;
}

.home-hero h1,
.page-hero h1 {
  margin-bottom: 26px;
  color: var(--white);
}

.home-hero h1 {
  font-size: clamp(3rem, 5.25vw, 5.2rem);
}

.home-hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.home-hero-copy > p,
.page-hero-copy > p {
  max-width: 740px;
  margin-bottom: 34px;
  color: #d2e1e8;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button-link {
  display: flex;
  flex-direction: column;
  padding: 4px 10px;
}

.button-link span {
  color: var(--muted-light);
  font-size: 0.71rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button-link strong {
  color: var(--white);
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-meta span {
  padding: 9px 13px;
  color: #c8d9e1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  font-size: 0.73rem;
  backdrop-filter: blur(8px);
}

.hero-meta strong {
  color: var(--white);
}

.hero-callout {
  position: relative;
  max-width: 360px;
  justify-self: end;
  padding: 34px 30px 27px;
  color: var(--white);
  background: rgba(4, 23, 34, 0.75);
  border: 1px solid rgba(32, 196, 219, 0.4);
  backdrop-filter: blur(12px);
}

.hero-callout p {
  margin-bottom: 28px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-callout a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
}

.scan-corners::before,
.scan-corners::after,
.media-scan::before,
.media-scan::after {
  position: absolute;
  width: 24px;
  height: 24px;
  content: "";
  border-color: var(--lime);
}

.scan-corners::before,
.media-scan::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--lime);
  border-left: 3px solid var(--lime);
}

.scan-corners::after,
.media-scan::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
}

.trust-bar {
  color: var(--white);
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-grid p {
  display: grid;
  min-height: 116px;
  grid-template-columns: 34px 1fr;
  align-content: center;
  margin: 0;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-grid p:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-grid p > span {
  grid-row: 1 / 3;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 760;
}

.trust-grid strong {
  color: var(--white);
  font-size: 0.9rem;
}

.trust-grid small {
  margin-top: 4px;
  color: var(--muted-light);
  font-size: 0.7rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(58px, 6.5vw, 92px);
}

.section-soft {
  background: var(--paper);
}

.section-dark {
  color: #d8e6ec;
  background: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  max-width: 700px;
}

.section-heading h2 {
  margin-bottom: 28px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-dark .section-heading > p,
.section-dark .section-heading-row > p {
  color: var(--muted-light);
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 38px;
}

.section-heading-row > div {
  max-width: 720px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.72;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(50px, 8vw, 120px);
}

.lead-copy {
  margin-bottom: 28px;
  color: var(--ink-3);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.6;
}

.intro-copy > p:not(.lead-copy) {
  color: var(--muted);
}

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.three-pillars article {
  min-height: 180px;
  padding: 23px;
  background: var(--paper);
  border-top: 3px solid var(--cyan);
}

.three-pillars span {
  color: var(--ink);
  font-weight: 780;
}

.three-pillars p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.outcome-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.outcome-strip span {
  padding: 9px 13px;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 720;
}

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

.solution-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
  box-shadow: 0 20px 50px rgba(5, 23, 34, 0.14);
  transform: translateY(-5px);
}

.solution-index {
  color: var(--cyan-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.solution-card h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.solution-card:hover h3,
.solution-card:focus-visible h3,
.solution-card:hover p,
.solution-card:focus-visible p {
  color: var(--white);
}

.solution-card strong {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 0.8rem;
}

.solution-card:hover strong,
.solution-card:focus-visible strong {
  color: var(--lime);
}

.image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(45px, 7vw, 96px);
}

.image-story-media,
.engineering-media {
  position: relative;
}

.image-story-media img,
.engineering-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.production-showcase {
  color: var(--white);
  background: var(--ink);
}

.production-showcase .section-heading h2 {
  color: var(--white);
}

.production-showcase .section-heading > p,
.production-showcase .section-heading-row > p {
  color: #c5d7df;
}

.production-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.production-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.production-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.production-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 26, 0.04) 20%, rgba(3, 16, 26, 0.94) 100%);
  content: "";
}

.production-card:hover img,
.production-card:focus-visible img {
  transform: scale(1.025);
}

.production-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.production-card-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 790;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-card-copy h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.production-card-copy p {
  max-width: 560px;
  margin: 0;
  color: #d9e8ed;
  font-size: 0.83rem;
  line-height: 1.55;
}

.production-card-wide {
  grid-column: 1 / -1;
}

.production-card-wide,
.production-card-wide img {
  min-height: 410px;
}

.image-badge {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: flex;
  min-width: 235px;
  flex-direction: column;
  padding: 19px 22px;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--lime);
  box-shadow: var(--shadow);
}

.image-badge strong {
  font-size: 0.95rem;
}

.image-badge span {
  color: var(--muted-light);
  font-size: 0.78rem;
}

.image-story-copy > p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-lines {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.feature-lines li {
  display: grid;
  grid-template-columns: 35px 105px 1fr;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.feature-lines li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-lines span {
  color: var(--cyan-dark);
  font-size: 0.71rem;
  font-weight: 760;
}

.feature-lines strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.feature-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.application-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.matrix-card {
  min-height: 175px;
  padding: 30px;
  background: var(--ink-2);
  transition: background 180ms ease;
}

.matrix-card:hover,
.matrix-card:focus-visible {
  background: var(--ink-3);
}

.matrix-card span {
  display: block;
  margin-bottom: 36px;
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 730;
}

.matrix-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.8rem;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-grid-home {
  grid-template-columns: repeat(5, 1fr);
}

.process-step {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.process-step > span {
  display: block;
  margin-bottom: 36px;
  color: var(--cyan-dark);
  font-size: 0.73rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 14px;
  font-size: 1.23rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.process-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 17px 20px;
  background: var(--paper-2);
  border-radius: 8px;
}

.process-note strong {
  margin-right: 10px;
  color: var(--ink);
  font-size: 0.79rem;
}

.process-note span {
  padding: 5px 9px;
  color: var(--muted);
  background: var(--white);
  border-radius: 5px;
  font-size: 0.72rem;
}

.industries-preview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

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

.industry-list a {
  display: grid;
  grid-template-columns: 46px 0.75fr 1.25fr;
  align-items: center;
  gap: 12px;
  padding: 23px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.industry-list a:hover,
.industry-list a:focus-visible {
  padding-inline: 16px;
  background: var(--paper);
}

.industry-list span {
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.industry-list strong {
  color: var(--ink);
  font-size: 0.93rem;
}

.industry-list small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--cyan-dark);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item > div {
  padding: 0 54px 24px 0;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

.page-hero {
  height: clamp(520px, calc(100svh - 116px), 650px);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.55fr);
  align-items: center;
  gap: 75px;
  padding-block: clamp(44px, 6vh, 68px);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.breadcrumbs {
  margin-bottom: 34px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: #b8cbd5;
  font-size: 0.7rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  opacity: 0.55;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--cyan);
}

.hero-proof-card {
  padding: 30px;
  background: rgba(5, 24, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(14px);
}

.proof-label {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 790;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-proof-card p {
  display: grid;
  grid-template-columns: 34px 1fr;
  margin: 0;
  padding: 14px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.88rem;
  font-weight: 670;
}

.hero-proof-card p span {
  color: var(--lime);
  font-size: 0.68rem;
}

.hero-proof-card small {
  display: block;
  margin-top: 22px;
  color: var(--muted-light);
  font-size: 0.69rem;
  line-height: 1.55;
}

.section-nav {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.section-nav .container {
  display: flex;
  min-height: 57px;
  align-items: center;
  gap: 27px;
  overflow-x: auto;
}

.section-nav span,
.section-nav a {
  flex: 0 0 auto;
  font-size: 0.74rem;
}

.section-nav span {
  color: var(--muted);
  font-weight: 730;
}

.section-nav a {
  color: var(--ink);
  font-weight: 680;
}

.section-nav a:hover,
.section-nav a:focus-visible {
  color: var(--cyan-dark);
}

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

.capability-panel {
  min-height: 365px;
  padding: 32px;
  color: #d8e6ec;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
}

.panel-number {
  display: block;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.capability-panel h3 {
  margin-bottom: 26px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--muted-light);
  font-size: 0.8rem;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--lime);
  border-bottom: 1.5px solid var(--lime);
  content: "";
  transform: rotate(45deg);
}

.dark-checks li {
  color: var(--muted);
  border-top-color: var(--line);
}

.dark-checks li::before {
  border-color: var(--cyan-dark);
}

.format-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--ink-2);
  border-radius: 9px;
}

.format-row strong {
  color: var(--white);
  font-size: 0.79rem;
}

.format-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.format-row span {
  padding: 6px 10px;
  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  font-size: 0.7rem;
}

.engineering-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.engineering-media img {
  aspect-ratio: 0.93 / 1;
}

.media-caption {
  position: absolute;
  right: -25px;
  bottom: 30px;
  display: flex;
  max-width: 310px;
  flex-direction: column;
  padding: 20px 24px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.media-caption span {
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-caption strong {
  font-size: 0.85rem;
  line-height: 1.45;
}

.engineering-copy h2 {
  margin-bottom: 34px;
}

.number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.number-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.number-list span {
  color: var(--cyan-dark);
  font-size: 0.71rem;
  font-weight: 800;
}

.number-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

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

.related-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(5, 23, 34, 0.1);
  transform: translateY(-4px);
}

.related-card > span {
  margin-bottom: 46px;
  color: var(--cyan-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.related-card h3 {
  margin-bottom: 14px;
}

.related-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.related-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.76rem;
}

.inner-hero {
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.inner-hero-grid {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: 80px;
  padding-block: 52px;
}

.inner-hero .breadcrumbs li {
  color: var(--muted);
}

.inner-hero-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5vw, 5.25rem);
}

.inner-hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.inner-hero-media {
  position: relative;
  height: 350px;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inner-hero-signal {
  position: relative;
  width: 360px;
  height: 360px;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.inner-hero-signal::before,
.inner-hero-signal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.inner-hero-signal::before {
  width: 66%;
  height: 66%;
}

.inner-hero-signal::after {
  width: 32%;
  height: 32%;
  background: var(--ink);
  box-shadow: 0 0 0 18px rgba(32, 196, 219, 0.12);
}

.inner-hero-signal span {
  position: absolute;
  width: 52px;
  height: 52px;
  border-color: var(--cyan-dark);
}

.inner-hero-signal span:nth-child(1) {
  top: 0;
  left: 0;
  border-top: 4px solid var(--cyan-dark);
  border-left: 4px solid var(--cyan-dark);
}

.inner-hero-signal span:nth-child(2) {
  top: 0;
  right: 0;
  border-top: 4px solid var(--cyan-dark);
  border-right: 4px solid var(--cyan-dark);
}

.inner-hero-signal span:nth-child(3) {
  bottom: 0;
  right: 0;
  border-right: 4px solid var(--cyan-dark);
  border-bottom: 4px solid var(--cyan-dark);
}

.inner-hero-signal span:nth-child(4) {
  bottom: 0;
  left: 0;
  border-bottom: 4px solid var(--cyan-dark);
  border-left: 4px solid var(--cyan-dark);
}

.industry-band {
  padding-block: 65px;
  border-top: 1px solid var(--line);
}

.industry-band-dark {
  color: #d8e6ec;
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.1);
}

.industry-band-soft {
  background: var(--paper);
}

.industry-band-grid {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: start;
  gap: 50px;
}

.industry-band-number {
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.industry-band h2 {
  margin-bottom: 22px;
}

.industry-band-dark h2 {
  color: var(--white);
}

.industry-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.industry-band-dark p {
  color: var(--muted-light);
}

.architecture-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.architecture-card {
  min-height: 310px;
  padding: 30px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
}

.architecture-card > span {
  display: block;
  margin-bottom: 55px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.architecture-card p,
.capability-panel p {
  color: var(--muted-light);
  font-size: 0.8rem;
  line-height: 1.65;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.delivery-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.delivery-timeline li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-timeline > li > span {
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.delivery-timeline h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.delivery-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 9vw, 130px);
}

.compliance-copy > p {
  color: var(--muted);
  font-size: 1rem;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.compliance-tags span {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.73rem;
  font-weight: 680;
}

.split-callout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.split-callout > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
}

.contact-details > p {
  color: var(--muted);
  font-size: 1rem;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 35px 0;
}

.contact-methods a {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--paper);
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-methods strong {
  margin: 4px 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.contact-methods small {
  color: var(--muted);
  font-size: 0.73rem;
}

.evidence-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.evidence-card h3 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.contact-form-card {
  padding: clamp(30px, 5vw, 54px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form-card > h2 {
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.contact-form-card > p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.8rem;
}

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

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

.project-form label > span:not(.button) {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 720;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d7dc;
  border-radius: 7px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.project-form input,
.project-form select {
  min-height: 50px;
  padding: 11px 13px;
}

.project-form textarea {
  min-height: 130px;
  padding: 13px;
  line-height: 1.55;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(32, 196, 219, 0.16);
}

.project-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.project-form .consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--cyan-dark);
}

.project-form .consent span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.project-form .button {
  margin-top: 24px;
  cursor: pointer;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
}

.form-note a {
  color: var(--cyan-dark);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 50px 0 16px;
  font-size: 1.8rem;
}

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

.legal-copy a {
  color: var(--cyan-dark);
  text-decoration: underline;
}

.legal-updated {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem !important;
}

.message-page {
  background: var(--paper);
}

.message-card {
  max-width: 850px;
  padding: clamp(38px, 7vw, 80px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.message-card h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.message-card > p {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

.message-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
}

.message-code {
  display: block;
  margin-bottom: 20px;
  color: var(--cyan-dark);
  font-size: 5rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-cta {
  color: var(--white);
  background: linear-gradient(125deg, #087c96, #0d94ac 55%, #087c96);
}

.contact-cta-grid {
  display: grid;
  min-height: 320px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 80px;
  padding-block: 52px;
}

.contact-cta h2 {
  max-width: 830px;
  margin-bottom: 24px;
  color: var(--white);
}

.contact-cta p {
  max-width: 780px;
  margin: 0;
  color: #daf4f7;
  font-size: 1rem;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.site-footer {
  color: #b6c9d2;
  background: #03101a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-block: 75px;
}

.brand-footer .brand-mark {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

.brand-footer .brand-copy,
.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy span {
  color: #96adb8;
}

.footer-brand > p {
  max-width: 370px;
  margin: 26px 0;
  color: #8fa7b2;
  font-size: 0.82rem;
  line-height: 1.7;
}

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

.footer-contact a {
  color: var(--white) !important;
  font-size: 0.86rem !important;
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div > a {
  margin-bottom: 10px;
  color: #8fa7b2;
  font-size: 0.75rem;
}

.footer-grid > div > a:hover,
.footer-grid > div > a:focus-visible {
  color: var(--cyan);
}

.footer-base {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #738b96;
  font-size: 0.7rem;
}

.footer-base p {
  margin: 0;
}

.footer-base > div {
  display: flex;
  gap: 22px;
}

.footer-base a:hover,
.footer-base a:focus-visible {
  color: var(--cyan);
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 150ms;
}

.reveal-delay-3 {
  transition-delay: 220ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 17px;
  }

  .primary-nav > a,
  .nav-dropdown > summary {
    padding-inline: 8px;
    font-size: 0.76rem;
  }

  .header-cta {
    display: none;
  }

  .nav-contact {
    display: flex !important;
  }

  .process-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

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

  .topbar p {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px 18px 100px;
    overflow-y: auto;
    background: var(--white);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav > a,
  .nav-dropdown > summary {
    min-height: 52px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.9rem;
  }

  .nav-dropdown {
    position: static;
  }

  .mega-menu,
  .mega-menu-verify {
    position: static;
    display: block;
    width: auto;
    padding: 8px 0 15px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .mega-intro {
    display: none;
  }

  .mega-links {
    display: block;
  }

  .mega-links a {
    min-height: auto;
    padding: 11px 12px;
  }

  .home-hero,
  .home-hero-grid {
    min-height: 0;
    height: clamp(520px, calc(100svh - 108px), 640px);
  }

  .home-hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-callout,
  .hero-proof-card {
    display: none;
  }

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

  .intro-grid,
  .image-story-grid,
  .industries-preview-grid,
  .faq-grid,
  .engineering-grid,
  .timeline-layout,
  .compliance-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    max-width: 680px;
    margin-top: 24px;
  }

  .image-story-media img,
  .engineering-media img {
    max-height: 630px;
    aspect-ratio: 1.25 / 1;
  }

  .capability-columns,
  .related-grid,
  .architecture-grid,
  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .production-card,
  .production-card img {
    min-height: 320px;
  }

  .inner-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .inner-hero-media {
    height: 390px;
  }

  .inner-hero-signal {
    display: none;
  }

  .industry-band-grid {
    grid-template-columns: 55px 1fr;
  }

  .industry-band-grid > ul {
    grid-column: 2;
  }

  .contact-cta-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 60px;
  }

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

  .topbar-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.67rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy {
    font-size: 0.67rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .menu-label {
    display: none;
  }

  .home-hero,
  .home-hero-grid {
    min-height: 0;
    height: clamp(535px, calc(100svh - 108px), 640px);
  }

  .home-hero-grid {
    padding-block: 34px 30px;
  }

  .home-hero-overlay,
  .page-hero-overlay {
    background: linear-gradient(90deg, rgba(3, 16, 26, 0.97), rgba(3, 16, 26, 0.78)), linear-gradient(0deg, rgba(3, 16, 26, 0.65), transparent);
  }

  .home-hero h1,
  .page-hero h1,
  .inner-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .home-hero-copy > p,
  .page-hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: none;
  }

  .hero-meta span {
    font-size: 0.65rem;
  }

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

  .trust-grid p,
  .trust-grid p:first-child {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .section {
    padding-block: 56px;
  }

  .three-pillars,
  .solution-grid,
  .production-gallery,
  .capability-columns,
  .related-grid,
  .architecture-grid,
  .principle-grid,
  .process-grid,
  .process-grid-home,
  .application-matrix {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 225px;
  }

  .production-card,
  .production-card img {
    min-height: 285px;
  }

  .production-card-wide {
    grid-column: auto;
  }

  .production-card-wide,
  .production-card-wide img {
    min-height: 285px;
  }

  .production-card-copy {
    padding: 24px;
  }

  .image-story-media img,
  .engineering-media img {
    aspect-ratio: 1 / 1;
  }

  .image-badge,
  .media-caption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .feature-lines li {
    grid-template-columns: 34px 1fr;
  }

  .feature-lines p {
    grid-column: 2;
    margin-top: 6px;
  }

  .process-step {
    min-height: 185px;
  }

  .industry-list a {
    grid-template-columns: 40px 1fr;
  }

  .industry-list small {
    grid-column: 2;
  }

  .page-hero,
  .page-hero-grid {
    min-height: 0;
    height: clamp(500px, calc(100svh - 108px), 590px);
  }

  .page-hero-grid {
    padding-block: 55px;
  }

  .section-nav {
    top: var(--header-height);
  }

  .section-nav .container {
    gap: 20px;
  }

  .section-nav span {
    display: none;
  }

  .format-row {
    grid-template-columns: 1fr;
  }

  .capability-panel {
    min-height: auto;
  }

  .inner-hero-grid {
    padding-block: 42px;
  }

  .inner-hero-media {
    height: 250px;
  }

  .industry-band {
    padding-block: 52px;
  }

  .industry-band-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-band-grid > ul {
    grid-column: auto;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .split-callout {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-base {
    min-height: 110px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 60px;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(5, 23, 34, 0.18);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 760;
  }

  .mobile-action-bar a:last-child {
    color: var(--ink);
    background: var(--cyan);
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .home-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 4.65vw, 4.6rem);
  }

  .home-hero-copy > p,
  .page-hero-copy > p {
    margin-bottom: 22px;
  }

  .hero-meta {
    margin-top: 20px;
  }

  .hero-callout,
  .hero-proof-card {
    padding: 24px;
  }

  .page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 4.7vw, 4.8rem);
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }
}

@media (min-width: 981px) and (max-height: 640px) {
  .hero-meta {
    display: none;
  }

  .home-hero,
  .page-hero {
    height: calc(100svh - 116px);
    min-height: 460px;
  }
}

@media (max-width: 680px) and (max-height: 720px) {
  .home-hero,
  .home-hero-grid,
  .page-hero,
  .page-hero-grid {
    height: calc(100svh - 108px);
    min-height: 460px;
  }

  .home-hero-grid,
  .page-hero-grid {
    padding-block: 20px;
  }

  .home-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.15rem, 11vw, 2.8rem);
  }

  .page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 9.5vw, 2.35rem);
  }

  .home-hero .eyebrow,
  .page-hero .eyebrow {
    margin-bottom: 12px;
  }

  .page-hero .breadcrumbs {
    display: none;
  }

  .home-hero-copy > p,
  .page-hero-copy > p {
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-block: 10px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .site-header,
  .section-nav,
  .contact-cta,
  .site-footer,
  .mobile-action-bar,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 30px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
