@font-face {
  font-family: "Space Grotesk";
  src: url("space-grotesk.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("inter-tight.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --navy-950: #03101a;
  --navy-900: #06131c;
  --navy-850: #081c29;
  --navy-800: #0a2433;
  --navy-700: #123447;
  --ink: #102630;
  --ink-soft: #314651;
  --muted: #60717a;
  --mineral: #f4f6f3;
  --paper: #fbfcfa;
  --white: #ffffff;
  --teal: #00a7b5;
  --teal-deep: #087989;
  --cyan: #49d8e8;
  --cyan-soft: #a7edf2;
  --copper: #c8743a;
  --copper-text: #9f4f24;
  --copper-bright: #f49a55;
  --line: rgba(16, 38, 48, 0.14);
  --line-strong: rgba(16, 38, 48, 0.25);
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-dark-strong: rgba(255, 255, 255, 0.3);
  --font-display: "Space Grotesk", "Inter Tight", Arial, sans-serif;
  --font-body: "Inter Tight", Arial, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 7px;
  --radius-md: 11px;
  --radius-lg: 14px;
  --shadow-soft: 0 18px 55px rgba(6, 19, 28, 0.08);
  --shadow-dark: 0 28px 75px rgba(0, 0, 0, 0.26);
  --shell: min(1440px, calc(100% - 96px));
  --header-height: 86px;
  --section-space: 124px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--navy-900);
}

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

body.menu-open {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

button,
input,
select,
textarea,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
select,
summary {
  cursor: pointer;
}

button {
  color: inherit;
}

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

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

img {
  height: auto;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--cyan);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site,
.anbe-site {
  min-height: 100vh;
  overflow: clip;
  background: var(--paper);
}

.shell,
.container {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--navy-900);
  font-weight: 750;
  transition: transform 160ms ease;
}

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

/* Header */
.site-header,
.header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(3, 16, 26, 0.9), rgba(3, 16, 26, 0.45));
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-solid,
.site-header--solid,
.header.is-solid {
  background: rgba(3, 16, 26, 0.95);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand,
.site-brand {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img,
.site-brand img {
  width: clamp(156px, 13vw, 198px);
}

.brand span,
.site-brand span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.28em;
}

.desktop-nav,
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
}

.desktop-nav a,
.site-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 580;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}

.desktop-nav a::after,
.site-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.42);
}

.language-switch a,
.language-switch button {
  position: relative;
  min-width: 36px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.language-switch a::after,
.language-switch button::after {
  position: absolute;
  content: "";
  right: 7px;
  bottom: 5px;
  left: 7px;
  height: 2px;
  transform: scaleX(0);
  background: var(--cyan);
  transition: transform 150ms ease;
}

.language-switch .is-active,
.language-switch [aria-current="true"],
.language-switch [aria-pressed="true"] {
  color: var(--white);
}

.language-switch .is-active::after,
.language-switch [aria-current="true"]::after,
.language-switch [aria-pressed="true"]::after {
  transform: scaleX(1);
}

.button,
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  background: transparent;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.1;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease;
}

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

.button svg,
.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.button--header,
.btn--header {
  min-height: 44px;
  padding-inline: 19px;
  border-color: rgba(73, 216, 232, 0.65);
  color: var(--white);
  font-size: 13px;
}

.button--header:hover,
.btn--header:hover {
  border-color: var(--cyan);
  background: rgba(73, 216, 232, 0.1);
}

.button--primary,
.btn--primary {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 12px 30px rgba(0, 167, 181, 0.2);
  color: var(--navy-950);
}

.button--primary:hover,
.btn--primary:hover {
  border-color: #79eaf3;
  background: #79eaf3;
  box-shadow: 0 17px 38px rgba(0, 167, 181, 0.28);
}

.button--primary:disabled,
.btn--primary:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button--secondary,
.btn--secondary {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.button--ghost,
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.button--ghost:hover,
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost-dark,
.btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.menu-toggle,
.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-toggle svg,
.nav-toggle svg {
  width: 23px;
  height: 23px;
}

.mobile-menu,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(690px, calc(100svh - 116px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.hero-backdrop,
.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 16, 26, 0.92) 0%, rgba(3, 16, 26, 0.77) 31%, rgba(3, 16, 26, 0.22) 59%, rgba(3, 16, 26, 0.04) 100%),
    linear-gradient(180deg, rgba(3, 16, 26, 0.3) 0%, rgba(3, 16, 26, 0) 58%, rgba(3, 16, 26, 0.48) 100%),
    url("hero-anbe-v2.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.008);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-backdrop::before,
.hero-media::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.15;
  background: radial-gradient(circle at 30% 20%, rgba(73, 216, 232, 0.44), transparent 28%);
}

.hero-backdrop::after,
.hero-media::after {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(73, 216, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.06) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 38%);
}

@keyframes hero-breathe {
  from { transform: scale(1.008) translate3d(0, 0, 0); }
  to { transform: scale(1.03) translate3d(-0.25%, -0.2%, 0); }
}

.hero-grid,
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: max(630px, calc(100svh - 116px));
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
}

.hero-copy {
  max-width: 680px;
  padding: 58px 0 54px;
  animation: content-rise 720ms 100ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes content-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow,
.section-kicker,
.card-label,
.eyebrow {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.245em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cyan);
}

