/* Sorting Solutions — precision industrial interface */
:root {
  --ink-950: #03070c;
  --ink-900: #06101a;
  --ink-850: #081522;
  --ink-800: #0b1928;
  --ink-750: #102236;
  --ink-700: #17304a;
  --steel-700: #476078;
  --steel-600: #61788e;
  --steel-500: #7f94a8;
  --steel-400: #9db0c1;
  --steel-300: #c2ced8;
  --steel-200: #dde5eb;
  --steel-100: #edf2f6;
  --white: #ffffff;
  --blue: #2d7fff;
  --blue-deep: #165ce8;
  --blue-action-deep: #0f4fd8;
  --blue-action: #155ee8;
  --blue-action-light: #1a70d5;
  --cyan: #37e5ef;
  --violet: #6d5cff;
  --amber: #ffb64d;
  --green: #47db9a;
  --danger: #e4546d;
  --page: #f5f8fb;
  --panel: #ffffff;
  --line: rgba(19, 53, 82, 0.14);
  --line-dark: rgba(146, 184, 214, 0.15);
  --text: #15273a;
  --text-soft: #536a80;
  --shadow-sm: 0 12px 35px rgba(5, 21, 36, 0.08);
  --shadow-md: 0 24px 70px rgba(4, 20, 37, 0.14);
  --shadow-lg: 0 40px 120px rgba(0, 10, 25, 0.34);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --font-display: "Space Grotesk", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --font-body: Inter, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.search-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  color: inherit;
}

::selection {
  background: rgba(45, 127, 255, 0.24);
  color: var(--ink-900);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.1vw, 4.25rem);
}

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

p {
  margin-bottom: 1.15rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 18px;
  top: 18px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
  font-weight: 750;
  transition: transform .2s ease;
}

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

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

.narrow {
  max-width: 940px;
}

.section,
.section-sm {
  position: relative;
  overflow: clip;
}

.section {
  padding: clamp(78px, 9vw, 126px) 0;
}

.section-sm {
  padding: clamp(54px, 6vw, 78px) 0;
}

.section-soft {
  background:
    radial-gradient(circle at 10% 0%, rgba(45, 127, 255, .08), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #edf3f7 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 82% 8%, rgba(55, 229, 239, .09), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(109, 92, 255, .10), transparent 31%),
    var(--ink-900);
  color: var(--steel-300);
}

.section-blue {
  background:
    linear-gradient(135deg, rgba(15, 88, 215, .96), rgba(13, 39, 92, .98)),
    var(--blue-deep);
  color: rgba(255, 255, 255, .86);
}

.section-dark h2,
.section-dark h3,
.section-blue h2,
.section-blue h3,
.callout h2,
.cta-band h2,
.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-head > div {
  max-width: 860px;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head p:last-child,
.section-head h2:last-child {
  margin-bottom: 0;
}

.section-lead,
.lead {
  color: var(--text-soft);
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.65;
}

.section-dark .lead,
.section-blue .lead {
  color: rgba(232, 241, 249, .78);
}

.muted {
  color: var(--text-soft);
}

.small,
.micro-copy,
.hint {
  color: var(--text-soft);
  font-size: .88rem;
  line-height: 1.55;
}

.eyebrow,
.answer-label,
.kicker,
.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.answer-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 14px rgba(55, 229, 239, .45);
}

.eyebrow.light,
.section-dark .eyebrow,
.section-blue .eyebrow {
  color: var(--cyan);
}

.text-gradient {
  background: linear-gradient(100deg, #ffffff 0%, #bceeff 42%, #7da7ff 72%, #c4b9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Utility strip and navigation */
.top-strip {
  position: relative;
  z-index: 1100;
  min-height: 36px;
  background: #02070c;
  border-bottom: 1px solid rgba(124, 161, 190, .12);
  color: var(--steel-400);
  font-size: .76rem;
  letter-spacing: .035em;
}

.top-strip .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c5d3df;
  font-weight: 650;
}

.top-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(71, 219, 154, .10), 0 0 16px rgba(71, 219, 154, .45);
}

.top-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-items a {
  transition: color .2s ease;
}

.top-items a:hover,
.top-items a:focus-visible {
  color: var(--white);
}

.top-phone {
  color: var(--white);
  font-weight: 750;
  letter-spacing: .04em;
}

.site-header {
  position: sticky;
  z-index: 1050;
  top: 0;
  height: var(--header-height);
  background: rgba(4, 12, 20, .84);
  border-bottom: 1px solid rgba(142, 177, 205, .14);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
  transition: height .28s var(--ease), background .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(3, 9, 16, .94);
  box-shadow: 0 14px 38px rgba(0, 7, 16, .28);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  flex: 0 0 auto;
  width: clamp(240px, 23vw, 350px);
}

.site-logo img {
  width: 100%;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link,
.nav-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #d7e2eb;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 680;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-toggle:hover,
.nav-link:focus-visible,
.nav-toggle:focus-visible,
.nav-item.is-current > .nav-toggle,
.nav-link.is-current {
  background: rgba(75, 139, 199, .12);
  color: var(--white);
}

.nav-toggle svg {
  width: 15px;
  transition: transform .22s ease;
}

.nav-item:hover .nav-toggle svg,
.nav-item:focus-within .nav-toggle svg {
  transform: rotate(180deg);
}

.nav-cta {
  min-height: 46px !important;
  padding-inline: 17px !important;
  margin-left: 8px;
  font-size: .82rem !important;
}

.nav-search {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  margin-left: 3px;
  border: 1px solid rgba(148, 181, 206, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: #dce8f1;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.nav-search:hover,
.nav-search:focus-visible {
  border-color: rgba(55, 229, 239, .6);
  background: rgba(55, 229, 239, .08);
  transform: translateY(-1px);
}

.nav-search svg {
  width: 19px;
}

.mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(calc(100vw - 40px), 1120px);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  border: 1px solid rgba(116, 164, 201, .17);
  border-radius: 0 0 22px 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(45, 127, 255, .12), transparent 30%),
    rgba(5, 15, 25, .985);
  box-shadow: 0 35px 80px rgba(0, 7, 18, .42);
  transition: opacity .2s ease, transform .25s var(--ease), visibility .2s ease;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

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

.mega-link {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #dce7ef;
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease;
}

.mega-link:hover,
.mega-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(55, 229, 239, .22);
  background: linear-gradient(135deg, rgba(45, 127, 255, .12), rgba(55, 229, 239, .05));
}

.mega-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94, 155, 204, .22);
  border-radius: 12px;
  background: #0b1c2c;
  color: var(--cyan);
}

.mega-icon svg {
  width: 21px;
  height: 21px;
}

.mega-link strong,
.mega-link small {
  display: block;
}

.mega-link strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .92rem;
  line-height: 1.25;
}

.mega-link small {
  color: #7890a5;
  font-size: .73rem;
  line-height: 1.35;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(140, 177, 205, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  width: 21px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--white);
  transition: transform .22s ease, opacity .22s ease;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }
.mobile-toggle[aria-expanded="true"] span { background: transparent; }
.mobile-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.btn-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .91rem;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  overflow: hidden;
  background: linear-gradient(115deg, var(--blue-action-deep), var(--blue-action) 55%, var(--blue-action-light));
  color: var(--white);
  box-shadow: 0 16px 38px rgba(32, 105, 236, .28), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  transform: translateX(-130%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent);
  transition: transform .65s ease;
}

.btn-primary:hover::after {
  transform: translateX(130%) skewX(-20deg);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 48px rgba(32, 105, 236, .38), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.btn-secondary {
  border-color: rgba(193, 220, 239, .32);
  background: rgba(6, 20, 33, .44);
  color: var(--white);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(55, 229, 239, .58);
  background: rgba(55, 229, 239, .08);
}

.btn-dark {
  background: var(--ink-900);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(7, 21, 35, .18);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #102842;
}

.btn-outline {
  border-color: rgba(22, 67, 103, .2);
  background: rgba(255, 255, 255, .65);
  color: var(--ink-900);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(45, 127, 255, .48);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-link {
  min-height: auto;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  color: var(--blue-deep);
}

.btn-link::after {
  content: "→";
  transition: transform .2s ease;
}

.btn-link:hover::after,
.btn-link:focus-visible::after {
  transform: translateX(4px);
}

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  z-index: 5;
  background: var(--ink-900);
  border-top: 1px solid rgba(123, 165, 197, .10);
  border-bottom: 1px solid rgba(123, 165, 197, .12);
}

.breadcrumbs ol {
  min-height: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  color: #7890a5;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .045em;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #3d566e;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-900);
  color: var(--white);
}

.hero.compact {
  min-height: 590px;
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -5;
}

.hero-media img {
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(.78) contrast(1.04) brightness(.62);
  transform: scale(1.025);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 14, .97) 0%, rgba(4, 13, 23, .92) 35%, rgba(5, 17, 29, .50) 67%, rgba(4, 12, 22, .54) 100%),
    linear-gradient(180deg, rgba(2, 8, 14, .25), rgba(2, 8, 14, .72));
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(127, 177, 215, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 177, 215, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .65) 55%, transparent 100%);
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .65) 55%, transparent 100%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 15%, rgba(55, 229, 239, .14) 15.1% 15.2%, transparent 15.3% 100%);
  transform: translateX(-35%);
  animation: scan-grid 11s linear infinite;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 640px;
  height: 640px;
  right: -100px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 129, 255, .28), rgba(55, 229, 239, .06) 38%, transparent 67%);
  filter: blur(7px);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 110px;
}

.hero-content {
  max-width: 820px;
}

.hero-content h1 {
  margin-bottom: 26px;
  color: var(--white);
  text-wrap: balance;
}

.hero-content .lead {
  max-width: 760px;
  color: rgba(225, 237, 246, .82);
}

.hero-actions {
  margin-top: 34px;
}