.hero-eyebrow::before,
.hero-eyebrow > span:first-child {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.hero h1,
.hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(72px, 7vw, 116px);
  font-weight: 610;
  letter-spacing: -0.067em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 span,
.hero-title span {
  display: block;
}

.hero h1::after,
.hero-title::after {
  width: 0.15em;
  height: 0.15em;
  display: inline-block;
  margin-left: 0.045em;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(73, 216, 232, 0.42);
}

.hero-body,
.hero-lede {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.hero-actions .button,
.hero-actions .btn {
  min-width: 190px;
}

.hero-labels,
.product-callouts {
  position: relative;
  align-self: stretch;
}

.system-label,
.product-callout {
  position: absolute;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: var(--radius-xs);
  background: rgba(5, 24, 36, 0.66);
  box-shadow: 0 8px 22px rgba(2, 13, 20, 0.15);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 620;
  backdrop-filter: blur(10px);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.system-label:hover,
.product-callout:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(5, 24, 36, 0.84);
}

.system-label > span:last-child,
.product-callout > span:last-child {
  position: absolute;
  top: 100%;
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--cyan), transparent);
}

.system-label > span:last-child::after,
.product-callout > span:last-child::after {
  position: absolute;
  right: -3px;
  bottom: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
}

.system-label--fca,
.product-callout--fca {
  top: 24%;
  left: 17%;
}

.system-label--fca > span:last-child,
.product-callout--fca > span:last-child {
  left: 72%;
}

.system-label--duv,
.product-callout--duv {
  top: 33%;
  right: 1%;
}

.system-label--duv > span:last-child,
.product-callout--duv > span:last-child {
  left: 44%;
}

.hero-config-note,
.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 16px;
  left: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-align: right;
}

/* Evidence band */
.evidence-band,
.proof-band {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 250, 0.98);
}

.evidence-grid,
.proof-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.evidence-grid article,
.proof-grid article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 3vw, 50px);
  border-right: 1px solid var(--line);
}

.evidence-grid article:first-child,
.proof-grid article:first-child {
  padding-left: 0;
}

.evidence-grid article:last-child,
.proof-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.icon-tile,
.evidence-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 167, 181, 0.38);
  border-radius: 50%;
  color: var(--teal-deep);
}

.icon-tile svg,
.evidence-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}

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

.evidence-grid strong,
.proof-grid strong {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.25;
}

.evidence-grid span,
.proof-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

/* Shared section system */
.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section--mineral,
.bg-mineral {
  background: var(--mineral);
}

.section--light,
.bg-paper {
  background: var(--paper);
}

.section--dark,
.bg-dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 58px;
}

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

.section-kicker,
.card-label,
.eyebrow {
  color: var(--teal-deep);
}

.section-heading h2,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro,
.section-lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

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

.section-heading--dark .section-kicker,
.section--dark .section-kicker {
  color: var(--cyan);
}

.section-heading--dark .section-intro,
.section--dark .section-intro {
  color: rgba(255, 255, 255, 0.67);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 750;
  transition: gap 160ms ease, color 160ms ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--navy-900);
}

/* FCA / DUV technology cards */
.technology-grid,
.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.technology-card,
.system-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 480px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.technology-visual,
.system-card__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(73, 216, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.05) 1px, transparent 1px),
    linear-gradient(140deg, var(--navy-900), var(--navy-800));
  background-size: 56px 56px, 56px 56px, auto;
}

.technology-visual::after,
.system-card__visual::after {
  position: absolute;
  content: "";
  inset: auto 8% 0;
  height: 28%;
  background: radial-gradient(ellipse, rgba(73, 216, 232, 0.17), transparent 66%);
}

.technology-visual img,
.system-card__visual img,
.product-image {
  position: relative;
  z-index: 2;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.36));
}

.technology-index,
.system-index {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 26px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.airflow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 28%;
  height: 78px;
  transform: translateY(-50%);
  pointer-events: none;
}

.airflow i {
  position: absolute;
  width: 100%;
  height: 1px;
  animation: airflow 3.6s ease-in-out infinite;
}

.airflow i:nth-child(1) { top: 21px; }
.airflow i:nth-child(2) { top: 39px; animation-delay: -1.1s; }
.airflow i:nth-child(3) { top: 57px; animation-delay: -2.2s; }

.airflow--dirty {
  left: 0;
}

.airflow--dirty i {
  background: linear-gradient(90deg, transparent, var(--copper-bright));
}

.airflow--clean {
  right: 0;
}

.airflow--clean i {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

@keyframes airflow {
  0%, 100% { opacity: 0.2; transform: translateX(-6px) scaleX(0.8); }
  50% { opacity: 0.95; transform: translateX(7px) scaleX(1); }
}

.technology-content,
.system-card__content {
  padding: 38px 38px 42px;
}

.technology-content h3,
.system-card__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.technology-content > p:not(.card-label),
.system-card__content > p:not(.card-label) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.technology-content ul,
.system-card__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.technology-content li,
.system-card__content li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.technology-content li svg,
.system-card__content li svg {
  width: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--teal-deep);
}

.range-note {
  display: grid;
  gap: 6px;
  margin: 26px 0 20px;
  padding: 16px 0;
  border-block: 1px solid var(--line);
}

.range-note span {
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.range-note strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

/* Finder */
.finder-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 70%, rgba(73, 216, 232, 0.11), transparent 28%),
    linear-gradient(125deg, var(--navy-900), #092536);
  color: var(--white);
}

.finder-section::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(73, 216, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 52%);
}

.finder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 8vw, 125px);
}

.finder-intro .section-heading {
  margin-bottom: 0;
}

.finder-orbit {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 58px 0 0 22px;
  border: 1px solid rgba(73, 216, 232, 0.22);
  border-radius: 50%;
}

.finder-orbit::before,
.finder-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(73, 216, 232, 0.16);
  border-radius: 50%;
}

.finder-orbit::before { inset: 34px; }
.finder-orbit::after { inset: 70px; }

.finder-orbit > div {
  position: absolute;
  inset: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy-950);
}

.finder-orbit span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.finder-orbit span:nth-of-type(1) { top: 16%; left: 17%; }
.finder-orbit span:nth-of-type(2) { top: 28%; right: 6%; }
.finder-orbit span:nth-of-type(3) { right: 26%; bottom: 4%; }

.finder-panel {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(12px);
}

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

.finder-fields label,
.assessment-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 650;
}

.finder-fields select,
.assessment-panel input,
.assessment-panel select,
.assessment-panel textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xs);
  background: rgba(3, 16, 26, 0.62);
  color: var(--white);
  font-size: 15px;
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.finder-fields select:focus,
.assessment-panel input:focus,
.assessment-panel select:focus,
.assessment-panel textarea:focus {
  border-color: var(--cyan);
  background: rgba(3, 16, 26, 0.78);
  box-shadow: 0 0 0 3px rgba(73, 216, 232, 0.14);
}

.finder-fields option,
.assessment-panel option {
  background: var(--navy-900);
  color: var(--white);
}

.finder-result {
  margin-top: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
}

.finder-result--fca { box-shadow: inset 4px 0 var(--teal-deep); }
.finder-result--duv { box-shadow: inset 4px 0 var(--teal); }
.finder-result--compare { box-shadow: inset 4px 0 #657ed4; }
.finder-result--review { box-shadow: inset 4px 0 #8999a1; }

.finder-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal-deep);
}

.finder-result-top span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.finder-result h3 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.finder-result > p {
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.58;
}

.finder-result small {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.finder-result small svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

/* ========================================================================== */
/* Production markup — editorial technical system                            */
/* ========================================================================== */

@font-face {
  font-family: "Inter Tight";
  src: url("inter-tight-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
}

/* Header compatibility */
.header-shell {
  width: var(--shell);
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  margin-inline: auto;
}

.language-switcher {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.language-switcher a {
  min-width: 27px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
  transition: color 160ms ease;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: var(--cyan);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-bright {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 12px 28px rgba(0, 167, 181, 0.2);
  color: var(--navy-950);
}

.button-bright:hover {
  border-color: #8cecf4;
  background: #8cecf4;
  box-shadow: 0 17px 38px rgba(0, 167, 181, 0.3);
}

.button-bright:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--navy-950);
}

.button-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 720;
  transition: color 160ms ease;
}

.button-link:hover {
  color: var(--cyan);
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Cinematic hero */
.hero-media {
  z-index: 0;
  overflow: hidden;
  background: var(--navy-900);
  transform: none;
  animation: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 49%;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-media::before,
.hero-media::after {
  display: none;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 16, 26, 0.96) 0%, rgba(3, 16, 26, 0.83) 32%, rgba(3, 16, 26, 0.36) 62%, rgba(3, 16, 26, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 16, 26, 0.34), transparent 50%, rgba(3, 16, 26, 0.66));
}

.hero-overlay::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(73, 216, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.7) 44%, transparent 78%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: max(690px, calc(100svh - 116px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: center;
  gap: clamp(48px, 7vw, 116px);
  padding-top: var(--header-height);
  padding-bottom: 54px;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cyan);
}

.eyebrow > span:first-child {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--teal-deep);
}

.hero h1 em {
  display: inline-block;
  color: var(--cyan);
  font-style: italic;
  font-weight: 440;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.57;
}

.hero-system-card {
  align-self: center;
  margin-top: 40px;
  padding: 10px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 3px solid var(--cyan);
  border-radius: var(--radius-xs);
  background: linear-gradient(145deg, rgba(6, 28, 41, 0.82), rgba(3, 16, 26, 0.56));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.card-kicker {
  margin: 0 -26px 4px;
  padding: 17px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-pathway {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.pathway-index {
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.hero-pathway strong,
.hero-pathway small {
  display: block;
}

.hero-pathway strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 590;
  letter-spacing: -0.02em;
}

.hero-pathway small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-system-card > a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 720;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: max(48px, calc((100vw - min(1440px, 100vw - 96px)) / 2));
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 30px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue span::after {
  width: 13px;
  height: 1px;
  display: block;
  content: "";
  background: var(--cyan);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(230%); }
}

/* Evidence */
.evidence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evidence-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(20px, 2.5vw, 42px);
  border-right: 1px solid var(--line);
}

.evidence-grid > div:first-child {
  padding-left: 0;
}

.evidence-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.evidence-number {
  color: var(--teal-deep) !important;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 36px) !important;
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1;
}

.evidence-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.35;
}

/* Section heading variants */
.section-heading.heading-split,
.heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.68fr);
  align-items: end;
  gap: clamp(50px, 9vw, 145px);
}

.heading-split > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.section-heading.centered,
.centered.section-heading {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.section-heading.centered > p:last-child {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.light h2,
.section-heading.light > div > h2 {
  color: var(--white);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.64);
}

.section-heading .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Product stories */
.systems {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(16, 38, 48, 0.035) 50%, transparent 50.06%),
    var(--paper);
}

.product-card {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--mineral);
  box-shadow: var(--shadow-soft);
}

.product-card + .product-card {
  margin-top: 36px;
}

.product-media {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 50%, rgba(73, 216, 232, 0.2), transparent 35%),
    linear-gradient(rgba(73, 216, 232, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.075) 1px, transparent 1px),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  background-size: auto, 62px 62px, 62px 62px, auto;
}

.product-media::before {
  position: absolute;
  content: "";
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(73, 216, 232, 0.18);
  border-radius: 50%;
}

.product-media::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 12%;
  left: 0;
  height: 18%;
  background: radial-gradient(ellipse, rgba(0, 167, 181, 0.25), transparent 66%);
}

.product-media img {
  position: relative;
  z-index: 2;
  width: min(82%, 640px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.42));
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-media img {
  transform: translateY(-7px) scale(1.015);
}

.product-code {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 25px;
  padding: 9px 11px;
  border: 1px solid rgba(73, 216, 232, 0.42);
  background: rgba(3, 16, 26, 0.72);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 88px);
}