.hero-chips,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li,
.tag-list li {
  padding: 8px 12px;
  border: 1px solid rgba(151, 192, 221, .18);
  border-radius: 999px;
  background: rgba(5, 17, 29, .48);
  color: #bed0dd;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .055em;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 44px), var(--container));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateX(-50%);
  border: 1px solid rgba(155, 191, 218, .16);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgba(3, 12, 21, .78);
  box-shadow: 0 -18px 55px rgba(0, 8, 18, .18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-proof > div {
  position: relative;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px 20px 52px;
}

.hero-proof > div:not(:last-child) {
  border-right: 1px solid rgba(150, 188, 217, .13);
}

.hero-proof > div::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 35px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(55, 229, 239, .08), 0 0 18px rgba(55, 229, 239, .5);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .96rem;
}

.hero-proof span {
  color: #8199ad;
  font-size: .78rem;
}

.hero.compact > .container {
  padding-top: 66px;
  padding-bottom: 70px;
}

.hero.compact .hero-content {
  max-width: 900px;
}

.hero.compact .hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

/* Premium home hero */
.hero-home {
  min-height: clamp(760px, calc(100vh - 36px), 940px);
}

.hero-home > .container {
  width: min(calc(100% - 44px), 1320px);
  padding-top: 86px;
  padding-bottom: 126px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.hero-home .hero-content {
  max-width: none;
}

.hero-home h1 {
  font-size: clamp(3.7rem, 7.2vw, 7rem);
  letter-spacing: -.058em;
  line-height: .96;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(135, 182, 216, .18);
  border-radius: 999px;
  background: rgba(5, 16, 28, .45);
  color: #c5d7e3;
  font-family: var(--font-mono);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(71, 219, 154, .08), 0 0 14px rgba(71, 219, 154, .55);
}

.hero-contact-inline {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  color: #8ba3b7;
  font-size: .83rem;
}

.hero-contact-inline svg {
  width: 18px;
  color: var(--cyan);
}

.hero-contact-inline a {
  color: var(--white);
  font-weight: 740;
}

.hero-console {
  position: relative;
  align-self: center;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(130, 181, 217, .21);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(15, 34, 53, .76), rgba(4, 14, 24, .78)),
    rgba(6, 17, 29, .74);
  box-shadow: 0 34px 90px rgba(0, 8, 18, .34), inset 0 1px 0 rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(129, 177, 211, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 177, 211, .05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(#000, transparent 82%);
  mask-image: linear-gradient(#000, transparent 82%);
}

.console-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(129, 174, 207, .13);
}

.console-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.console-title::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(55, 229, 239, .7);
}

.console-state {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.console-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.console-step {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 57px;
  padding: 10px 11px;
  border: 1px solid rgba(119, 164, 198, .12);
  border-radius: 13px;
  background: rgba(7, 22, 36, .58);
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.console-step::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -11px;
  width: 1px;
  height: 11px;
  background: linear-gradient(var(--blue), rgba(55, 229, 239, .2));
}

.console-step:last-child::after {
  display: none;
}

.console-step.is-active {
  transform: translateX(4px);
  border-color: rgba(55, 229, 239, .35);
  background: linear-gradient(90deg, rgba(45, 127, 255, .16), rgba(7, 22, 36, .58));
}

.console-index {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #102842;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 760;
}

.console-step strong,
.console-step small {
  display: block;
}

.console-step strong {
  color: #f2f8fc;
  font-family: var(--font-display);
  font-size: .91rem;
}

.console-step small {
  color: #728ba0;
  font-size: .69rem;
}

.console-signal {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #345069;
}

.console-step.is-active .console-signal {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(71, 219, 154, .08), 0 0 12px rgba(71, 219, 154, .45);
}

.console-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.console-metrics > div {
  padding: 13px;
  border: 1px solid rgba(119, 164, 198, .11);
  border-radius: 12px;
  background: rgba(4, 15, 25, .54);
}

.console-metrics span,
.console-metrics strong {
  display: block;
}

.console-metrics span {
  margin-bottom: 5px;
  color: #698297;
  font-family: var(--font-mono);
  font-size: .61rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.console-metrics strong {
  color: #e9f2f8;
  font-size: .76rem;
  line-height: 1.35;
}

@keyframes scan-grid {
  from { transform: translateX(-38%); }
  to { transform: translateX(120%); }
}

/* Capability rail */
.capability-rail {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(18, 54, 83, .09);
  border-bottom: 1px solid rgba(18, 54, 83, .10);
  background: var(--white);
}

.capability-rail::before,
.capability-rail::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
}

.capability-rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.capability-rail::after {
  right: 0;
  background: linear-gradient(-90deg, var(--white), transparent);
}

.capability-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  animation: capability-marquee 36s linear infinite;
}

.capability-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  color: #3d566d;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.capability-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(45, 127, 255, .32);
}

@keyframes capability-marquee {
  to { transform: translateX(-50%); }
}

/* Cards and content structures */
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.comparison-card,
.system-card,
.article-card,
.contact-panel,
.answer-box,
.form-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .87);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

.feature-card,
.comparison-card {
  padding: 29px;
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}

.feature-card::after,
.comparison-card::after {
  content: "";
  position: absolute;
  inset: auto -45% -75% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 127, 255, .10), transparent 70%);
  pointer-events: none;
}

.feature-card:hover,
.comparison-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 127, 255, .25);
  box-shadow: var(--shadow-md);
}

.section-dark .feature-card,
.section-blue .feature-card {
  border-color: var(--line-dark);
  background: rgba(8, 25, 41, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.section-blue .feature-card {
  background: rgba(4, 25, 62, .22);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(45, 127, 255, .19);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(45, 127, 255, .12), rgba(55, 229, 239, .05));
  color: var(--blue-deep);
}

.section-dark .feature-icon,
.section-blue .feature-icon {
  border-color: rgba(55, 229, 239, .18);
  background: rgba(55, 229, 239, .07);
  color: var(--cyan);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.comparison-card h3 {
  margin-bottom: 12px;
}

.feature-card p:last-child,
.comparison-card p:last-child {
  margin-bottom: 0;
}

.section-dark .feature-card p,
.section-blue .feature-card p {
  color: #9eb1c1;
}

.system-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}

.system-card:hover {
  transform: translateY(-7px);
  border-color: rgba(45, 127, 255, .28);
  box-shadow: var(--shadow-md);
}

.system-card picture,
.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.2;
  background: #dce5eb;
}

.system-card picture::after,
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 13, 23, .34));
  pointer-events: none;
}

.system-card img,
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .4s ease;
}

.system-card:hover img,
.card-media:hover img {
  transform: scale(1.045);
}

.system-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.system-content h3 {
  margin-bottom: 12px;
}

.system-content p {
  color: var(--text-soft);
}

.system-content .btn-link {
  margin-top: auto;
  padding-top: 9px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: .66rem;
}

.answer-box {
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(245, 249, 252, .92)),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.answer-box::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -75px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 229, 239, .16), rgba(45, 127, 255, .05) 47%, transparent 70%);
}

.answer-box h2,
.answer-box p {
  position: relative;
  z-index: 1;
}

/* Home: intro */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 95px);
  align-items: start;
}

.intro-statement h2 {
  margin-bottom: 20px;
}

.intro-statement .lead {
  margin-bottom: 0;
}

.precision-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(34, 83, 119, .16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(45, 127, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 127, 255, .035) 1px, transparent 1px),
    var(--white);
  background-size: 28px 28px;
  box-shadow: var(--shadow-sm);
}

.precision-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 0 18px rgba(45, 127, 255, .35);
}

.precision-card p {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.precision-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.precision-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #29445c;
  font-size: .88rem;
  font-weight: 680;
}

.precision-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

/* Application selector */
.section-selector {
  background:
    radial-gradient(circle at 95% 0%, rgba(45, 127, 255, .13), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(55, 229, 239, .09), transparent 29%),
    var(--ink-900);
  color: var(--steel-300);
}

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

.selector-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 24px;
  align-items: stretch;
}

.selector-panel,
.selector-result {
  border: 1px solid rgba(139, 179, 209, .16);
  border-radius: 26px;
  background: rgba(7, 23, 38, .66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.selector-panel {
  padding: clamp(22px, 3.5vw, 34px);
}

.selector-panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  color: #7e97ab;
  font-family: var(--font-mono);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.selector-panel-label span:last-child {
  color: var(--cyan);
}

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

.selector-option {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(120, 166, 199, .12);
  border-radius: 14px;
  background: rgba(3, 13, 23, .43);
  color: #b8cad8;
  cursor: pointer;
  text-align: left;
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease, color .22s ease;
}

.selector-option:hover,
.selector-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(55, 229, 239, .31);
  color: var(--white);
}

.selector-option[aria-selected="true"] {
  border-color: rgba(55, 229, 239, .45);
  background: linear-gradient(135deg, rgba(45, 127, 255, .17), rgba(55, 229, 239, .06));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 8, 17, .18);
}

.selector-option-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #10273d;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 760;
}

.selector-option span:last-child {
  font-family: var(--font-display);
  font-size: .91rem;
  font-weight: 680;
  line-height: 1.3;
}

.selector-result {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 100% 0%, rgba(55, 229, 239, .11), transparent 38%),
    linear-gradient(145deg, rgba(15, 42, 68, .90), rgba(5, 20, 34, .88));
}

.selector-result::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(55, 229, 239, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(45, 127, 255, .025), 0 0 0 76px rgba(45, 127, 255, .018);
}

.selector-result > * {
  position: relative;
  z-index: 1;
}

.selector-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 11px;
  border: 1px solid rgba(55, 229, 239, .20);
  border-radius: 999px;
  background: rgba(55, 229, 239, .07);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.selector-result h3 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.selector-result p {
  color: #a9bdcc;
}

.selector-recommendations {
  display: grid;
  gap: 9px;
  margin: 26px 0 0;
}

.selector-recommendation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(131, 176, 208, .13);
  border-radius: 12px;
  background: rgba(3, 14, 24, .42);
  color: #e7f0f6;
  font-size: .84rem;
  font-weight: 680;
  transition: border-color .2s ease, transform .2s ease;
}

.selector-recommendation:hover,
.selector-recommendation:focus-visible {
  transform: translateX(4px);
  border-color: rgba(55, 229, 239, .31);
}

.selector-recommendation span {
  color: var(--cyan);
}

.selector-disclaimer {
  margin-top: 24px;
  color: #6f899e !important;
  font-size: .75rem;
}

/* System showcase */
.system-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.system-feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(24, 67, 101, .14);
  border-radius: 24px;
  background: var(--ink-800);
  box-shadow: 0 18px 55px rgba(7, 26, 42, .12);
  isolation: isolate;
}

.system-feature-card.wide {
  grid-column: span 8;
}

.system-feature-card.tall {
  min-height: 560px;
}

.system-feature-card picture,
.system-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.system-feature-card img {
  object-fit: cover;
  filter: saturate(.85) contrast(1.03);
  transition: transform .75s var(--ease), filter .45s ease;
}

.system-feature-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 22, .08) 12%, rgba(3, 11, 19, .16) 42%, rgba(3, 10, 18, .94) 100%);
}

.system-feature-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(55, 229, 239, .30), transparent 32%, transparent 70%, rgba(45, 127, 255, .16)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.system-feature-card:hover::after {
  opacity: 1;
}

.system-feature-card:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.05);
}

.system-feature-content {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}

.system-feature-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.system-feature-content h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.system-feature-content p {
  max-width: 600px;
  margin-bottom: 18px;
  color: #b4c5d2;
  font-size: .91rem;
}

.system-feature-content .btn-link {
  color: var(--cyan);
}