.product-index {
  margin: 0 0 22px;
  color: var(--copper-text);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.product-copy h3 em {
  color: var(--teal-deep);
  font-style: italic;
  font-weight: 460;
}

.product-copy > p:not(.product-index) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.spec-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  color: var(--ink);
  font-weight: 680;
  text-align: right;
}

.product-duv {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--navy-850);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.product-duv .product-copy h3 em,
.product-duv .text-link {
  color: var(--cyan);
}

.product-duv .product-copy > p:not(.product-index),
.product-duv .spec-list span {
  color: rgba(255, 255, 255, 0.62);
}

.product-duv .product-index {
  color: var(--copper-bright);
}

.product-duv .spec-list,
.product-duv .spec-list li {
  border-color: rgba(255, 255, 255, 0.14);
}

.product-duv .spec-list strong {
  color: var(--white);
}

.product-duv .text-link:hover {
  color: var(--white);
}

.product-duv .product-media {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 46% 47%, rgba(0, 167, 181, 0.26), transparent 36%),
    linear-gradient(rgba(73, 216, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.07) 1px, transparent 1px),
    #071925;
  background-size: auto, 62px 62px, 62px 62px, auto;
}

/* Finder production layout */
.finder-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(54px, 8vw, 125px);
}

.finder-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.finder-intro > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}

.finder-note {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.55;
}

.finder-note > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(73, 216, 232, 0.45);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 11px;
}

.finder-note p {
  margin: 1px 0 0;
}

.finder-panel .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.finder-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
}

.finder-panel select {
  width: 100%;
  min-height: 52px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xs);
  background: rgba(3, 16, 26, 0.66);
  color: var(--white);
  font-size: 15px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.finder-panel select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(73, 216, 232, 0.14);
}

.finder-panel option {
  background: var(--navy-900);
  color: var(--white);
}

.finder-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

.finder-controls .button-link {
  color: rgba(255, 255, 255, 0.58);
}

.finder-result[hidden] {
  display: none !important;
}

.finder-result .result-label {
  margin: 0;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.finder-result .button {
  margin-top: 2px;
}

/* Treatment process */
.technology {
  overflow: hidden;
  background: var(--mineral);
}

.technology::before {
  position: absolute;
  content: "TECHNOLOGY";
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(16, 38, 48, 0.027);
  font-family: var(--font-display);
  font-size: clamp(96px, 16vw, 250px);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.technology > .container {
  position: relative;
}

.process-tabs {
  width: fit-content;
  display: flex;
  gap: 4px;
  margin: 0 auto 18px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
}

.process-tab {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.03em;
  transition: background 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.process-tab:hover {
  color: var(--teal-deep);
}

.process-tab.is-active,
.process-tab[aria-selected="true"] {
  background: var(--navy-900);
  box-shadow: 0 8px 20px rgba(6, 19, 28, 0.16);
  color: var(--white);
}

.process-panel {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.process-panel[hidden] {
  display: none !important;
}

.process-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 46%, rgba(73, 216, 232, 0.2), transparent 33%),
    linear-gradient(rgba(73, 216, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.process-visual::before,
.process-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.process-visual::before {
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(73, 216, 232, 0.17);
}

.process-visual::after {
  width: 45%;
  aspect-ratio: 1;
  border: 1px dashed rgba(244, 154, 85, 0.24);
}

.process-visual img {
  position: relative;
  z-index: 2;
  width: min(88%, 760px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.42));
}

.process-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(36px, 5vw, 70px);
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 0;
}

.process-steps li > span {
  color: var(--copper-text);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.process-steps h3 {
  margin: -5px 0 3px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 610;
  letter-spacing: -0.03em;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Model tables */
.models {
  background: var(--paper);
}

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

.model-table-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--teal-deep);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.model-table-card.accent-card {
  border-top-color: var(--copper);
}

.table-title {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 17px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.table-title > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 167, 181, 0.35);
  border-radius: 50%;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
}

.accent-card .table-title > span {
  border-color: rgba(200, 116, 58, 0.4);
  color: var(--copper-text);
}

.table-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.table-title p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-color: var(--teal) transparent;
}

.table-wrap table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 13px;
}

.table-wrap th,
.table-wrap td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  background: var(--mineral);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.table-wrap td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.table-wrap tbody tr:hover {
  background: rgba(73, 216, 232, 0.055);
}

.table-footnote {
  margin: 0;
  padding: 20px 30px 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Applications */
.applications {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 167, 181, 0.19), transparent 27%),
    linear-gradient(135deg, var(--navy-900), #092638);
  color: var(--white);
}

.applications::after {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(73, 216, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.applications > .container {
  position: relative;
  z-index: 2;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.application-grid article {
  min-height: 300px;
  padding: clamp(30px, 3vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.application-grid article:last-child {
  border-right: 0;
}

.application-grid article:hover {
  background: rgba(73, 216, 232, 0.07);
}

.application-grid article > span {
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.application-grid h3 {
  margin: 74px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.application-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.58;
}

.application-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 34px;
}

.application-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.application-cta strong {
  color: var(--white);
}

/* Engineering workflow */
.engineering {
  background: var(--paper);
}

.engineering-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(540px, 1.18fr);
  align-items: start;
  gap: clamp(70px, 10vw, 165px);
}

.engineering-sticky {
  position: sticky;
  top: calc(var(--header-height) + 46px);
}

.engineering-sticky .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.engineering-sticky h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.engineering-sticky > p:not(.eyebrow) {
  max-width: 500px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 17px;
}

.workflow-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list::before {
  position: absolute;
  content: "";
  top: 28px;
  bottom: 28px;
  left: 25px;
  width: 1px;
  background: linear-gradient(var(--teal), var(--line-strong));
}

.workflow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 26px;
  padding: 0 0 48px;
}

.workflow-list li:last-child {
  padding-bottom: 0;
}

.workflow-list li > span {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 167, 181, 0.48);
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
}

.workflow-list h3 {
  margin: -5px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 39px);
  font-weight: 590;
  letter-spacing: -0.045em;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.workflow-list small {
  display: block;
  margin-top: 13px;
  color: var(--copper-text);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.17em;
}

/* Controls */
.controls {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 88%, rgba(73, 216, 232, 0.13), transparent 27%),
    var(--navy-900);
  color: var(--white);
}

.controls-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(60px, 9vw, 145px);
  margin-bottom: 64px;
}

.controls-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
}