.system-feature-meta {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(190, 218, 237, .19);
  border-radius: 999px;
  background: rgba(3, 11, 19, .55);
  color: #dceaf3;
  font-family: var(--font-mono);
  font-size: .61rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Animated process lab */
.process-lab {
  background:
    radial-gradient(circle at 50% -20%, rgba(45, 127, 255, .20), transparent 45%),
    linear-gradient(rgba(117, 171, 210, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 171, 210, .05) 1px, transparent 1px),
    var(--ink-950);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.process-lab .section-head {
  align-items: center;
}

.process-lab-note {
  max-width: 320px;
  padding: 14px 16px;
  border: 1px solid rgba(129, 177, 211, .13);
  border-radius: 13px;
  background: rgba(8, 25, 41, .58);
  color: #8199ad;
  font-family: var(--font-mono);
  font-size: .69rem;
  line-height: 1.55;
}

.process-visual {
  position: relative;
  padding: 54px 24px 24px;
  border: 1px solid rgba(128, 176, 209, .15);
  border-radius: 28px;
  background: rgba(5, 17, 29, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 30px 70px rgba(0, 7, 16, .24);
}

.process-track-line {
  position: absolute;
  left: 8.5%;
  right: 8.5%;
  top: 76px;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 127, 255, .18), var(--blue), var(--cyan), rgba(55, 229, 239, .18));
  box-shadow: 0 0 18px rgba(45, 127, 255, .26);
}

.process-particle {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #c5f9ff;
  border-radius: 3px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(45, 127, 255, .09), 0 0 20px rgba(55, 229, 239, .55);
  opacity: 0;
}

.process-visual.is-active .process-particle {
  animation: process-particle 7s linear infinite;
}

.process-visual.is-active .process-particle:nth-child(2) { animation-delay: -2.35s; }
.process-visual.is-active .process-particle:nth-child(3) { animation-delay: -4.7s; }

@keyframes process-particle {
  0% { left: 0; opacity: 0; transform: rotate(0deg) scale(.75); }
  8% { opacity: 1; }
  50% { transform: rotate(180deg) scale(1); }
  92% { opacity: 1; }
  100% { left: calc(100% - 12px); opacity: 0; transform: rotate(360deg) scale(.75); }
}

.process-stages {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-stage {
  min-height: 240px;
  padding: 0 12px 20px;
  text-align: center;
}

.process-stage-node {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 34px;
  border: 1px solid rgba(55, 229, 239, .33);
  border-radius: 14px;
  background: #0d263e;
  color: var(--cyan);
  box-shadow: 0 0 0 8px rgba(6, 18, 31, .92), 0 0 25px rgba(45, 127, 255, .16);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 760;
}

.process-stage h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.process-stage p {
  margin-bottom: 0;
  color: #7e96a9;
  font-size: .78rem;
  line-height: 1.55;
}

.process,
.process-step {
  position: relative;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin-top: 48px;
}

.process-step {
  padding: 26px 22px;
  border: 1px solid rgba(136, 177, 207, .15);
  border-radius: 17px;
  background: rgba(8, 25, 41, .66);
}

.process-step::before {
  counter-increment: process-step;
  content: "0" counter(process-step);
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.process { counter-reset: process-step; }
.process-step h3 { color: var(--white); }
.process-step p { margin-bottom: 0; color: #8fa5b6; font-size: .86rem; }

/* Engineering visual and split content */
.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.media-split.reverse {
  grid-template-columns: minmax(380px, .92fr) minmax(0, 1fr);
}

.media-split.reverse > :first-child { order: 1; }
.media-split.reverse > :last-child { order: 2; }

.media-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(30, 74, 108, .15);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.media-frame picture {
  aspect-ratio: 1 / .83;
}

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

.image-caption,
.media-badge {
  padding: 13px 17px;
  border-top: 1px solid rgba(24, 67, 101, .12);
  background: rgba(255, 255, 255, .95);
  color: var(--text-soft);
  font-size: .74rem;
  line-height: 1.45;
}

.media-badge strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-900);
}

.engineering-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, .88fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.engineering-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(124, 169, 202, .16);
  border-radius: 28px;
  background: #081522;
  box-shadow: var(--shadow-lg);
}

.engineering-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 12, 20, .02), rgba(4, 12, 20, .42));
}

.engineering-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  filter: saturate(.85) contrast(1.03);
}

.hotspot {
  position: absolute;
  z-index: 4;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  background: rgba(45, 127, 255, .9);
  color: var(--white);
  cursor: help;
  box-shadow: 0 0 0 7px rgba(45, 127, 255, .13), 0 0 22px rgba(55, 229, 239, .45);
}

.hotspot::before,
.hotspot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
}

.hotspot::before { width: 10px; height: 2px; }
.hotspot::after { width: 2px; height: 10px; }

.hotspot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 13px);
  width: 190px;
  padding: 11px 13px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  border: 1px solid rgba(148, 189, 217, .18);
  border-radius: 11px;
  background: rgba(4, 15, 25, .96);
  color: #dce9f2;
  box-shadow: 0 14px 40px rgba(0, 7, 16, .35);
  font-size: .73rem;
  line-height: 1.45;
  text-align: left;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.hotspot:hover span,
.hotspot:focus-visible span {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hotspot-one { left: 21%; top: 27%; }
.hotspot-two { left: 55%; top: 43%; }
.hotspot-three { left: 73%; top: 70%; }

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

.engineering-copy > p {
  color: var(--text-soft);
}

.engineering-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.engineering-matrix > div {
  padding: 16px;
  border: 1px solid rgba(26, 72, 107, .13);
  border-radius: 13px;
  background: rgba(255, 255, 255, .72);
}

.engineering-matrix dt {
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: .63rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.engineering-matrix dd {
  margin: 0;
  color: #2d475e;
  font-size: .82rem;
  font-weight: 660;
}

/* Check lists */
.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: #38536a;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(45, 127, 255, .24);
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 43%, var(--blue) 43% 52%, transparent 52%) no-repeat 5px 7px / 8px 5px,
    rgba(45, 127, 255, .07);
}

.check-list.light li,
.section-dark .check-list li,
.section-blue .check-list li {
  color: #a9bdcc;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(25, 70, 104, .13);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(239, 245, 249, .92));
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 127, 255, .13), transparent 70%);
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 127, 255, .26);
  box-shadow: var(--shadow-md);
}

.industry-number {
  position: absolute;
  top: 21px;
  left: 23px;
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .09em;
}

.industry-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.industry-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: .82rem;
  line-height: 1.5;
}

/* Application concept / case study */
.case-panel {
  display: grid;
  grid-template-columns: minmax(400px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(24, 68, 102, .14);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.case-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink-800);
}

.case-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 18, .04), rgba(3, 10, 18, .66));
}

.case-media-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  padding: 13px 15px;
  border: 1px solid rgba(183, 215, 236, .19);
  border-radius: 13px;
  background: rgba(3, 12, 21, .68);
  color: #dce9f2;
  font-family: var(--font-mono);
  font-size: .68rem;
  line-height: 1.5;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.case-content {
  padding: clamp(36px, 6vw, 72px);
}

.case-content h2 {
  margin-bottom: 20px;
}

.case-content > p {
  color: var(--text-soft);
}

.case-brief {
  display: grid;
  gap: 9px;
  margin: 28px 0;
}

.case-brief > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(22, 65, 97, .11);
}