.controls-hero h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 580;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.controls-hero > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.controls-grid article {
  min-height: 320px;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.controls-grid article:last-child {
  border-right: 0;
}

.feature-tag {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid rgba(73, 216, 232, 0.4);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.15em;
}

.controls-grid h3 {
  margin: 76px 0 13px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 590;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.controls-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

/* Support */
.support {
  background: var(--mineral);
}

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

.support-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.62);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.support-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 167, 181, 0.48);
  background: var(--white);
}

.support-grid article > span {
  color: var(--copper-text);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.support-grid h3 {
  margin: 82px 0 12px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Project resources */
.resources {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(73, 216, 232, 0.13), transparent 25%),
    linear-gradient(135deg, #0b5360, #06313e 60%, var(--navy-900));
  color: var(--white);
}

.resources-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(65px, 10vw, 160px);
}

.resources-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
}

.resources-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.resources-copy > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
}

.resource-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.resource-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.resource-list article > span {
  color: var(--copper-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.resource-list h3 {
  margin: -6px 0 5px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 590;
  letter-spacing: -0.035em;
}

.resource-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
}

/* Company */
.company {
  background: var(--paper);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(560px, 1.24fr);
  align-items: stretch;
  gap: clamp(62px, 9vw, 145px);
}

.company-mark {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 38, 48, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 38, 48, 0.045) 1px, transparent 1px),
    var(--mineral);
  background-size: 58px 58px, 58px 58px, auto;
}

.company-mark::before,
.company-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.company-mark::before {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(0, 167, 181, 0.24);
}

.company-mark::after {
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(200, 116, 58, 0.26);
}

.company-mark img {
  position: relative;
  z-index: 2;
  width: min(72%, 330px);
}

.company-copy {
  align-self: center;
}

.company-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.company-lead {
  max-width: 720px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.company-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-block: 1px solid var(--line);
}

.company-values > div {
  padding: 23px 22px;
  border-right: 1px solid var(--line);
}

.company-values > div:first-child {
  padding-left: 0;
}

.company-values > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.company-values strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.25;
}

.company-values p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* FAQ */
.faq {
  background: var(--mineral);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(560px, 1.3fr);
  align-items: start;
  gap: clamp(70px, 10vw, 165px);
}

.faq-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 46px);
}

.faq-layout .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-layout h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.8vw, 72px);
  font-weight: 580;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.faq-layout > div:first-child > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

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

.faq-list summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 24px;
  padding: 17px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 590;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] summary > span {
  transform: rotate(45deg);
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--white);
}

.faq-list details > p {
  max-width: 760px;
  margin: -1px 58px 0 0;
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Two-step assessment */
.assessment {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 82%, rgba(0, 167, 181, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-900), #082737);
  color: var(--white);
}

.assessment::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(73, 216, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 216, 232, 0.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.assessment-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(580px, 1.2fr);
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.assessment-copy {
  padding-top: 34px;
}

.assessment-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
}

.assessment-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(55px, 6vw, 88px);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.assessment-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

.contact-direct {
  display: grid;
  gap: 5px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-direct a {
  width: fit-content;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 620;
  transition: color 160ms ease;
}

.contact-direct a:hover {
  color: var(--cyan);
}

.contact-direct span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.assessment-form-wrap {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
  background: rgba(251, 252, 250, 0.98);
  box-shadow: var(--shadow-dark);
  color: var(--ink);
}

.form-progress {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto;
  align-items: center;
  gap: 15px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-progress > div {
  min-width: 82px;
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.form-progress > div:last-child {
  justify-content: end;
}

.form-progress span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 760;
}

.form-progress small {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-progress > div.is-active {
  color: var(--teal-deep);
}

.form-progress > div.is-active span {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--white);
}

.form-progress > i {
  height: 1px;
  background: var(--line-strong);
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 17px;
  animation: form-in 280ms ease both;
}

@keyframes form-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step > label,
.form-step .field-grid > label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 680;
}

.form-step label > span:not(.consent span) {
  color: var(--copper-text);
}

.assessment-form-wrap .field-grid {
  display: grid;
  gap: 17px;
}

.assessment-form-wrap .field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assessment-form-wrap input,
.assessment-form-wrap select,
.assessment-form-wrap textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(16, 38, 48, 0.24);
  border-radius: var(--radius-xs);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.assessment-form-wrap textarea {
  min-height: 130px;
  padding-block: 13px;
  resize: vertical;
  line-height: 1.5;
}

.assessment-form-wrap input:focus,
.assessment-form-wrap select:focus,
.assessment-form-wrap textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 167, 181, 0.12);
}

.assessment-form-wrap :is(input, select, textarea)[aria-invalid="true"] {
  border-color: var(--copper-text);
  box-shadow: 0 0 0 3px rgba(159, 79, 36, 0.1);
}

.form-step > .form-next {
  justify-self: end;
  margin-top: 6px;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 1px;
  accent-color: var(--teal-deep);
}

.consent a {
  border-bottom: 1px solid currentColor;
  color: var(--teal-deep);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 7px;
}

.form-message {
  padding: 25px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-deep);
  background: var(--mineral);
}

.form-message.form-error {
  border-left-color: var(--copper-text);
}

.form-message strong {
  font-family: var(--font-display);
  font-size: 22px;
}

.form-message p {
  margin: 7px 0 0;
  color: var(--muted);
}

.form-message a {
  color: var(--teal-deep);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  overflow: hidden;
  padding: 76px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(40px, 6vw, 90px);
  padding-bottom: 64px;
}

.footer-brand img {
  width: min(220px, 100%);
}

.footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 11px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.58;
  transition: color 160ms ease;
}

.footer-column a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

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

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

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 25px;
}

.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  background: rgba(3, 16, 26, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: var(--white);
  backdrop-filter: blur(12px);
  transition: transform 170ms ease, border-color 170ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
}

.whatsapp-float > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20c466;
  color: #062415;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.whatsapp-float small {
  font-size: 11px;
  font-weight: 700;
}

.hero-system-card.reveal {
  animation: content-rise 720ms 260ms both cubic-bezier(0.2, 0.75, 0.25, 1);
}

/* ========================================================================== */
/* Responsive system                                                          */
/* ========================================================================== */

@media (max-width: 1260px) {
  :root {
    --shell: min(1440px, calc(100% - 64px));
    --section-space: 108px;
  }

  .header-shell {
    gap: 22px;
  }

  .brand,
  .site-brand {
    min-width: 168px;
  }

  .site-nav {
    gap: 19px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .header-actions {
    gap: 11px;
  }

  .header-actions .button-small {
    padding-inline: 14px;
    font-size: 12px;
  }

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

  .hero h1,
  .hero-title {
    font-size: clamp(68px, 7.5vw, 98px);
  }

  .product-copy {
    padding: 48px;
  }

  .product-copy h3 {
    font-size: clamp(38px, 4.3vw, 55px);
  }

  .finder-shell,
  .assessment-shell {
    gap: 64px;
  }

  .application-grid article,
  .controls-grid article {
    padding: 30px;
  }

  .company-values {
    grid-template-columns: 1fr;
  }

  .company-values > div,
  .company-values > div:first-child,
  .company-values > div:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-values > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: calc(100% - 48px);
    --header-height: 76px;
    --section-space: 94px;
  }

  .header-shell {
    position: relative;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    z-index: 5;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-top: 1px solid rgba(73, 216, 232, 0.3);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: rgba(3, 16, 26, 0.98);
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
    animation: menu-in 180ms ease both;
  }

  .site-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  @keyframes menu-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  body.nav-is-open {
    overflow: hidden;
  }

  .hero {
    min-height: 720px;
  }

  .hero-layout {
    min-height: 720px;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 34px;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(64px, 8.6vw, 88px);
  }

  .hero-system-card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .card-kicker {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .scroll-cue {
    left: 24px;
  }

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

  .evidence-grid > div {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
  }

  .evidence-grid > div:first-child {
    padding-left: 24px;
  }

  .evidence-grid > div:nth-child(2) {
    border-right: 0;
  }

  .evidence-grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section-heading.heading-split,
  .heading-split,
  .controls-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .heading-split > p,
  .controls-hero > p {
    max-width: 700px;
  }

  .product-card {
    min-height: 570px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  }

  .product-media {
    min-height: 520px;
  }

  .product-copy {
    padding: 40px;
  }

  .product-copy h3 {
    font-size: clamp(37px, 4.7vw, 49px);
  }

  .spec-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .spec-list strong {
    text-align: left;
  }

  .finder-shell,
  .resources-layout,
  .company-layout,
  .faq-layout,
  .assessment-shell {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .finder-intro,
  .resources-copy,
  .assessment-copy {
    max-width: 720px;
  }

  .finder-panel,
  .assessment-form-wrap {
    width: 100%;
    max-width: 820px;
  }

  .process-panel {
    grid-template-columns: 1fr;
  }

  .process-visual {
    min-height: 520px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 38px;
  }

  .process-steps li,
  .process-steps li:last-child {
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-steps li:nth-child(2n) {
    border-right: 0;
  }

  .process-steps li:nth-child(n + 3) {
    border-bottom: 0;
  }

  .application-grid,
  .controls-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-grid article,
  .controls-grid article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .application-grid article:nth-child(2n),
  .controls-grid article:nth-child(2n) {
    border-right: 0;
  }

  .application-grid article:nth-child(n + 3),
  .controls-grid article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .engineering-layout {
    grid-template-columns: minmax(290px, 0.72fr) minmax(430px, 1.28fr);
    gap: 58px;
  }

  .engineering-sticky h2 {
    font-size: 51px;
  }

  .company-mark {
    min-height: 420px;
  }

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

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

  .company-values > div,
  .company-values > div:first-child,
  .company-values > div:last-child {
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .company-values > div:first-child {
    padding-left: 0;
  }

  .company-values > div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .faq-layout > div:first-child,
  .engineering-sticky {
    position: static;
  }

  .assessment-copy {
    padding-top: 0;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 470px;
  }

  .product-duv .product-media {
    order: -1;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .engineering-layout {
    grid-template-columns: 1fr;
  }

  .engineering-sticky {
    max-width: 700px;
  }

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

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

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 70px;
    --section-space: 76px;
  }

  body {
    font-size: 15px;
  }

  .site-header,
  .header {
    height: var(--header-height);
  }

  .brand,
  .site-brand {
    min-width: 0;
  }

  .brand img,
  .site-brand img {
    width: 148px;
  }

  .header-actions .button {
    display: none;
  }

  .language-switcher {
    gap: 2px;
  }

  .language-switcher a {
    min-width: 24px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    right: -8px;
    left: -8px;
  }

  .hero,
  .hero-layout {
    min-height: 720px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 62px;
  }

  .hero-media img {
    object-position: 57% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 16, 26, 0.95), rgba(3, 16, 26, 0.66)),
      linear-gradient(180deg, rgba(3, 16, 26, 0.3), transparent 48%, rgba(3, 16, 26, 0.72));
  }

  .hero-copy {
    max-width: 620px;
    padding: 0;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(53px, 15.8vw, 82px);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 540px;
    margin-top: 25px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

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

  .hero-system-card,
  .scroll-cue {
    display: none;
  }

  .hero .eyebrow,
  .section-kicker,
  .card-label,
  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.19em;
  }

  .evidence-grid > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 16px;
  }

  .evidence-grid > div:first-child {
    padding-left: 16px;
  }

  .evidence-number {
    font-size: 26px !important;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .section-title,
  .finder-intro h2,
  .controls-hero h2,
  .resources-copy h2,
  .company-copy h2,
  .faq-layout h2,
  .engineering-sticky h2 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.99;
  }

  .heading-split > p,
  .section-heading.centered > p:last-child,
  .controls-hero > p {
    font-size: 16px;
  }

  .product-card + .product-card {
    margin-top: 22px;
  }

  .product-media {
    min-height: 370px;
  }

  .product-media img {
    max-height: 390px;
  }

  .product-copy {
    padding: 34px 24px 38px;
  }

  .product-copy h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .product-copy > p:not(.product-index) {
    margin-top: 20px;
    font-size: 15px;
  }

  .finder-panel,
  .assessment-form-wrap {
    padding: 24px 18px;
  }

  .finder-panel .field-grid,
  .assessment-form-wrap .field-grid.two {
    grid-template-columns: 1fr;
  }

  .finder-controls {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .finder-controls .button {
    width: 100%;
  }

  .finder-result {
    padding: 22px;
  }

  .process-tabs {
    width: 100%;
    flex-direction: column;
  }

  .process-tab {
    width: 100%;
  }

  .process-visual {
    min-height: 380px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .process-steps li,
  .process-steps li:last-child,
  .process-steps li:nth-child(2n),
  .process-steps li:nth-child(n + 3) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-steps li:last-child {
    border-bottom: 0;
  }

  .model-table-card {
    border-radius: var(--radius-xs);
  }

  .table-title {
    padding: 24px 20px;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 14px 16px;
  }

  .table-footnote {
    padding: 18px 20px 22px;
  }

  .application-grid,
  .controls-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .application-grid article,
  .application-grid article:nth-child(2n),
  .application-grid article:nth-child(n + 3),
  .controls-grid article,
  .controls-grid article:nth-child(2n),
  .controls-grid article:nth-child(n + 3) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .application-grid article:last-child,
  .controls-grid article:last-child {
    border-bottom: 0;
  }

  .application-grid h3,
  .controls-grid h3 {
    margin-top: 48px;
  }

  .application-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .workflow-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 38px;
  }

  .workflow-list::before {
    left: 21px;
  }

  .workflow-list li > span {
    width: 44px;
    height: 44px;
  }

  .workflow-list h3 {
    font-size: 28px;
  }

  .support-grid article {
    min-height: 220px;
  }

  .support-grid h3 {
    margin-top: 48px;
  }

  .resource-list article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .company-mark {
    min-height: 330px;
  }

  .company-mark::before {
    width: 250px;
    height: 250px;
  }

  .company-mark::after {
    width: 165px;
    height: 165px;
  }

  .company-lead {
    font-size: 16px;
  }

  .company-values {
    grid-template-columns: 1fr;
  }

  .company-values > div,
  .company-values > div:first-child,
  .company-values > div:last-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-values > div:last-child {
    border-bottom: 0;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 18px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .assessment-copy h2 {
    font-size: clamp(49px, 14vw, 70px);
  }

  .contact-direct {
    margin-top: 34px;
  }

  .form-progress {
    gap: 8px;
  }

  .form-progress small {
    display: none;
  }

  .form-progress > div {
    min-width: 30px;
    grid-template-columns: 30px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

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

  .form-step > .form-next {
    width: 100%;
    justify-self: stretch;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .brand img,
  .site-brand img {
    width: 132px;
  }

  .header-shell {
    gap: 9px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero,
  .hero-layout {
    min-height: 690px;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(49px, 15.4vw, 64px);
  }

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

  .evidence-grid p {
    font-size: 11px;
  }

  .product-media,
  .process-visual {
    min-height: 320px;
  }

  .product-code {
    top: 16px;
    left: 16px;
  }

  .table-title {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .table-title > span {
    width: 40px;
    height: 40px;
  }

  .table-title h3 {
    font-size: 25px;
  }

  .application-grid article,
  .controls-grid article,
  .support-grid article {
    padding: 25px 22px;
  }

  .assessment-form-wrap {
    margin-inline: -2px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 13px;
    bottom: 13px;
    padding-right: 7px;
  }

  .whatsapp-float small {
    display: none;
  }
}

@media (max-height: 700px) and (min-width: 761px) {
  .hero,
  .hero-layout {
    min-height: 650px;
  }

  .hero-copy {
    padding-top: 90px;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(62px, 6.5vw, 88px);
  }
}

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

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

  .hero-media img,
  .hero-copy,
  .hero-system-card,
  .scroll-cue span::after {
    animation: none !important;
  }
}

@media print {
  :root {
    --shell: calc(100% - 32px);
    --section-space: 48px;
  }

  .site-header,
  .hero-system-card,
  .scroll-cue,
  .whatsapp-float,
  .finder-controls,
  .assessment,
  .site-footer {
    display: none !important;
  }

  body,
  .section,
  .applications,
  .controls,
  .resources {
    background: #fff !important;
    color: #111 !important;
  }

  .hero {
    min-height: 440px;
  }

  .product-card,
  .process-panel,
  .model-table-card {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* Final state variants and utility pages */
.product-fca .product-media {
  border-right: 1px solid var(--line-strong);
}

.finder-result.route-fca {
  box-shadow: inset 4px 0 var(--teal-deep);
}

.finder-result.route-duv {
  box-shadow: inset 4px 0 var(--teal);
}

.finder-result.route-compare {
  box-shadow: inset 4px 0 #657ed4;
}

.finder-result.route-review {
  box-shadow: inset 4px 0 #8999a1;
}

.applications .eyebrow,
.applications .section-heading .eyebrow {
  color: var(--cyan);
}

.form-message.form-success {
  border-left-color: var(--teal-deep);
}

.button-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--teal-deep);
  background: rgba(0, 167, 181, 0.07);
  color: var(--teal-deep);
}

.legal-page,
.error-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-page main.section,
.error-page main.section {
  padding-top: calc(var(--header-height) + 82px);
}

.legal-content {
  max-width: 980px;
}

.legal-content > .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-content > h1 {
  max-width: 930px;
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 570;
  letter-spacing: -0.062em;
  line-height: 0.95;
}

.legal-content > p,
.legal-content section {
  max-width: 800px;
}

.legal-content > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content > p strong {
  color: var(--ink);
}

.legal-content section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal-content section h2 {
  margin: 0 0 15px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.legal-content section p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content section a,
.legal-content > p a:not(.button) {
  border-bottom: 1px solid currentColor;
  color: var(--teal-deep);
  font-weight: 650;
}

.legal-content > p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 52px;
}

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

.legal-page .footer-bottom {
  border-top: 0;
}

.error-page {
  background:
    radial-gradient(circle at 84% 20%, rgba(73, 216, 232, 0.11), transparent 28%),
    var(--paper);
}

.error-page main.section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-bottom: 80px;
}

.error-page .legal-content > h1 {
  max-width: 800px;
  font-size: clamp(58px, 7vw, 104px);
}

.error-page .legal-content > p:not(.eyebrow) {
  max-width: 650px;
}

@media (max-width: 820px) {
  .product-fca .product-media {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }
}

@media (max-width: 760px) {
  .legal-page main.section,
  .error-page main.section {
    padding-top: calc(var(--header-height) + 58px);
  }

  .legal-content > h1,
  .error-page .legal-content > h1 {
    font-size: clamp(43px, 12.5vw, 64px);
  }

  .legal-content > p {
    font-size: 15px;
  }

  .legal-content section {
    margin-top: 36px;
    padding-top: 25px;
  }

  .error-page .legal-content > p:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .error-page .legal-content > p:last-child .button {
    width: 100%;
  }

  .legal-page .footer-bottom {
    padding-block: 24px;
  }
}

/* ========================================================================== */
/* Approved ANBE visual system — separated FCA / DUV equipment                */
/* ========================================================================== */

.hero-layout {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 16, 26, 0.98) 0%, rgba(3, 16, 26, 0.88) 31%, rgba(3, 16, 26, 0.46) 49%, rgba(3, 16, 26, 0.10) 76%, rgba(3, 16, 26, 0.05) 100%),
    linear-gradient(180deg, rgba(3, 16, 26, 0.34), transparent 52%, rgba(3, 16, 26, 0.58));
}

.hero-equipment-tags {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--shell);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-equipment-tag {
  position: absolute;
  top: 82%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(73, 216, 232, 0.42);
  border-radius: 4px;
  background: rgba(3, 16, 26, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-equipment-tag strong {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.hero-equipment-tag small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.hero-equipment-tag--fca {
  left: 64%;
  transform: translateX(-50%);
}

.hero-equipment-tag--duv {
  left: 86%;
  transform: translateX(-50%);
}

.product-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--navy-850);
  box-shadow: var(--shadow-dark);
  color: var(--white);
}

.product-media,
.product-duv .product-media {
  min-height: 0;
  background: var(--navy-950);
}

.product-media::before {
  display: none;
}

.product-media::after {
  z-index: 2;
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(3, 16, 26, 0.06), transparent 58%, rgba(3, 16, 26, 0.30)),
    linear-gradient(90deg, rgba(3, 16, 26, 0.12), transparent 35%);
}

.product-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.product-card:hover .product-media img {
  transform: scale(1.018);
}

.product-copy h3,
.product-fca .spec-list strong {
  color: var(--white);
}

.product-copy h3 em,
.product-fca .text-link,
.product-duv .product-copy h3 em,
.product-duv .text-link {
  color: var(--cyan);
}

.product-copy > p:not(.product-index),
.product-fca .spec-list span,
.product-duv .product-copy > p:not(.product-index),
.product-duv .spec-list span {
  color: rgba(255, 255, 255, 0.66);
}

.product-fca .product-index {
  color: var(--copper-bright);
}

.product-fca .spec-list,
.product-fca .spec-list li,
.product-duv .spec-list,
.product-duv .spec-list li {
  border-color: rgba(255, 255, 255, 0.14);
}

.product-fca .product-media,
.product-duv .product-media {
  border-color: rgba(255, 255, 255, 0.14);
}

.process-visual {
  min-height: 0;
  background: var(--navy-950);
}

.process-visual::before,
.process-visual::after {
  display: none;
}

.process-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

@media (min-width: 821px) {
  .product-media {
    min-height: 650px;
  }
}

@media (max-width: 1180px) {
  .hero-equipment-tags {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 700px);
  }
}

@media (max-width: 1024px) {
  .process-visual {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 820px) {
  .product-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .product-fca .product-media,
  .product-duv .product-media {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 760px) {
  .hero,
  .hero-layout {
    min-height: 760px;
  }

  .hero-layout {
    align-content: start;
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-media img {
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 16, 26, 0.98) 0%, rgba(3, 16, 26, 0.91) 48%, rgba(3, 16, 26, 0.50) 74%, rgba(3, 16, 26, 0.20) 100%),
      linear-gradient(90deg, rgba(3, 16, 26, 0.70), rgba(3, 16, 26, 0.16));
  }

  .process-visual,
  .product-media {
    aspect-ratio: 4 / 3;
  }
}

@media (hover: none), (pointer: coarse) {
  .product-card:hover .product-media img {
    transform: none;
  }
}