.case-brief dt {
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-brief dd {
  margin: 0;
  color: #304b62;
  font-size: .87rem;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(112, 160, 195, .16);
  border-radius: 20px;
  background: rgba(6, 20, 33, .52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.spec-table {
  width: 100%;
  min-width: 650px;
}

.spec-table th,
.spec-table td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(131, 174, 205, .12);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 28%;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.spec-table td {
  color: #afc1cf;
  font-size: .9rem;
}

.section:not(.section-dark):not(.section-blue) .table-wrap {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.section:not(.section-dark):not(.section-blue) .spec-table th {
  color: var(--blue-deep);
}

.section:not(.section-dark):not(.section-blue) .spec-table td {
  color: var(--text-soft);
}

.section:not(.section-dark):not(.section-blue) .spec-table th,
.section:not(.section-dark):not(.section-blue) .spec-table td {
  border-bottom-color: rgba(22, 65, 97, .10);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq {
  overflow: hidden;
  border: 1px solid rgba(24, 68, 102, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq[open] {
  border-color: rgba(45, 127, 255, .26);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 18px 58px 18px 22px;
  color: var(--ink-900);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 680;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--blue-deep);
  transition: transform .2s ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 56px 22px 22px;
  color: var(--text-soft);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Callouts and related links */
.callout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(124, 170, 203, .17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% -40%, rgba(55, 229, 239, .17), transparent 38%),
    linear-gradient(135deg, #0c243a, #06131f 64%);
  color: #a8bdcc;
  box-shadow: var(--shadow-md);
}

.callout::after {
  content: "";
  position: absolute;
  right: 11%;
  top: -80%;
  width: 1px;
  height: 250%;
  background: linear-gradient(transparent, rgba(55, 229, 239, .24), transparent);
  transform: rotate(25deg);
}

.callout > * {
  position: relative;
  z-index: 1;
}

.callout h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

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

.related-link {
  position: relative;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(25, 69, 103, .13);
  border-radius: 17px;
  background: rgba(255, 255, 255, .82);
  transition: transform .22s var(--ease), border-color .22s ease, box-shadow .22s ease;
}

.related-link::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 18px;
  color: var(--blue-deep);
  transition: transform .2s ease;
}

.related-link:hover,
.related-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(45, 127, 255, .25);
  box-shadow: var(--shadow-sm);
}

.related-link:hover::after,
.related-link:focus-visible::after {
  transform: translateX(4px);
}

.related-link strong,
.related-link span {
  display: block;
}

.related-link strong {
  margin-bottom: 5px;
  color: var(--ink-900);
  font-family: var(--font-display);
}

.related-link span {
  color: var(--text-soft);
  font-size: .8rem;
}

.notice {
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(45, 127, 255, .18);
  border-radius: 13px;
  background: rgba(45, 127, 255, .06);
  color: #45617a;
  font-size: .82rem;
}

.notice.warning {
  border-color: rgba(255, 182, 77, .28);
  background: rgba(255, 182, 77, .08);
}

/* Resources / article pages */
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 58px;
  align-items: start;
}

.article-body {
  color: #344f66;
}

.article-body h2,
.article-body h3 {
  margin-top: 2.2em;
  margin-bottom: .7em;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  font-size: 1.02rem;
}

.article-body a {
  color: var(--blue-deep);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.toc {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid rgba(25, 69, 103, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-sm);
}

.toc h2,
.toc h3 {
  margin-bottom: 15px;
  font-size: 1rem !important;
}

.toc ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  color: var(--text-soft);
  font-size: .82rem;
  transition: color .2s ease;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--blue-deep);
}

.quote-block {
  margin: 32px 0;
  padding: 25px 28px;
  border-left: 3px solid var(--blue);
  border-radius: 0 15px 15px 0;
  background: rgba(45, 127, 255, .06);
  color: #28445c;
  font-size: 1.08rem;
}

/* Contact and forms */
.form-shell {
  padding: clamp(25px, 4vw, 42px);
  box-shadow: var(--shadow-md);
}

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

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

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

.field label {
  color: #253f57;
  font-size: .82rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea,
.search-row input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(28, 72, 106, .18);
  border-radius: 12px;
  outline: 0;
  background: #f9fbfd;
  color: var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-row input:focus {
  border-color: rgba(45, 127, 255, .64);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 127, 255, .09);
}

.field input[type="file"] {
  padding: 11px;
  background: #f4f8fb;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0;
  color: var(--text-soft);
  font-size: .8rem;
}

.form-check input {
  margin-top: 3px;
}

.form-check a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .85rem;
}

.form-status.error {
  border: 1px solid rgba(228, 84, 109, .28);
  background: rgba(228, 84, 109, .07);
  color: #a22e45;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--blue-deep);
  font-weight: 700;
}

/* Legal */
.legal-copy {
  max-width: 900px;
}

.legal-copy h2,
.legal-copy h3 {
  margin-top: 2em;
  margin-bottom: .7em;
}

/* CTA and footer */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 44px 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(55, 229, 239, .13), transparent 35%),
    linear-gradient(110deg, #0b2d5b, #092145 45%, #071625);
  color: #b9ccda;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image: linear-gradient(rgba(131, 179, 212, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(131, 179, 212, .06) 1px, transparent 1px);
  background-size: 38px 38px;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.cta-band p:last-child {
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background: #030910;
  color: #8299ac;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -260px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 127, 255, .12), rgba(55, 229, 239, .025) 45%, transparent 70%);
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 1.45fr) repeat(3, minmax(150px, .7fr));
  gap: 44px;
  padding-bottom: 54px;
}

.footer-logo {
  width: min(100%, 315px);
  margin-bottom: 23px;
}

.footer-intro {
  max-width: 480px;
  color: #a9bdcc;
  font-size: .95rem;
}

.footer-main h3 {
  margin-bottom: 20px;
  color: #e9f2f7;
  font-size: .86rem;
  letter-spacing: .02em;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #8299ac;
  font-size: .79rem;
  transition: color .2s ease, transform .2s ease;
}

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

.footer-contact {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.footer-phone {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 740;
}

.footer-contact a:not(.footer-phone) {
  color: var(--cyan);
  font-size: .85rem;
}

.footer-bottom {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(128, 168, 198, .12);
  color: #60788d;
  font-size: .71rem;
}

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

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

/* Search */
.search-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: 8vh 22px 22px;
  opacity: 0;
  visibility: hidden;
  background: rgba(1, 7, 13, .82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: opacity .22s ease, visibility .22s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: min(100%, 780px);
  max-height: 84vh;
  overflow: auto;
  padding: 28px;
  transform: translateY(14px);
  border: 1px solid rgba(133, 179, 212, .18);
  border-radius: 24px;
  background: #f8fbfd;
  box-shadow: 0 35px 110px rgba(0, 5, 12, .48);
  transition: transform .28s var(--ease);
}

.search-overlay.open .search-box {
  transform: translateY(0);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.search-result {
  display: grid;
  gap: 3px;
  padding: 14px 15px;
  border: 1px solid rgba(24, 68, 102, .12);
  border-radius: 12px;
  background: var(--white);
  transition: transform .2s ease, border-color .2s ease;
}

.search-result:hover,
.search-result:focus-visible {
  transform: translateX(3px);
  border-color: rgba(45, 127, 255, .35);
}

.search-result strong {
  color: var(--ink-900);
  font-size: .9rem;
}

.search-result span {
  color: var(--text-soft);
  font-size: .76rem;
}

/* Cookie and floating controls */
.cookie-banner {
  position: fixed;
  z-index: 2500;
  left: 50%;
  bottom: 22px;
  width: min(calc(100% - 32px), 760px);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateX(-50%);
  padding: 15px 16px 15px 19px;
  border: 1px solid rgba(149, 189, 216, .18);
  border-radius: 16px;
  background: rgba(4, 15, 25, .96);
  color: #9fb4c4;
  box-shadow: 0 28px 80px rgba(0, 6, 14, .42);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: .75rem;
}

.cookie-banner a {
  color: var(--cyan);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-actions button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(154, 192, 219, .18);
  border-radius: 9px;
  background: rgba(255, 255, 255, .04);
  color: #d7e4ed;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
}

.cookie-actions .accept {
  border-color: transparent;
  background: var(--blue-action);
  color: var(--white);
}

.floating-call {
  position: fixed;
  z-index: 1800;
  right: 24px;
  bottom: 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 16px 7px 7px;
  border: 1px solid rgba(107, 231, 205, .26);
  border-radius: 999px;
  background: rgba(4, 18, 29, .94);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(0, 9, 20, .34);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease, opacity .2s ease;
}

.floating-call:hover,
.floating-call:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(55, 229, 239, .55);
  box-shadow: 0 22px 64px rgba(0, 9, 20, .42), 0 0 26px rgba(55, 229, 239, .12);
}

.floating-call-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #35d9b6, #0fa97f);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(18, 181, 139, .28);
}

.floating-call-icon svg {
  width: 20px;
}

.floating-call-copy small,
.floating-call-copy strong {
  display: block;
}

.floating-call-copy small {
  margin-bottom: 1px;
  color: #7f98ac;
  font-size: .65rem;
}

.floating-call-copy strong {
  font-size: .88rem;
  letter-spacing: .025em;
}

.back-top {
  position: fixed;
  z-index: 1750;
  right: 30px;
  bottom: 96px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  border: 1px solid rgba(136, 177, 207, .19);
  border-radius: 12px;
  background: rgba(5, 18, 29, .9);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 7, 16, .24);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.cookie-banner.visible ~ .floating-call,
.cookie-banner.visible ~ .back-top {
  opacity: 0;
  pointer-events: none;
}

/* Error pages */
.error-page {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.error-code {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 1;
}

/* Reveal motion */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --header-height: 76px; }

  .site-logo { width: 255px; }
  .nav-link,
  .nav-toggle { padding-inline: 9px; font-size: .8rem; }
  .nav-cta { display: none; }
  .hero-layout { grid-template-columns: minmax(0, 1.15fr) minmax(330px, .7fr); gap: 42px; }
  .hero-home h1 { font-size: clamp(3.6rem, 7.2vw, 6rem); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(130px, .65fr)); gap: 28px; }
}

@media (max-width: 1080px) {
  .top-items span:not(:first-child):not(:last-child) { display: none; }
  .mobile-toggle { display: grid; margin-left: auto; }
  .main-nav {
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    top: calc(36px + var(--header-height));
    height: calc(100dvh - 36px - var(--header-height));
    display: block;
    overflow-y: auto;
    padding: 15px 22px 90px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    background: rgba(3, 11, 19, .985);
    border-top: 1px solid rgba(128, 170, 201, .12);
    transition: opacity .22s ease, visibility .22s ease, transform .25s var(--ease);
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-item { height: auto; display: block; border-bottom: 1px solid rgba(128, 170, 201, .10); }
  .nav-link,
  .nav-toggle { width: 100%; min-height: 58px; justify-content: space-between; padding-inline: 4px; font-size: 1rem; }
  .nav-link { border-bottom: 1px solid rgba(128, 170, 201, .10); }
  .nav-item:hover .mega,
  .nav-item:focus-within .mega { opacity: 0; visibility: hidden; transform: none; }
  .nav-item.is-open .mega { display: block; opacity: 1; visibility: visible; }
  .nav-item.is-open .nav-toggle svg { transform: rotate(180deg); }
  .mega {
    position: static;
    display: none;
    width: 100%;
    padding: 0 0 16px;
    transform: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-link { min-height: 68px; padding: 10px; border-color: rgba(128, 170, 201, .08); background: rgba(255, 255, 255, .018); }
  .nav-search { width: 100%; margin: 18px 0 0; border-radius: 12px; }
  .nav-cta { display: flex; width: 100%; margin: 16px 0 0; }
  .site-header.is-scrolled { height: var(--header-height); }

  .hero-layout { grid-template-columns: 1fr; }
  .hero-console { display: none; }
  .hero-home .hero-content { max-width: 860px; }
  .hero-home::before { background: linear-gradient(90deg, rgba(2, 8, 14, .96), rgba(4, 13, 23, .76) 70%, rgba(4, 12, 22, .62)); }
  .hero-proof > div { padding-left: 45px; }
  .hero-proof > div::before { left: 21px; }

  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-split,
  .media-split.reverse,
  .engineering-layout,
  .case-panel,
  .intro-grid { grid-template-columns: 1fr; }
  .media-split.reverse > :first-child,
  .media-split.reverse > :last-child { order: initial; }
  .engineering-visual { min-height: 510px; }
  .engineering-visual img { min-height: 510px; }
  .case-media,
  .case-media img { min-height: 460px; }
  .selector-shell { grid-template-columns: 1fr; }
  .selector-result { min-height: 430px; }
  .system-feature-card,
  .system-feature-card.wide { grid-column: span 6; }
  .process-stages { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
  .process-track-line { display: none; }
  .process-stage { min-height: 190px; padding: 0 12px 10px; }
  .process-stage-node { margin-bottom: 19px; }
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: 1fr; }
  .toc { position: relative; top: auto; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container,
  .narrow { width: min(calc(100% - 30px), var(--container)); }
  .top-strip .container { justify-content: center; }
  .top-status { display: none; }
  .top-items { width: 100%; justify-content: space-between; gap: 12px; }
  .top-items span:last-child { display: none; }
  .site-logo { width: 225px; }
  .main-nav { padding-inline: 15px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-link { min-height: 64px; }

  .section { padding: 74px 0; }
  .section-sm { padding: 50px 0; }
  .section-head { display: block; }
  .section-head > .btn,
  .section-head > .btn-link { margin-top: 18px; }
  h1 { font-size: clamp(2.85rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 10.5vw, 3.25rem); }

  .hero { min-height: 690px; }
  .hero.compact { min-height: 560px; }
  .hero > .container { padding-top: 68px; padding-bottom: 172px; }
  .hero.compact > .container { padding-top: 58px; padding-bottom: 65px; }
  .hero-home { min-height: 760px; }
  .hero-home > .container { padding-top: 60px; padding-bottom: 166px; }
  .hero-home h1 { font-size: clamp(3.2rem, 15.4vw, 5rem); }
  .hero-home .lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-contact-inline { justify-content: center; text-align: center; }
  .hero-chips { display: none; }
  .hero-proof { grid-template-columns: 1fr; width: calc(100% - 30px); }
  .hero-proof > div { min-height: 56px; padding: 11px 15px 11px 40px; }
  .hero-proof > div:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(150, 188, 217, .13); }
  .hero-proof > div::before { left: 18px; top: 23px; width: 7px; height: 7px; }
  .hero-proof span { display: none; }
  .hero-media img { object-position: 62% 50%; }

  .capability-rail::before,
  .capability-rail::after { width: 35px; }
  .capability-track { animation-duration: 30s; }
  .precision-card { padding: 28px 24px; }
  .precision-list { grid-template-columns: 1fr; }
  .selector-options { grid-template-columns: 1fr; }
  .selector-result { min-height: 0; }
  .grid-3,
  .grid-4,
  .industry-grid { grid-template-columns: 1fr; }
  .system-feature-card,
  .system-feature-card.wide { grid-column: 1 / -1; min-height: 430px; }
  .system-feature-card.tall { min-height: 480px; }
  .process-visual { padding: 30px 17px 20px; }
  .process-stages { grid-template-columns: 1fr; gap: 10px; }
  .process-stage { min-height: 0; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 16px; padding: 13px; border: 1px solid rgba(128, 176, 209, .10); border-radius: 13px; text-align: left; }
  .process-stage-node { grid-row: 1 / 3; width: 42px; height: 42px; margin: 0; }
  .process-stage h3 { margin-bottom: 4px; }
  .process-stage p { grid-column: 2; }
  .process { grid-template-columns: 1fr; }
  .engineering-visual,
  .engineering-visual img { min-height: 420px; }
  .hotspot span { width: 160px; }
  .engineering-matrix { grid-template-columns: 1fr; }
  .case-media,
  .case-media img { min-height: 380px; }
  .case-content { padding: 32px 24px; }
  .case-brief > div { grid-template-columns: 1fr; gap: 5px; }
  .media-frame picture { aspect-ratio: 1 / .86; }
  .callout { grid-template-columns: 1fr; padding: 32px 24px; }
  .callout-actions { min-width: 0; }
  .related-links { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .cta-band .container { display: block; }
  .cta-band .btn { width: 100%; margin-top: 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { display: block; padding: 20px 0; }
  .footer-legal { margin-top: 10px; }
  .search-box { padding: 20px; }
  .search-row { grid-template-columns: 1fr; }
  .cookie-banner { display: none !important; }
  .floating-call { right: 14px; bottom: 74px; min-height: 50px; padding: 5px 11px 5px 5px; }
  .floating-call-icon { width: 39px; height: 39px; flex-basis: 39px; }
  .floating-call-copy small { display: none; }
  .floating-call-copy strong { font-size: .8rem; }
  .back-top { right: 18px; bottom: 132px; }
  .mobile-action-bar {
    position: fixed;
    z-index: 1700;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(132, 174, 204, .18);
    background: rgba(3, 12, 21, .96);
    box-shadow: 0 -12px 35px rgba(0, 8, 18, .22);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e5f0f7;
    font-size: .82rem;
    font-weight: 750;
  }
  .mobile-action-bar a + a { border-left: 1px solid rgba(132, 174, 204, .14); background: linear-gradient(120deg, rgba(45, 127, 255, .28), rgba(45, 127, 255, .12)); }
  .mobile-action-bar svg { width: 18px; color: var(--cyan); }
  body { padding-bottom: 60px; }
}

@media (max-width: 430px) {
  .site-logo { width: 195px; }
  .hero-home h1 { font-size: clamp(2.9rem, 15.5vw, 4.1rem); }
  .hero-kicker { font-size: .61rem; letter-spacing: .055em; }
  .btn { padding-inline: 17px; }
  .system-feature-card { min-height: 390px; }
  .floating-call { display: none; }
  .back-top { bottom: 75px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .js-ready .reveal { opacity: 1; transform: none; }
  .capability-track { animation: none; }
}

/* Structured enquiry form stages */
.form-section-label {
  position: relative;
  display: grid;
  grid-template-columns: 42px auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0 2px;
  padding: 16px 0 12px;
  border-bottom: 1px solid rgba(25, 69, 103, .12);
}

.form-section-label:first-child {
  margin-top: 0;
  padding-top: 0;
}

.form-section-label > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-action-deep), var(--blue-action));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(45, 127, 255, .22);
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 760;
}

.form-section-label strong {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1rem;
}

.form-section-label small {
  justify-self: end;
  color: var(--text-soft);
  font-size: .74rem;
}

@media (max-width: 760px) {
  .form-section-label {
    grid-template-columns: 38px 1fr;
  }

  .form-section-label small {
    grid-column: 2;
    justify-self: start;
  }
}

/* ==========================================================================
   Production refinement layer — viewport fit, responsive imagery, a11y polish
   ========================================================================== */
:root {
  --top-strip-height: 36px;
  --header-height: 76px;
  --header-block: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  --chrome-height: calc(var(--top-strip-height) + var(--header-block));
  --hero-proof-height: 92px;
  --container-wide: 1380px;
  --page-gutter: 22px;
  --section-space: clamp(74px, 8vw, 118px);
  --section-space-sm: clamp(50px, 5vw, 76px);
}

html {
  scroll-padding-top: calc(var(--header-block) + 24px);
  scrollbar-gutter: stable;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-synthesis: none;
}

@supports (min-height: 100svh) {
  body { min-height: 100svh; }
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

:where(h1, h2, h3) { text-wrap: balance; }
:where(p, li, dd) { text-wrap: pretty; }

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container-wide));
}

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

.top-strip,
.top-strip .container {
  min-height: var(--top-strip-height);
}

.site-header,
.site-header.is-scrolled {
  height: var(--header-block);
  padding-top: env(safe-area-inset-top, 0px);
  transform: translateY(0);
  transition: transform .28s var(--ease), background .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.site-header:focus-within,
body.nav-open .site-header,
body.search-open .site-header {
  transform: translateY(0);
}

.nav-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container-wide));
}

.site-logo {
  width: clamp(214px, 19vw, 286px);
}

.mobile-toggle {
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-link[aria-current="page"],
.mega-link[aria-current="page"] {
  color: var(--white);
}

.mega-link[aria-current="page"] {
  border-color: rgba(55, 229, 239, .35);
  background: rgba(55, 229, 239, .075);
}

/* The homepage hero is exactly the first visible viewport beneath site chrome. */
.hero-home {
  height: calc(100vh - var(--chrome-height));
  min-height: 560px;
  max-height: 900px;
}

@supports (height: 100svh) {
  .hero-home { height: calc(100svh - var(--chrome-height)); }
}

.hero-home > .container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1320px);
  min-height: 100%;
  display: grid;
  align-items: center;
  margin-inline: auto;
  padding-top: clamp(34px, 5vh, 68px);
  padding-bottom: calc(var(--hero-proof-height) + clamp(24px, 4vh, 48px));
}

.hero-home .hero-layout {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1320px);
  margin-inline: auto;
}

.hero-home h1 {
  max-width: none;
  margin-bottom: clamp(15px, 2.4vh, 24px);
  font-size: clamp(3.55rem, 6.1vw, 6.4rem);
  line-height: .94;
}

.hero-home .lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.hero-lead-mobile { display: none; }

.hero-home .hero-actions { margin-top: clamp(20px, 3vh, 32px); }
.hero-home .hero-contact-inline { margin-top: clamp(14px, 2vh, 22px); }

.hero-home::before {
  background:
    linear-gradient(90deg, rgba(2, 8, 14, .98) 0%, rgba(4, 13, 23, .93) 38%, rgba(4, 13, 23, .60) 70%, rgba(4, 12, 22, .45) 100%),
    linear-gradient(180deg, rgba(2, 8, 14, .18), rgba(2, 8, 14, .75));
}

.hero-media img {
  object-position: center var(--image-focal-y, 50%);
  transition: transform .35s var(--ease);
}

.hero-home .hero-media img { object-position: 58% 50%; }

.hero-proof {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container-wide));
}

/* Inner-page heroes are bounded by the current viewport rather than a fixed 720 px. */
.hero:not(.hero-home) {
  min-height: min(680px, calc(100vh - var(--chrome-height)));
}

@supports (height: 100svh) {
  .hero:not(.hero-home) { min-height: min(680px, calc(100svh - var(--chrome-height))); }
}

.hero.compact:not(.hero-home) {
  min-height: min(590px, calc(100vh - var(--chrome-height)));
}

@supports (height: 100svh) {
  .hero.compact:not(.hero-home) { min-height: min(590px, calc(100svh - var(--chrome-height))); }
}

.hero:not(.hero-home) > .container {
  padding-top: clamp(44px, 7vh, 72px);
  padding-bottom: clamp(44px, 7vh, 76px);
}

/* Short laptops retain the entire hero, console and proof rail in one screen. */
@media (min-width: 1181px) and (max-height: 830px) {
  .hero-home { min-height: 540px; }
  .hero-home > .container {
    padding-top: 24px;
    padding-bottom: calc(var(--hero-proof-height) + 20px);
  }
  .hero-layout { gap: clamp(34px, 4.5vw, 66px); }
  .hero-home h1 { font-size: clamp(3.35rem, 5.4vw, 5.2rem); }
  .hero-kicker { margin-bottom: 14px; padding-block: 6px; }
  .hero-home .lead { font-size: .96rem; line-height: 1.46; }
  .hero-home .hero-actions { margin-top: 18px; }
  .hero-home .hero-contact-inline { margin-top: 12px; }
  .hero-console { padding: 16px; border-radius: 20px; }
  .console-head { margin-bottom: 12px; }
  .console-step { min-height: 54px; padding: 8px 10px; }
  .console-flow { gap: 7px; }
  .console-step::after { bottom: -8px; height: 8px; }
  .console-metrics { margin-top: 10px; }
  .console-metrics > div { padding: 9px 10px; }
  .console-metrics > div:nth-child(n + 3) { display: none; }
  .hero-proof > div { min-height: 82px; padding-block: 14px; }
  .hero-proof strong { font-size: .88rem; }
  .hero-proof span { font-size: .72rem; }
}

/* Stable image presentation and content rhythm. */
picture { background: #e8eef3; }
img[loading="lazy"] {
  background: linear-gradient(110deg, #e8eef3 8%, #f4f7f9 18%, #e8eef3 33%);
}

.system-card picture,
.card-media { aspect-ratio: 16 / 9; }

.system-card img,
.card-media img,
.case-media img,
.media-frame img,
.engineering-visual img {
  object-position: center var(--image-focal-y, 50%);
}

.grid-3,
.grid-4 { gap: clamp(18px, 2vw, 26px); }

.feature-card,
.comparison-card,
.system-card,
.article-card,
.contact-panel,
.answer-box,
.form-shell {
  border-color: rgba(19, 53, 82, .13);
  box-shadow: 0 1px 0 rgba(255,255,255,.9), 0 16px 45px rgba(4,20,37,.045);
}

.industry-card,
.selector-option,
.selector-recommendation,
.process-stage,
.faq summary {
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease, box-shadow .24s ease, color .24s ease;
}

.faq summary { min-height: 54px; }

.field input,
.field select,
.field textarea,
.search-row input { font-size: 1rem; }

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.search-row input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  box-shadow: 0 0 0 5px rgba(45,127,255,.12);
}

.floating-call {
  right: max(24px, env(safe-area-inset-right, 0px));
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
}

.mobile-action-bar {
  padding-bottom: env(safe-area-inset-bottom, 0px);
  height: calc(60px + env(safe-area-inset-bottom, 0px));
}

.cookie-banner { bottom: max(22px, env(safe-area-inset-bottom, 0px)); }

@media (max-width: 1180px) {
  .hero-console { display: none; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-home .hero-content { max-width: 850px; }
  .hero-home h1 { max-width: 10.5ch; }
  .hero-home::before {
    background:
      linear-gradient(90deg, rgba(2,8,14,.975), rgba(4,13,23,.82) 72%, rgba(4,12,22,.68)),
      linear-gradient(180deg, rgba(2,8,14,.2), rgba(2,8,14,.74));
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 72px;
    --hero-proof-height: 76px;
  }
  .site-logo { width: 224px; }
  .main-nav { padding-bottom: max(92px, calc(76px + env(safe-area-inset-bottom, 0px))); }
  .nav-item.is-open > .mega { display: block; opacity: 1; visibility: visible; transform: none; }
  .mega { border-radius: 0; }
  .hero-home h1 { font-size: clamp(3.35rem, 8.6vw, 5.8rem); }
  .hero-proof > div { padding-inline: 42px 18px; }
}

/* Mobile consolidates contact controls into the persistent action bar. */
@media (max-width: 760px) {
  :root {
    --top-strip-height: 0px;
    --header-height: 72px;
    --hero-proof-height: 0px;
    --page-gutter: 16px;
    --section-space: clamp(64px, 17vw, 82px);
  }
  .top-strip { display: none; }
  .nav-shell { width: min(calc(100% - 28px), var(--container-wide)); }
  .site-logo { width: clamp(188px, 55vw, 218px); }
  .mobile-toggle { width: 44px; height: 44px; }
  .main-nav {
    top: var(--header-block);
    height: calc(100dvh - var(--header-block));
    padding-inline: 16px;
  }
  .hero-home {
    height: calc(100vh - var(--header-block));
    min-height: 0;
    max-height: none;
  }
  @supports (height: 100svh) {
    .hero-home { height: calc(100svh - var(--header-block)); }
  }
  .hero-home > .container {
    min-height: 100%;
    padding-top: clamp(22px, 5svh, 40px);
    padding-bottom: max(76px, calc(68px + env(safe-area-inset-bottom, 0px)));
  }
  .hero-home h1 {
    max-width: 8.8ch;
    margin-bottom: 14px;
    font-size: clamp(2.55rem, 12.6vw, 3.55rem);
    line-height: .95;
  }
  .hero-kicker {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 7px 11px;
    font-size: .63rem;
    line-height: 1.35;
  }
  .hero-lead-desktop { display: none; }
  .hero-lead-mobile { display: block; }
  .hero-home .lead {
    max-width: 34rem;
    font-size: .95rem;
    line-height: 1.5;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 18px;
  }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .hero-actions .btn-secondary {
    min-height: 42px;
    justify-content: flex-start;
    padding-inline: 3px;
    border-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: #d7e6f1;
  }
  .hero-contact-inline,
  .hero-proof { display: none; }
  .hero-home::before {
    background:
      linear-gradient(90deg, rgba(2,8,14,.96), rgba(3,12,21,.84)),
      linear-gradient(180deg, rgba(2,8,14,.22), rgba(2,8,14,.84));
  }
  .hero-home .hero-media img {
    object-position: 60% 50%;
    filter: saturate(.72) contrast(1.05) brightness(.55);
  }
  .hero:not(.hero-home) {
    min-height: min(540px, calc(100vh - var(--header-block)));
  }
  @supports (height: 100svh) {
    .hero:not(.hero-home) { min-height: min(540px, calc(100svh - var(--header-block))); }
  }
  .floating-call { display: none; }
  .back-top { bottom: calc(75px + env(safe-area-inset-bottom, 0px)); }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .footer-bottom { padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero-home > .container { padding-top: 18px; }
  .hero-kicker { margin-bottom: 10px; padding-block: 5px; font-size: .58rem; }
  .hero-home h1 { margin-bottom: 10px; font-size: clamp(2.35rem, 11.9vw, 2.8rem); }
  .hero-home .lead { font-size: .88rem; line-height: 1.43; }
  .hero-actions { margin-top: 13px; }
  .hero-actions .btn-secondary { display: none; }
}

@media (max-width: 390px) {
  .site-logo { width: 184px; }
  .hero-home h1 { font-size: clamp(2.45rem, 12.8vw, 3rem); }
}

@media (hover: none) {
  .feature-card:hover,
  .comparison-card:hover,
  .system-card:hover,
  .industry-card:hover,
  .btn:hover,
  .floating-call:hover { transform: none; }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(10,43,68,.32);
    --line-dark: rgba(190,221,242,.34);
    --text-soft: #3f586d;
  }
  .section-dark,
  .section-blue,
  .hero,
  .site-footer { color: #e9f4fb; }
}

@media (forced-colors: active) {
  .text-gradient { background: none; color: CanvasText; }
  .btn,
  .nav-search,
  .mobile-toggle,
  .mega-link,
  .floating-call { border: 1px solid ButtonText; }
  .hero-grid,
  .hero-glow { display: none; }
}

@media print {
  .top-strip,
  .site-header,
  .floating-call,
  .mobile-action-bar,
  .cookie-banner,
  .back-top,
  .search-overlay,
  .hero-grid,
  .hero-glow { display: none !important; }
  body { padding: 0; background: #fff; color: #000; }
  .hero,
  .section-dark,
  .section-blue,
  .site-footer { background: #fff !important; color: #000 !important; }
}

@media (min-width: 1081px) {
  /* Explicit state keeps visuals and ARIA synchronised. Pointer entry sets .is-open in JS. */
  .nav-item:hover > .mega {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
  }
  .nav-item.is-open > .mega,
  .nav-item:focus-within > .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

@media (min-width: 761px) {
  .hero-home h1 { max-width: none; }
}

/* ======================================================================
   Launch-ready customer experience layer — August 2026
   Full-bleed hero, customer-led hierarchy, stable media and final polish.
   ====================================================================== */

:root {
  --launch-accent: #1d6ff2;
  --launch-accent-deep: #0d4fc7;
  --launch-cyan: #37dce8;
  --launch-surface: #f7f9fc;
  --launch-border: rgba(20, 57, 87, .12);
}

[id] {
  scroll-margin-top: calc(var(--header-height, 84px) + 24px);
}

/* Header clarity and customer-first navigation. */
.site-header {
  background: rgba(4, 12, 20, .9);
  border-bottom-color: rgba(154, 193, 220, .16);
}

.site-header.is-scrolled {
  background: rgba(3, 9, 16, .97);
}

.nav-link,
.nav-toggle {
  letter-spacing: -.01em;
}

.nav-cta {
  min-width: 184px;
}

/* Full-bleed home hero with the real machinery kept visible. */
.hero-home.hero-customer {
  min-height: 620px;
  background: #07111b;
}

.hero-customer .hero-layout {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero-customer .hero-content-customer {
  position: relative;
  max-width: 780px;
  padding: clamp(22px, 3vw, 38px) clamp(0px, 1vw, 12px);
}

.hero-customer .hero-content-customer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -38px -90px -38px -44px;
  border-radius: 34px;
  background: radial-gradient(circle at 15% 50%, rgba(2, 10, 18, .46), rgba(2, 10, 18, .12) 55%, transparent 76%);
  pointer-events: none;
}

.hero-customer .hero-media img {
  object-position: 64% 50%;
  filter: saturate(.96) contrast(1.04) brightness(.98);
  transform: scale(1.01);
}

.hero-customer::before {
  background:
    linear-gradient(90deg,
      rgba(2, 8, 14, .97) 0%,
      rgba(3, 11, 20, .92) 31%,
      rgba(4, 13, 23, .72) 50%,
      rgba(4, 13, 23, .27) 72%,
      rgba(4, 12, 22, .20) 100%),
    linear-gradient(180deg, rgba(2, 8, 14, .18), rgba(2, 8, 14, .58));
}

.hero-customer .hero-grid {
  opacity: .18;
  -webkit-mask-image: linear-gradient(90deg, #000 0 40%, rgba(0,0,0,.3) 64%, transparent 84%);
  mask-image: linear-gradient(90deg, #000 0 40%, rgba(0,0,0,.3) 64%, transparent 84%);
}

.hero-customer .hero-glow {
  width: 520px;
  height: 520px;
  right: 14%;
  top: -220px;
  opacity: .48;
}

.hero-customer h1 {
  max-width: 11.8ch;
  font-size: clamp(3.55rem, 6vw, 6.25rem);
  line-height: .95;
  text-wrap: balance;
}

.hero-customer .lead {
  max-width: 720px;
  color: rgba(236, 244, 250, .88);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
  line-height: 1.56;
}

.hero-customer .hero-actions {
  align-items: center;
}

.hero-customer .hero-actions .btn {
  min-height: 54px;
}

.hero-customer .hero-actions .btn-primary span {
  display: inline-block;
  transition: transform .22s var(--ease);
}

.hero-customer .hero-actions .btn-primary:hover span,
.hero-customer .hero-actions .btn-primary:focus-visible span {
  transform: translateX(4px);
}

.hero-customer .hero-contact-inline {
  color: #b4c7d6;
}

.hero-customer .hero-proof {
  overflow: hidden;
  border-color: rgba(168, 204, 229, .2);
  background: rgba(3, 12, 21, .84);
  box-shadow: 0 -24px 64px rgba(0, 8, 18, .28), inset 0 1px 0 rgba(255,255,255,.05);
}

.hero-customer .hero-proof > div {
  min-height: var(--hero-proof-height, 92px);
  padding-right: clamp(18px, 2.4vw, 34px);
}

.hero-customer .hero-proof strong {
  font-size: clamp(.88rem, 1vw, 1rem);
}

.hero-customer .hero-proof span {
  max-width: 34ch;
  color: #96acbd;
  line-height: 1.4;
}

/* Calm capability rail: readable at rest, motion only as progressive enhancement. */
.capability-rail {
  border-top: 1px solid rgba(255,255,255,.04);
}

.capability-item {
  color: #aebfcd;
}

/* Cleaner rhythm, stronger visual hierarchy and more consistent component spacing. */
.section-head {
  margin-bottom: clamp(34px, 4.4vw, 58px);
}

.section-head h2,
.intro-statement h2,
.engineering-copy h2,
.case-content h2 {
  text-wrap: balance;
}

.intro-grid,
.engineering-layout,
.case-panel {
  align-items: stretch;
}

.precision-card,
.feature-card,
.article-card,
.comparison-card,
.contact-panel,
.answer-box,
.form-shell {
  border: 1px solid var(--launch-border);
}

.precision-card {
  background: linear-gradient(145deg, #ffffff, #f7fbff);
}

.precision-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
}

/* Media stability: remove the empty image column shown in the supplied screenshot. */
picture,
figure,
.case-media,
.case-media picture,
.engineering-visual,
.engineering-visual picture,
.system-feature-card,
.system-feature-card picture,
.media-frame,
.media-frame picture {
  margin: 0;
}

.case-panel {
  grid-template-columns: minmax(420px, .94fr) minmax(0, 1.06fr);
}

.case-media {
  min-height: 600px;
  display: grid;
  align-self: stretch;
}

.case-media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.case-media picture > img,
.case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center var(--image-focal-y, 50%);
}

.case-media::after {
  background: linear-gradient(180deg, rgba(3, 10, 18, .03), rgba(3, 10, 18, .56));
}

.case-media-label {
  bottom: 22px;
  max-width: min(520px, calc(100% - 44px));
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
}

.case-brief {
  margin-block: 26px 30px;
}

.case-brief > div {
  grid-template-columns: minmax(128px, 155px) 1fr;
  gap: 22px;
  padding: 15px 0;
}

.case-brief dd {
  font-size: .91rem;
  line-height: 1.58;
}

/* Contextual imagery always occupies its allocated frame. */
.engineering-visual picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.engineering-visual picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-feature-card picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #091622;
}

.system-feature-card picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s ease;
}

.system-feature-card:hover picture > img,
.system-feature-card:focus-within picture > img {
  transform: scale(1.035);
}

.system-feature-card::after {
  background: linear-gradient(180deg, rgba(3, 10, 18, .02) 18%, rgba(3, 10, 18, .88) 100%);
}

/* More useful card and CTA affordances. */
.industry-card,
.feature-card,
.system-card,
.article-card {
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .industry-card:hover,
  .feature-card:hover,
  .system-card:hover,
  .article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 105, 230, .24);
    box-shadow: 0 22px 58px rgba(4, 20, 37, .11);
  }
}

.btn,
.btn-link,
.nav-link,
.nav-toggle,
.mega-link,
.floating-call {
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible,
.btn-link:focus-visible,
.nav-link:focus-visible,
.nav-toggle:focus-visible,
.mega-link:focus-visible,
.floating-call:focus-visible {
  outline: 3px solid rgba(55, 220, 232, .92);
  outline-offset: 3px;
}

/* Tablet: preserve the full-bleed image and keep content in the first viewport. */
@media (max-width: 1180px) {
  .hero-customer .hero-content-customer {
    max-width: 760px;
  }

  .hero-customer h1 {
    max-width: 10.8ch;
  }

  .hero-customer::before {
    background:
      linear-gradient(90deg, rgba(2,8,14,.97), rgba(3,11,20,.87) 58%, rgba(4,13,23,.48) 100%),
      linear-gradient(180deg, rgba(2,8,14,.2), rgba(2,8,14,.66));
  }

  .case-panel {
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  }

  .case-media {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .case-panel {
    grid-template-columns: 1fr;
  }

  .case-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .case-content {
    padding: clamp(32px, 7vw, 54px);
  }
}

/* Mobile: focused crop, compact typography and no hidden content below the fold. */
@media (max-width: 760px) {
  .hero-home.hero-customer {
    min-height: 0;
  }

  .hero-customer .hero-content-customer {
    max-width: 100%;
    padding: 0;
  }

  .hero-customer .hero-content-customer::before {
    display: none;
  }

  .hero-customer h1 {
    max-width: 9.4ch;
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: .96;
  }

  .hero-customer::before {
    background:
      linear-gradient(90deg, rgba(2,8,14,.95), rgba(3,12,21,.74)),
      linear-gradient(180deg, rgba(2,8,14,.22), rgba(2,8,14,.82));
  }

  .hero-customer .hero-media img {
    object-position: 58% 50%;
    filter: saturate(.92) contrast(1.04) brightness(.82);
  }

  .hero-customer .hero-actions .btn {
    min-height: 50px;
  }

  .case-media {
    aspect-ratio: 4 / 3;
  }

  .case-media-label {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 10px 12px;
    font-size: .61rem;
  }

  .case-brief > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .case-content {
    padding: 30px 22px 34px;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero-customer h1 {
    font-size: clamp(2.3rem, 11.2vw, 2.8rem);
  }
  .hero-customer .lead {
    font-size: .87rem;
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-feature-card picture > img,
  .hero-customer .hero-actions .btn-primary span {
    transition: none !important;
  }
}

/* Final viewport tuning after responsive visual review. */
@media (min-width: 1181px) {
  .hero-customer .hero-content-customer {
    max-width: 930px;
  }

  .hero-customer h1 {
    max-width: 930px;
    font-size: clamp(3.45rem, 5vw, 5.35rem);
  }

  .hero-customer .hero-proof > div:last-child {
    padding-right: 218px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-customer .hero-content-customer {
    max-width: 820px;
  }

  .hero-customer h1 {
    max-width: 13.5ch;
    font-size: clamp(3.25rem, 6.2vw, 4.55rem);
  }

  .hero-customer .hero-proof > div:last-child {
    padding-right: 148px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .floating-call {
    right: 14px;
    bottom: 18px;
    min-height: 50px;
    padding: 5px 12px 5px 5px;
    gap: 8px;
  }

  .floating-call-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .floating-call-copy small {
    display: none;
  }

  .floating-call-copy strong {
    font-size: .8rem;
  }
}

/* Stable two-line desktop/tablet hero lockup. Mobile is allowed to wrap naturally. */
.hero-customer .hero-line {
  display: block;
}

@media (min-width: 761px) {
  .hero-customer h1 {
    max-width: none;
  }

  .hero-customer .hero-line {
    white-space: nowrap;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .hero-customer .hero-content-customer {
    width: 100%;
    max-width: 940px;
    padding-block: 10px;
  }

  .hero-customer h1 {
    font-size: clamp(3.15rem, 6.25vw, 4.1rem);
    line-height: .94;
  }

  .hero-customer .lead {
    max-width: 720px;
    font-size: .98rem;
    line-height: 1.48;
  }

  .hero-customer .hero-actions {
    margin-top: 16px;
  }

  .hero-customer .hero-contact-inline {
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  .hero-customer .hero-line {
    white-space: normal;
  }
}

/* Refined industrial brand layer — August 2026 */
:root {
  --ink-950: #050b10;
  --ink-900: #071521;
  --ink-850: #0a1b29;
  --ink-800: #0d2131;
  --ink-750: #133047;
  --blue: #2f6f9f;
  --blue-deep: #245d89;
  --blue-action-deep: #1f5a88;
  --blue-action: #286f9f;
  --blue-action-light: #327ba5;
  --cyan: #27a5b4;
  --violet: #2f6f9f;
  --green: #4bb58b;
  --amber: #c78332;
  --page: #f3f6f8;
  --panel: #ffffff;
  --text: #142b3d;
  --text-soft: #526b7e;
  --line: rgba(20, 55, 80, .14);
  --line-dark: rgba(160, 190, 210, .17);
  --shadow-sm: 0 7px 22px rgba(4, 23, 37, .07);
  --shadow-md: 0 15px 38px rgba(4, 23, 37, .10);
  --shadow-lg: 0 26px 70px rgba(0, 12, 23, .22);
  --radius-sm: 6px;
  --radius: 9px;
  --radius-lg: 14px;
  --section-space: clamp(58px, 6vw, 88px);
  --section-space-sm: clamp(38px, 4vw, 58px);
}

body {
  background: var(--page);
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -.025em;
}

h2 { font-size: clamp(2rem, 3.65vw, 3.65rem); }
h3 { letter-spacing: -.018em; }

.text-gradient {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .025em;
  text-transform: none;
}

.eyebrow::before,
.eyebrow i {
  box-shadow: none !important;
}

.reveal,
.js-ready .reveal,
.js-ready .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.section,
.section-sm {
  overflow: clip;
}

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

.section + .section,
.capability-rail + .section {
  border-top: 1px solid rgba(20, 55, 80, .08);
}

.section-soft { background: #edf2f5; }
.section-dark,
.section-selector,
.process-lab { background: #071521; }
.section-blue { background: #245d89; }

.section-head {
  gap: 28px;
  margin-bottom: clamp(28px, 3.4vw, 46px);
}

.section-head h2 { margin-bottom: 13px; }

/* Flat, practical controls rather than glossy interface effects. */
.btn {
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 6px;
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }

.btn-primary {
  background: #286f9f;
  box-shadow: none;
}

.btn-primary::after { display: none; }

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1f5a88;
  box-shadow: none;
}

.btn-secondary {
  border-color: rgba(195, 218, 233, .36);
  border-radius: 6px;
  background: rgba(6, 19, 30, .72);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(135, 190, 205, .66);
  background: #102638;
}

.btn-outline {
  border-color: rgba(31, 78, 110, .24);
  border-radius: 6px;
  background: #ffffff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #2f6f9f;
  box-shadow: none;
}

/* Header and brand */
.top-strip { background: #050b10; }

.site-header,
.site-header.is-scrolled {
  background: #071521;
  border-bottom-color: rgba(160, 190, 210, .15);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 5px 18px rgba(0, 11, 21, .16);
}

.site-logo { width: clamp(218px, 16vw, 250px); }

.nav-link,
.nav-toggle { font-weight: 680; }

.nav-link::after,
.nav-toggle::after {
  background: var(--cyan);
  box-shadow: none;
}

.nav-search,
.mobile-toggle {
  border-radius: 6px;
  background: transparent;
}

.mega {
  padding: 14px;
  border-radius: 0 0 8px 8px;
  background: #0a1b29;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 20px 45px rgba(0, 11, 20, .23);
}

.mega-link {
  border-radius: 6px;
  background: transparent;
}

.mega-link:hover,
.mega-link:focus-visible {
  background: #102638;
  border-color: rgba(92, 159, 181, .27);
}

/* Homepage hero: real machinery remains the visual focus. */
.hero-customer .hero-grid,
.hero-customer .hero-glow,
.hero-customer .hero-content-customer::before { display: none; }

.hero-customer::before {
  background:
    linear-gradient(90deg, rgba(3, 10, 16, .96) 0%, rgba(4, 14, 23, .88) 38%, rgba(4, 15, 24, .48) 70%, rgba(4, 15, 24, .36) 100%),
    linear-gradient(180deg, rgba(3, 10, 16, .08), rgba(3, 10, 16, .63));
}

.hero-customer .hero-media img {
  filter: saturate(.82) contrast(1.03);
}

.hero-kicker {
  padding: 7px 0 7px 11px;
  border-left: 3px solid var(--cyan);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-body);
  letter-spacing: .05em;
}

.hero-kicker i { display: none; }

.hero-customer h1 {
  max-width: 13ch;
  font-size: clamp(3.45rem, 5.1vw, 5.4rem);
  line-height: .98;
}

.hero-customer .lead { max-width: 730px; }

.hero-customer .hero-proof {
  border: 1px solid rgba(145, 180, 201, .20);
  border-radius: 0;
  background: rgba(4, 16, 26, .94);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-customer .hero-proof > div { border-color: rgba(145, 180, 201, .16); }
.hero-customer .hero-proof strong { font-size: .9rem; }
.hero-customer .hero-proof span { font-size: .76rem; }

/* Static capability list; duplicate marquee items are removed. */
.capability-rail {
  border-block: 1px solid rgba(20, 55, 80, .10);
  background: #ffffff;
}

.capability-rail::before,
.capability-rail::after { display: none; }

.capability-track {
  width: min(calc(100% - 36px), var(--container-wide));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 0;
  padding: 14px 0;
  animation: none !important;
  transform: none !important;
}

.capability-item:nth-child(n + 9) { display: none; }

.capability-item {
  padding: 6px 15px;
  color: #4c6577;
  font-family: var(--font-body);
  font-size: .71rem;
  letter-spacing: .025em;
  text-transform: none;
}

.capability-item::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f6f9f;
  box-shadow: none;
}

/* Solid surfaces and consistent card geometry. */
.feature-card,
.comparison-card,
.system-card,
.article-card,
.contact-panel,
.answer-box,
.form-shell,
.precision-card,
.selector-panel,
.selector-result,
.process-visual,
.case-panel,
.media-frame,
.engineering-visual,
.table-wrap,
.callout {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature-card,
.comparison-card,
.system-card,
.article-card,
.answer-box,
.form-shell,
.precision-card {
  background: #ffffff;
}

.feature-card::after,
.comparison-card::after,
.answer-box::after,
.precision-card::before,
.selector-result::before,
.selector-result::after,
.callout::after { display: none; }

.precision-card {
  padding: clamp(25px, 3vw, 34px);
  border-left: 3px solid var(--cyan);
  background-image: none;
}

.precision-list { margin-top: 22px; }
.precision-list li::before { border-radius: 50%; background: var(--blue); }

.feature-card,
.comparison-card,
.article-card { padding: clamp(22px, 2.6vw, 30px); }

.feature-icon,
.selector-option-icon,
.form-section-label > span {
  border-radius: 5px;
  background: #e8f0f4;
  color: #245d89;
  box-shadow: none;
}

.section-dark .feature-icon,
.section-blue .feature-icon {
  background: #102638;
  color: #79c5ce;
}

@media (hover: hover) and (pointer: fine) {
  .industry-card:hover,
  .feature-card:hover,
  .system-card:hover,
  .article-card:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 111, 159, .24);
    box-shadow: 0 10px 28px rgba(4, 23, 37, .09);
  }
}

/* Selector: practical decision support, not a dashboard. */
.section-selector { background: #071521; }

.selector-shell { gap: 18px; }

.selector-panel,
.selector-result {
  border-color: rgba(150, 185, 205, .18);
  border-radius: 8px;
  background: #0a1b29;
  box-shadow: none;
}

.selector-panel-label {
  border-bottom-color: rgba(150, 185, 205, .13);
  font-family: var(--font-body);
  letter-spacing: .035em;
}

.selector-options { gap: 8px; }

.selector-option {
  min-height: 52px;
  border-radius: 5px;
  background: #0d2131;
}

.selector-option:hover,
.selector-option:focus-visible,
.selector-option[aria-selected="true"] {
  transform: none;
  border-color: rgba(89, 164, 184, .58);
  background: #102a3e;
  box-shadow: none;
}

.selector-result-badge {
  border-radius: 4px;
  background: #102a3e;
  font-family: var(--font-body);
  letter-spacing: .035em;
}

.selector-recommendation {
  min-height: 50px;
  border-radius: 5px;
  background: #0d2131;
}

.selector-recommendation:hover,
.selector-recommendation:focus-visible { transform: none; }

/* Image-led system cards with restrained labels. */
.system-showcase { gap: 14px; }

.system-feature-card {
  min-height: 380px;
  border-radius: 8px;
  box-shadow: none;
}

.system-feature-card.tall { min-height: 470px; }
.system-feature-card::after { display: none; }
.system-feature-card img { filter: saturate(.90) contrast(1.01); }

.system-feature-meta,
.case-media-label {
  border-radius: 4px;
  background: rgba(5, 17, 27, .82);
  font-family: var(--font-body);
  letter-spacing: .035em;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.system-feature-index {
  font-family: var(--font-body);
  font-size: .69rem;
  letter-spacing: .035em;
  text-transform: none;
}

/* Process section: remove glowing grid and decorative particles. */
.process-lab { background-image: none; }
.process-lab::before,
.process-lab::after { display: none; }

.process-lab-note {
  border-radius: 5px;
  background: #0d2131;
  font-family: var(--font-body);
  letter-spacing: .025em;
}

.process-visual {
  min-height: 270px;
  padding: 34px 26px 20px;
  border-color: rgba(150, 185, 205, .16);
  border-radius: 8px;
  background: #0a1b29;
  box-shadow: none;
}

.process-particle { display: none; }
.process-track-line { opacity: .5; }
.process-stage { min-height: 205px; }

.process-stage-node {
  border-radius: 50%;
  background: #133047;
  box-shadow: 0 0 0 6px #0a1b29;
  font-family: var(--font-body);
}

/* Stable media: no unused dark or white columns beneath photographs. */
picture,
figure { margin: 0; }

picture { background: transparent; }

.media-split,
.engineering-layout,
.intro-grid,
.case-panel { align-items: stretch; }

.engineering-visual { min-height: clamp(400px, 42vw, 520px); }
.engineering-visual img { min-height: 0; }

.case-panel {
  grid-template-columns: minmax(380px, .95fr) minmax(0, 1.05fr);
  border-radius: 10px;
}

.case-media {
  position: relative;
  min-height: 460px;
  align-self: stretch;
}

.case-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-media picture > img,
.case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.page-hero,
.hero.compact:not(.hero-home),
.hero:not(.hero-home) {
  min-height: clamp(440px, 50vh, 560px);
}

/* Contact form: compact two-column desktop layout and correctly sized icons. */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, .72fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.enquiry-form { min-width: 0; }

.contact-panel {
  position: sticky;
  top: calc(var(--header-block) + 24px);
  overflow: visible;
  padding: clamp(22px, 2.6vw, 30px);
  background: #0b1d2b;
  color: #d8e4eb;
  box-shadow: none;
}

.contact-panel h2,
.contact-panel h3,
.contact-panel strong { color: #ffffff; }

.contact-panel p,
.contact-panel .small,
.contact-panel .check-list { color: #b9cad5; }

.contact-list {
  gap: 0;
  margin-top: 22px;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.contact-list > div:last-child { border-bottom: 1px solid rgba(255, 255, 255, .11); }

.contact-list svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: #67bdc6;
}

.contact-list > div > span {
  display: grid;
  gap: 3px;
  min-width: 0;
  line-height: 1.48;
}

.contact-list a {
  color: #8bd0d7;
  overflow-wrap: anywhere;
}

.form-grid { gap: 15px 18px; }

.field input,
.field select,
.search-row input { min-height: 48px; }
.field textarea { min-height: 124px; }

.form-section-label {
  margin-top: 14px;
  padding-block: 13px 10px;
}

.form-section-label > span { font-family: var(--font-body); }

/* Quieter closing sections and footer. */
.cta-band {
  padding-block: 38px;
  background: #0d2c48;
}

.cta-band::before { display: none; }
.callout { background: #0a2234; }
.site-footer { background: #06111b; }
.footer-logo { width: 228px; }

.floating-call {
  border-radius: 8px;
  background: #0b2131;
  box-shadow: 0 10px 28px rgba(0, 12, 22, .20);
}

.floating-call-icon {
  border-radius: 5px;
  background: #238b96;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .system-feature-card { min-height: 350px; }
  .system-feature-card.tall { min-height: 430px; }
  .case-panel { grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr); }
  .case-media { min-height: 440px; }
}

@media (max-width: 1050px) {
  .form-shell { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
}

@media (max-width: 900px) {
  .case-panel { grid-template-columns: 1fr; }
  .case-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .engineering-visual { min-height: 420px; }
}

@media (max-width: 760px) {
  :root {
    --section-space: clamp(50px, 14vw, 68px);
    --section-space-sm: clamp(34px, 10vw, 48px);
  }

  .site-logo { width: clamp(184px, 51vw, 205px); }
  .section-head { margin-bottom: 26px; }

  .capability-track {
    width: calc(100% - 24px);
    justify-content: flex-start;
    padding-block: 10px;
  }

  .capability-item {
    width: 50%;
    padding: 6px 8px;
    font-size: .67rem;
  }

  .hero-customer::before {
    background:
      linear-gradient(90deg, rgba(3,10,16,.95), rgba(5,17,27,.72)),
      linear-gradient(180deg, rgba(3,10,16,.16), rgba(3,10,16,.78));
  }

  .hero-kicker {
    padding-left: 9px;
    font-size: .62rem;
  }

  .process-visual { padding: 22px 12px 12px; }
  .process-track-line { display: none; }
  .process-stage { min-height: 0; border-radius: 5px; }
  .case-media { aspect-ratio: 4 / 3; }
  .case-content { padding: 28px 21px 32px; }

  .system-feature-card,
  .system-feature-card.tall,
  .system-feature-card.wide { min-height: 350px; }

  .hero:not(.hero-home),
  .hero.compact:not(.hero-home) {
    min-height: min(500px, calc(100svh - var(--header-block)));
  }

  .form-shell {
    gap: 22px;
    padding: 20px;
  }

  .contact-panel { padding: 22px; }
}


/* 2026-08 hero photography brightness refinement */
.hero-customer::before {
  background:
    linear-gradient(90deg, rgba(3, 10, 16, .88) 0%, rgba(4, 14, 23, .76) 36%, rgba(4, 15, 24, .28) 70%, rgba(4, 15, 24, .10) 100%),
    linear-gradient(180deg, rgba(3, 10, 16, .02), rgba(3, 10, 16, .36));
}

.hero-customer .hero-media img {
  filter: saturate(1.04) contrast(1.02) brightness(1.04);
  object-position: 50% 50%;
  transform: none;
}

@media (max-width: 760px) {
  .hero-customer::before {
    background:
      linear-gradient(180deg, rgba(3, 10, 16, .86) 0%, rgba(3, 10, 16, .64) 48%, rgba(3, 10, 16, .34) 100%),
      linear-gradient(90deg, rgba(3, 10, 16, .70), rgba(5, 17, 27, .28));
  }

  .hero-customer .hero-media img {
    filter: saturate(1.02) contrast(1.01) brightness(1.03);
    object-position: 50% 50%;
  }
}

/* Timed feeder recommendation prompt — opens after 60 seconds */
body.timed-enquiry-open {
  overflow: hidden;
}

.timed-enquiry {
  position: fixed;
  z-index: 14000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(22px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.timed-enquiry.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.timed-enquiry__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 15, .76);
}

.timed-enquiry__dialog {
  position: relative;
  width: min(100%, 590px);
  max-height: min(760px, calc(100svh - 44px));
  overflow: auto;
  padding: clamp(30px, 5vw, 46px);
  border: 1px solid rgba(25, 67, 96, .18);
  border-top: 5px solid #238b96;
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 34px 90px rgba(0, 10, 20, .34);
  transform: translateY(18px);
  transition: transform .28s var(--ease);
}

.timed-enquiry.is-open .timed-enquiry__dialog {
  transform: translateY(0);
}

.timed-enquiry__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(24, 62, 90, .16);
  border-radius: 6px;
  background: #f2f6f8;
  color: #1a3448;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.timed-enquiry__close:hover,
.timed-enquiry__close:focus-visible {
  border-color: #2b7180;
  background: #e7f0f2;
  color: #0b2637;
}

.timed-enquiry__eyebrow {
  margin-bottom: 14px;
  color: #216f79;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.timed-enquiry__dialog h2 {
  max-width: 13ch;
  margin: 0 52px 18px 0;
  color: var(--ink-900);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
}

.timed-enquiry__copy {
  max-width: 50ch;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.62;
}

.timed-enquiry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.timed-enquiry__actions .btn {
  flex: 1 1 220px;
  justify-content: center;
}

.timed-enquiry__contact {
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(24, 62, 90, .13);
  color: var(--steel-700);
  font-size: .88rem;
  line-height: 1.5;
}

.timed-enquiry__contact a {
  color: #1e6685;
  font-weight: 720;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .timed-enquiry {
    place-items: end center;
    padding: 0;
  }

  .timed-enquiry__dialog {
    width: 100%;
    max-height: min(86svh, 720px);
    padding: 30px 20px max(26px, env(safe-area-inset-bottom));
    border-inline: 0;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    transform: translateY(36px);
  }

  .timed-enquiry__dialog h2 {
    margin-right: 48px;
    font-size: clamp(1.9rem, 9.5vw, 2.45rem);
  }

  .timed-enquiry__copy {
    font-size: .96rem;
  }

  .timed-enquiry__actions {
    display: grid;
  }

  .timed-enquiry__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timed-enquiry,
  .timed-enquiry__dialog {
    transition: none !important;
  }
}



/* SEO knowledge-centre additions */
.content-meta { margin: 0 0 22px; padding: 10px 14px; border-left: 3px solid var(--blue); background: var(--surface-soft, #f3f7fa); color: var(--muted); font-size: .9rem; }
.page-resource .article-body section + section { margin-top: clamp(34px, 5vw, 62px); }
.page-resource .article-body .table-wrap { margin: 24px 0 30px; }
@media (max-width: 1100px) and (min-width: 761px) { .mega { max-height: calc(100vh - 110px); overflow-y: auto; } }
@media (min-width: 1101px) { .mega { max-height: calc(100vh - 110px); overflow-y: auto; } }
