@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSansVar-Roman.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSansVar-Italic.woff2") format("woff2-variations");
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  --ink: #000;
  --navy: #18194b;
  --masthead: #e1e1e6;
  --line: #e7e7e7;
  --paper: #fff;
  --muted: #f4f4f6;
  --content: 1024px;
  --page-pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html {
  background: var(--masthead);
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  width: 100%;
  max-width: 1920px;
  margin: 0;
  margin-inline: auto;
  background: var(--paper);
  color: var(--ink);
  font: 400 18px/1.48 "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}
a { color: inherit; }
.mass-to-charge { white-space: nowrap; }
img, video { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  background: #fff;
  padding: 8px 12px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 118px;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--masthead);
}
.brand img { width: 160px; height: 91px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a { color: #101038; text-decoration: none; }
.primary-nav a:hover, .primary-nav a.active { text-decoration: underline; text-underline-offset: 4px; }
.global-language-switch { display: flex; gap: 8px; align-items: center; margin-left: 8px; padding-left: 24px; border-left: 1px solid rgba(16,16,56,.22); }
.global-language-switch > a { padding: 4px 0; color: #6b6d7c; font-size: 14px; font-weight: 700; letter-spacing: .06em; }
.global-language-switch > a.active { color: var(--navy); text-decoration: underline; text-decoration-color: #b31d28; text-decoration-thickness: 2px; }
.global-language-switch > span { color: #9a9ba7; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #111;
  padding: 6px;
  font: inherit;
}
.menu-toggle span { display: block; font-size: 25px; letter-spacing: 2px; line-height: .7; }
.menu-toggle small { display: block; margin-top: 6px; font-size: 10px; }

@media (min-width: 761px) {
  .site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    box-shadow: 0 4px 16px rgba(24,25,75,.08);
  }
  main [id] { scroll-margin-top: 138px; }
}

.title-band {
  margin: 0;
  padding: 2px var(--page-pad) 14px;
  background: var(--masthead);
  text-align: center;
}
h1, h2, h3 {
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.04;
  letter-spacing: -.035em;
}
h1 { margin: 0; font-size: clamp(44px, 5vw, 64px); font-weight: 700; }
h2 { margin: 0 0 28px; font-size: clamp(38px, 4.2vw, 48px); font-weight: 700; }
h3 { margin: 0 0 16px; font-size: 28px; }
p { margin: 0 0 24px; }
ul { margin: 0 0 24px; padding-left: 24px; }
li + li { margin-top: 7px; }

.hero-image {
  width: min(100%, 1024px);
  margin: 0 auto;
  max-height: 610px;
  object-fit: cover;
}
.home-hero { background: linear-gradient(var(--masthead) 0 5%, #fff 5%); }
.home-hero .hero-image { width: min(64vw, 820px); max-height: 560px; object-fit: contain; }

.content-wrap { width: min(calc(100% - (2 * var(--page-pad))), var(--content)); margin: 0 auto; }
.section-space { padding: 40px 0 64px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 64px;
  padding: 48px 0 78px;
}
.info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(20, 23, 48, .045);
}
.info-card .card-image { width: 100%; height: 260px; object-fit: cover; }
.info-card .contain { object-fit: contain; padding: 18px; background: #fff; }
.card-body { padding: 32px 22px 20px; }
.card-body h2 { margin-bottom: 30px; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-button {
  display: inline-flex;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  padding: 17px 25px;
  border: 0;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .01em;
}
.pill-button:hover { filter: brightness(1.28); }

.feature-intro { padding: 40px 0 20px; }
.media-frame { width: min(100%, 580px); margin: 0 auto 42px; }
.media-frame video { width: 100%; aspect-ratio: 16/9; background: #111; object-fit: cover; }
.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  padding: 55px 0;
  border-top: 1px solid var(--line);
}
.feature-block.reverse .feature-copy { order: 2; }
.feature-block.reverse .feature-media { order: 1; }
.feature-media img { width: 100%; max-height: 470px; object-fit: contain; }
.lead { font-size: 22px; }
.advantages { columns: 2; column-gap: 38px; }
.advantages li { break-inside: avoid; margin-bottom: 9px; }

.product-hero { width: 100%; height: min(34vw, 430px); object-fit: cover; filter: grayscale(1); }
.product-card { padding: 0; }
.product-card .product-image { width: 100%; height: 310px; object-fit: cover; }
.product-card .product-content { padding: 34px; }
.product-card h2 { margin-bottom: 18px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 26px; font-size: 17px; }
.spec-table td { padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table td:first-child { width: 58%; font-weight: 700; }

.career-grid { padding-top: 60px; align-items: start; }
.career-grid .info-card { padding: 28px 22px; }
.career-grid .info-card h2 { margin-bottom: 34px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 40px 0 70px;
}
.gallery img { width: 100%; height: 390px; object-fit: cover; }
.gallery img:first-child, .gallery img:last-child { grid-column: 1 / -1; height: auto; max-height: 620px; object-fit: contain; }
.coming-soon { text-align: center; padding: 0 0 70px; font-size: 21px; }

.privacy-redesign { --privacy-red: #b31d28; background: #fff; }
.privacy-intro { max-width: 900px; padding-top: 72px; }
.privacy-intro h1 { margin: 38px 0 20px; font-size: clamp(48px, 6vw, 78px); line-height: 1.02; }
.privacy-intro > p:not(.section-kicker) { max-width: 720px; margin: 0; color: #585a6d; font-size: 20px; }
.privacy-language-switch { display: flex; gap: 14px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.privacy-language-switch button { padding: 7px 0; border: 0; border-bottom: 2px solid transparent; background: transparent; color: #6b6d7c; font: inherit; font-weight: 700; cursor: pointer; }
.privacy-language-switch button:hover,
.privacy-language-switch button:focus-visible,
.privacy-language-switch button.active { border-bottom-color: var(--privacy-red); color: var(--navy); }
.privacy-language-switch button:focus-visible { outline: 2px solid var(--privacy-red); outline-offset: 4px; }
.privacy-language-switch span { color: #a2a3ad; }
.privacy { max-width: 900px; padding: 10px 0 88px; }
.privacy[hidden] { display: none; }
.privacy section { padding: 42px 0; border-bottom: 1px solid var(--line); }
.privacy h2 { margin: 0 0 20px; font-size: clamp(27px, 3vw, 35px); }
.privacy p { color: #4f5163; }
.privacy strong { color: var(--navy); }
.privacy address { margin: 20px 0; color: #4f5163; font-style: normal; line-height: 1.7; }
.privacy a { color: var(--privacy-red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.privacy-updated { margin-top: 34px; color: #777987 !important; font-size: 14px; }

.company-footer {
  min-height: 430px;
  padding: 80px max(var(--page-pad), calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  background: var(--masthead);
}
.company-footer img { width: min(100%, 560px); margin-left: auto; }
.company-footer a, .legal-footer a { color: var(--navy); }
.legal-footer {
  min-height: 126px;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--masthead);
  border-top: 1px solid rgba(0,0,0,.08);
}
.to-top { margin-left: auto; }

/* Products proposal: systems first, shared modular platform second. */
.products-redesign,
.technology-redesign,
.career-redesign,
.home-redesign,
.news-redesign {
  --product-red: #b31d28;
  --product-red-dark: #8e121d;
  --product-green: #148344;
  --product-silver: #eef0f3;
  overflow: hidden;
  color: var(--navy);
}
.products-redesign .content-wrap,
.technology-redesign .content-wrap,
.career-redesign .content-wrap,
.home-redesign .content-wrap,
.news-redesign .content-wrap { --content: 1180px; }
.products-redesign h1,
.products-redesign h2,
.products-redesign h3,
.technology-redesign h1,
.technology-redesign h2,
.technology-redesign h3,
.career-redesign h1,
.career-redesign h2,
.career-redesign h3,
.home-redesign h1,
.home-redesign h2,
.home-redesign h3,
.news-redesign h1,
.news-redesign h2,
.news-redesign h3 { color: inherit; }
.products-redesign h2,
.technology-redesign h2,
.career-redesign h2,
.home-redesign h2,
.news-redesign h2 { max-width: 760px; }
.section-kicker {
  margin: 0 0 18px;
  color: var(--product-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}
.section-heading { max-width: 800px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading > p:last-child { max-width: 680px; font-size: 20px; color: #4e5066; }

.products-hero {
  position: relative;
  padding: 76px 0 82px;
  background:
    linear-gradient(90deg, rgba(24,25,75,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(24,25,75,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    #f7f7f9;
}
.products-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: var(--product-red);
}
.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.2fr);
  gap: clamp(38px, 5vw, 80px);
  align-items: center;
}
.products-hero-copy h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: .98;
}
.products-hero-lead { max-width: 610px; margin-bottom: 34px; color: #45475d; font-size: 21px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.proposal-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
}
.proposal-button-primary { background: var(--product-red); color: #fff; }
.proposal-button-primary:hover { background: var(--product-red-dark); }
.proposal-button-secondary { border-color: var(--navy); color: var(--navy); }
.proposal-button-secondary:hover { background: var(--navy); color: #fff; }
.products-hero-visual { position: relative; margin: 0; }
.products-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -17px;
  right: -17px;
  width: 44%;
  height: 48%;
  background: var(--product-red);
}
.products-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  object-position: center;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24,25,75,.16);
}
.products-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: -28px;
  width: min(360px, 72%);
  padding: 18px 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 25px rgba(24,25,75,.2);
}
.products-hero-visual figcaption strong,
.products-hero-visual figcaption span { display: block; }
.products-hero-visual figcaption strong { margin-bottom: 4px; font-size: 20px; }
.products-hero-visual figcaption span { color: #d9daea; font-size: 14px; }
.products-redesign .products-hero-visual figcaption {
  position: static;
  width: 100%;
}

.platform-story { padding: 96px 0 104px; background: #fff; }
.ion-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}
.ion-path li { position: relative; display: flex; gap: 15px; min-width: 0; margin: 0; padding: 22px 24px 22px 0; border-top: 2px solid var(--navy); }
.ion-path li::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  transform: rotate(45deg);
}
.ion-path li:last-child::after { display: none; }
.stage-number { color: var(--product-red); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.ion-path strong,
.ion-path small { display: block; }
.ion-path strong { margin-bottom: 5px; font-size: 18px; }
.ion-path small { color: #626478; font-size: 14px; line-height: 1.35; }
.scope-map { display: grid; gap: 10px; }
.scope-row { display: grid; grid-template-columns: 110px 1fr 220px; gap: 18px; align-items: center; }
.scope-row strong { font-size: 15px; }
.scope-row small { color: #646579; font-size: 14px; }
.scope-bar { position: relative; height: 18px; overflow: hidden; background: var(--product-silver); }
.scope-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent calc(25% - 1px), #fff calc(25% - 1px) calc(25% + 1px), transparent calc(25% + 1px) calc(50% - 1px), #fff calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px) calc(75% - 1px), #fff calc(75% - 1px) calc(75% + 1px), transparent calc(75% + 1px));
  pointer-events: none;
}
.scope-bar i { position: absolute; inset: 0 auto 0 var(--start, 0); width: var(--scope); background: var(--scope-color, var(--product-red)); }
.scope-purify { --scope-color: #75799d; }
.scope-quad { --scope-color: var(--product-red); }
.scope-select { --scope-color: var(--navy); }

.configuration-section { padding: 96px 0 110px; background: var(--navy); }
.section-heading-light { color: #fff; }
.section-heading-light .section-kicker { color: #ef9aa2; }
.system-card {
  overflow: hidden;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.system-card-featured { display: grid; grid-template-columns: 1.25fr 1fr; margin-bottom: 30px; }
.system-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.system-image { display: flex; align-items: center; min-height: 300px; background: #f3f2ef; }
.system-card-featured .system-image { min-height: 570px; }
.system-image img { width: 100%; height: auto; object-fit: contain; object-position: center; }
.system-copy { padding: clamp(30px, 4vw, 52px); }
.system-label { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 27px; color: var(--product-red); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.system-copy h3 { margin-bottom: 13px; font-size: clamp(40px, 4vw, 58px); }
.system-tagline { margin-bottom: 24px; color: #313348; font-size: 21px; font-weight: 700; line-height: 1.25; }
.system-copy > p:not(.system-tagline) { color: #555769; font-size: 16px; }
.performance-panel { margin: 30px 0 0; padding: 21px 22px 23px; border-left: 3px solid var(--product-red); background: #f3f2ef; }
.performance-heading { margin-bottom: 18px; }
.performance-heading strong { font-size: 11px; font-weight: 700; letter-spacing: .1em; line-height: 1.3; text-transform: uppercase; }
.performance-heading strong { color: var(--navy); }
.performance-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; margin: 0; }
.performance-grid div { min-width: 0; }
.performance-grid dt { margin: 0 0 4px; color: var(--product-red); font-size: clamp(21px, 2.1vw, 28px); font-weight: 700; line-height: 1; white-space: nowrap; }
.performance-grid dt sup { position: relative; top: -.45em; font-size: .58em; line-height: 0; vertical-align: baseline; }
.performance-grid dd { margin: 0; color: #555769; font-size: 12px; font-weight: 600; line-height: 1.35; }
.performance-disclaimer { margin: 22px 0 0; color: #c9cad8; font-size: 13px; line-height: 1.5; text-align: right; }
.included-list { display: grid; gap: 11px; margin: 30px 0 32px; padding: 0; list-style: none; }
.included-list li { display: flex; gap: 11px; align-items: flex-start; margin: 0; color: #303246; font-size: 15px; line-height: 1.35; }
.included-list li span { flex: 0 0 21px; width: 21px; height: 21px; border-radius: 50%; background: #e8f5ed; color: var(--product-green); text-align: center; font-size: 13px; font-weight: 700; line-height: 21px; }
.included-list li.optional span { background: #ececf5; color: var(--navy); }
.text-link { color: var(--product-red); font-size: 15px; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.comparison-section { padding: 102px 0; background: #fff; }
.comparison-scroll { overflow-x: auto; border: 1px solid #dfe0e6; }
.comparison-table { width: 100%; min-width: 840px; border-collapse: collapse; font-size: 15px; }
.comparison-table th,
.comparison-table td { padding: 20px 22px; border-bottom: 1px solid #e5e5ea; text-align: left; }
.comparison-table thead th { background: var(--navy); color: #fff; font-size: 18px; }
.comparison-table thead th:first-child { background: #11123b; }
.comparison-table thead small { display: block; margin-top: 4px; color: #c6c7d9; font-size: 12px; font-weight: 400; }
.comparison-table tbody th { width: 34%; color: #393b50; font-weight: 700; }
.comparison-table tbody tr:nth-child(even) { background: #f7f7f9; }
.status { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; }
.status.included::before,
.comparison-note span { content: ""; width: 19px; height: 19px; border-radius: 50%; background: #e8f5ed; color: var(--product-green); text-align: center; line-height: 19px; }
.status.included::before { content: "✓"; }
.status.optional { color: var(--navy); }
.status.optional::before { content: "+"; width: 19px; height: 19px; border-radius: 50%; background: #ececf5; color: var(--navy); text-align: center; line-height: 19px; }
.status.upstream { color: #6d6e7e; }
.status.none { color: #aaa; }
.comparison-note { display: flex; gap: 10px; align-items: center; margin: 18px 0 0; color: #676879; font-size: 13px; }
.comparison-note span { flex: 0 0 19px; background: #ececf5; color: var(--navy); font-weight: 700; }

.modules-section { padding: 108px 0; background: #f0f1f4; }
.modules-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.modules-visual { position: relative; padding: 0 32px 100px 0; }
.modules-visual > img:first-child { width: 100%; min-height: 310px; object-fit: contain; background: #fff; box-shadow: 0 15px 35px rgba(24,25,75,.1); }
.modules-visual .rack-inset { position: absolute; right: 0; bottom: 0; width: 48%; border: 8px solid #f0f1f4; box-shadow: 0 15px 35px rgba(24,25,75,.18); }
.modules-copy > p:not(.section-kicker) { max-width: 620px; color: #585a6d; }
.module-list { margin-top: 34px; border-top: 1px solid #d4d5dc; }
.module-list article { padding: 18px 0; border-bottom: 1px solid #d4d5dc; }
.module-list h3 { margin: 0 0 4px; font-size: 20px; }
.module-list p { margin: 0; color: #626477; font-size: 14px; }

.products-cta { position: relative; padding: 96px 0 104px; background: var(--product-red); color: #fff; }
.products-cta::after { content: ""; position: absolute; inset: 0 0 0 auto; width: 34%; opacity: .2; background: linear-gradient(135deg, transparent 50%, #fff 50%); }
.products-cta .content-wrap { position: relative; z-index: 1; }
.products-cta .section-kicker { color: #ffd5d8; }
.products-cta h2 { max-width: 850px; margin-bottom: 18px; color: #fff; font-size: clamp(42px, 5vw, 64px); }
.products-cta p:not(.section-kicker) { max-width: 680px; font-size: 20px; }
.proposal-button-light { margin-top: 12px; background: #fff; color: var(--product-red); }
.proposal-button-light:hover { background: var(--navy); color: #fff; }

/* Homepage proposal: lead with the complete platform, then explain the ion path. */
.home-proposal-hero {
  position: relative;
  padding: 88px 0 0;
  background:
    linear-gradient(90deg, rgba(24,25,75,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(24,25,75,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    #f7f7f9;
}
.home-proposal-hero::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 9px; background: var(--product-red); }
.home-hero-copy { position: relative; z-index: 1; }
.home-hero-copy h1 {
  max-width: 940px;
  margin: 0 0 28px;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .96;
}
.home-hero-lead { max-width: 760px; margin-bottom: 34px; color: #484a60; font-size: 22px; }
.home-hero-stage { position: relative; z-index: 1; margin-top: 66px; }
.home-system-figure { position: relative; margin: 0; padding: 0 22px 22px 0; }
.home-system-figure::after { content: ""; position: absolute; z-index: -1; right: 0; bottom: 0; width: 33%; height: 45%; background: var(--product-red); }
.home-system-figure img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  object-position: center 48%;
  background: #eeece8;
  box-shadow: 0 22px 55px rgba(24,25,75,.18);
}
.home-system-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: min(390px, 45%);
  padding: 19px 24px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 25px rgba(24,25,75,.2);
}
.home-system-figure figcaption strong,
.home-system-figure figcaption span { display: block; }
.home-system-figure figcaption strong { margin-bottom: 5px; font-size: 20px; }
.home-system-figure figcaption span { color: #d6d7e5; font-size: 14px; }

.home-proof-strip { background: var(--navy); color: #fff; }
.home-proof-strip .content-wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.home-proof-strip p { min-height: 142px; margin: 0; padding: 34px clamp(24px, 3vw, 42px); }
.home-proof-strip p + p { border-left: 1px solid #4e5072; }
.home-proof-strip strong,
.home-proof-strip span { display: block; }
.home-proof-strip strong { margin-bottom: 7px; font-size: 18px; }
.home-proof-strip span { color: #bfc1d2; font-size: 14px; line-height: 1.4; }

.home-process { padding: 112px 0 118px; background: #fff; }
.home-process-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
  margin-bottom: 62px;
}
.home-process-intro h2 { margin: 0; font-size: clamp(44px, 5vw, 66px); }
.home-process-intro > p { max-width: 600px; padding-top: 37px; color: #56586c; font-size: 19px; }
.home-stage-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 50px; padding: 0; list-style: none; }
.home-stage-list li { position: relative; min-width: 0; margin: 0; padding: 27px 26px 27px 0; border-top: 2px solid var(--navy); }
.home-stage-list li::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  transform: rotate(45deg);
}
.home-stage-list li:last-child::after { display: none; }
.home-stage-list li > span { color: var(--product-red); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.home-stage-list h3 { margin: 21px 0 10px; font-size: 26px; }
.home-stage-list p { max-width: 245px; margin: 0; color: #626477; font-size: 14px; }
.home-process-figure { margin: 0 0 28px; padding: 28px 28px 16px; border: 1px solid #e0e1e7; background: #fafafa; }
.home-process-figure img { width: 100%; min-height: 220px; object-fit: contain; }
.home-process-figure figcaption { margin-top: 10px; color: #77798a; font-size: 12px; text-align: right; }

.home-systems { padding: 108px 0 112px; background: var(--navy); }
.home-systems .section-kicker { color: #ef9aa2; }
.home-systems .section-heading > p:last-child { color: #c4c6d5; }
.home-system-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.home-system-grid article { display: flex; min-width: 0; flex-direction: column; background: #fff; color: var(--navy); box-shadow: 0 18px 42px rgba(0,0,0,.2); }
.home-system-grid article > img { width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: contain; object-position: center; background: #efede8; }
.home-system-copy { display: flex; flex: 1; flex-direction: column; padding: 29px 28px 32px; }
.home-system-label { margin-bottom: 34px; color: var(--product-red); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.home-system-copy h3 { margin-bottom: 14px; font-size: 38px; }
.home-system-copy > p:last-child { margin: 0; color: #595b6e; font-size: 15px; }
.home-systems-link { margin-top: 36px; }

.home-advantages { padding: 112px 0; background: #fff; }
.home-advantages-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(56px, 8vw, 118px); align-items: start; }
.home-advantages-copy { position: sticky; top: 34px; }
.home-advantages-copy > p:not(.section-kicker) { max-width: 520px; color: #585a6d; font-size: 18px; }
.home-advantage-list { border-top: 1px solid #d7d8df; }
.home-advantage-list article { padding: 24px 0; border-bottom: 1px solid #d7d8df; }
.home-advantage-list h3 { margin: 0 0 7px; font-size: 24px; }
.home-advantage-list p { margin: 0; color: #606275; font-size: 15px; }

.home-applications { padding: 108px 0 116px; background: #f0f1f4; }
.home-application-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #d1d2d9; border-bottom: 1px solid #d1d2d9; }
.home-application-grid article { min-height: 320px; padding: 32px clamp(24px, 3vw, 40px) 38px; }
.home-application-grid article + article { border-left: 1px solid #d1d2d9; }
.home-application-grid h3 { margin: 62px 0 15px; font-size: 31px; }
.home-application-grid p { margin: 0; color: #5a5c6f; font-size: 16px; }

.home-research { padding: 104px 0; background: #fff; }
.home-research-layout { display: grid; grid-template-columns: 90px minmax(0, 1fr) minmax(240px, .48fr); gap: clamp(34px, 5vw, 72px); align-items: start; }
.home-research-mark { padding-top: 10px; border-top: 3px solid var(--product-red); color: var(--product-red); font-size: 14px; font-weight: 700; letter-spacing: .12em; }
.home-research-layout h2 { margin-bottom: 22px; }
.home-research-layout > div:nth-child(2) > p:last-child { max-width: 700px; color: #595b6d; font-size: 18px; }
.home-research-actions { display: grid; gap: 22px; align-items: start; justify-items: start; padding-top: 37px; }
.home-research-actions .proposal-button { width: 100%; }
.home-contact .proposal-button { margin-top: 14px; }

/* Technology proposal: explain CIBD through the molecule's journey. */
.technology-hero-visual img {
  display: block;
  aspect-ratio: 1.3 / 1;
  padding: clamp(14px, 2vw, 26px);
  object-fit: contain;
}
.products-hero-visual.technology-hero-visual figcaption {
  position: static;
  width: 100%;
}
.technology-intro { padding: 104px 0; background: #fff; }
.technology-intro-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: start;
}
.technology-intro h2 { margin: 0; font-size: clamp(42px, 4.8vw, 64px); line-height: 1.03; }
.technology-intro .technology-big-copy { margin: 34px 0 0; color: var(--navy); font-size: 23px; font-weight: 700; line-height: 1.42; }
.deposition-story-rail { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 22px; align-items: center; margin-top: 62px; padding: 21px 26px; border-block: 1px solid #d9dbe2; background: #f5f6f8; }
.deposition-story-rail span { color: var(--navy); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.deposition-story-rail span:nth-of-type(2) { color: var(--product-red); }
.deposition-story-rail i { color: #a1a3af; font-style: normal; font-size: 22px; }
.deposition-methods-kicker { margin: 51px 0 0; }
.deposition-method-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 18px; }
.deposition-method-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid #dcdee5; background: #f6f7f9; }
.deposition-method-figure { margin: 0; border-bottom: 1px solid #dcdee5; background: #fff; }
.deposition-method-figure img { width: 100%; aspect-ratio: 1.68 / 1; padding: 22px; object-fit: contain; }
.deposition-method-figure-wet img { padding: 10px 16px 0; }
.deposition-method-figure figcaption { padding: 12px 22px 14px; color: #717386; font-size: 12px; }
.deposition-method-copy { display: flex; flex-direction: column; padding: 29px 30px 31px; }
.method-number { margin: 0 0 18px; color: var(--product-red); font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.deposition-method-copy h3 { margin: 0; font-size: clamp(28px, 3vw, 38px); line-height: 1.08; }
.method-positioning { min-height: 50px; margin: 11px 0 25px; color: #646679; font-size: 17px; font-weight: 600; }
.method-point { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-top: 1px solid #d9dbe2; }
.method-point span { color: var(--product-red); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.method-point-positive span { color: #34725a; }
.method-point p { margin: 0; color: #545668; font-size: 14px; line-height: 1.55; }
.method-source { display: inline-block; margin-top: auto; padding-top: 18px; color: #6b6d7d; font-size: 11px; text-decoration: none; }
.method-source:hover { color: var(--product-red); }
.deposition-evidence { margin-top: 86px; padding: clamp(38px, 5vw, 64px); border-top: 6px solid var(--product-red); background: #fff3f1; }
.deposition-evidence-heading { display: grid; grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr); gap: clamp(36px, 7vw, 96px); align-items: end; margin-bottom: 35px; }
.deposition-evidence-heading .section-kicker { margin-bottom: 5px; }
.deposition-evidence-heading h3 { max-width: 800px; margin: 0; font-size: clamp(36px, 4.3vw, 56px); line-height: 1.05; }
.deposition-evidence-heading > div > p { max-width: 750px; margin: 20px 0 0; color: #64606a; }
.deposition-limit-labels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 18px; }
.deposition-limit-labels p { display: grid; gap: 5px; margin: 0; padding: 15px 18px; border: 1px solid #efc7c3; background: #fff; }
.deposition-limit-labels strong { color: var(--product-red); font-size: 10px; letter-spacing: .1em; }
.deposition-limit-labels span { color: var(--navy); font-size: 14px; font-weight: 700; }
.deposition-evidence-figure { margin: 0; border: 1px solid #d9dbe2; background: #fff; box-shadow: 0 15px 35px rgba(24,25,75,.08); }
.deposition-evidence-figure img { display: block; width: 100%; height: auto; }
.deposition-evidence-figure figcaption { max-width: 980px; padding: 23px 27px 25px; color: #555769; font-size: 14px; line-height: 1.6; }
.evidence-source { margin-top: 0; padding: 11px 2px 0; }
.cibd-transition { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(42px, 7vw, 94px); margin-top: 86px; padding: clamp(38px, 5vw, 64px); border-top: 6px solid var(--product-red); background: var(--navy); color: #fff; }
.cibd-transition .section-kicker { color: #ff6471; }
.cibd-transition h3 { max-width: 470px; margin: 0; color: #fff; font-size: clamp(38px, 4.6vw, 60px); line-height: 1.02; }
.cibd-transition-copy p { margin-top: 0; color: #d0d1df; }
.cibd-transition-copy p:first-child { color: #fff; font-size: 18px; }
.cibd-route-formula { display: grid; grid-template-columns: auto auto auto auto auto; gap: 12px; align-items: center; margin: 28px 0 25px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.cibd-route-formula span { color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-align: center; }
.cibd-route-formula i { color: #ff7883; font-style: normal; font-size: 18px; }
.text-link-light { margin-top: 8px; color: #fff; }
.text-link-light:hover { color: #ff7883; }

.cibd-process { padding: 98px 0 108px; background: #f0f1f4; }
.technology-path { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 42px; }
.technology-path li { padding-right: 18px; }
.technology-path small { max-width: 190px; }
.technology-process-figure { margin-bottom: 0; background: #fff; box-shadow: 0 15px 35px rgba(24,25,75,.1); }
.cibd-result { margin-top: 82px; padding-top: 70px; border-top: 1px solid #d4d6de; }
.cibd-result-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(44px, 7vw, 96px); align-items: end; }
.cibd-result-heading h3 { max-width: 720px; margin: 0; font-size: clamp(38px, 4.6vw, 58px); line-height: 1.04; }
.cibd-result-heading > p { margin: 0 0 4px; color: #555769; font-size: 17px; line-height: 1.65; }
.cibd-result-media { display: grid; grid-template-columns: minmax(230px, .52fr) minmax(0, 1.48fr); gap: 26px; margin-top: 42px; align-items: stretch; }
.cibd-result-media figure { margin: 0; overflow: hidden; border: 1px solid #d6d8df; background: #fff; box-shadow: 0 14px 32px rgba(24,25,75,.08); }
.cibd-result-molecule { display: grid; grid-template-rows: 1fr auto; }
.cibd-result-molecule > div { display: grid; min-height: 330px; padding: 38px; place-items: center; }
.cibd-result-molecule img { width: min(100%, 290px); height: auto; }
.cibd-result-scan img { display: block; width: 100%; height: auto; }
.cibd-result-media figcaption { display: grid; gap: 5px; padding: 19px 22px 22px; border-top: 1px solid #dfe0e6; }
.cibd-result-media figcaption strong { color: var(--navy); font-size: 16px; }
.cibd-result-media figcaption span { color: #686a7c; font-size: 12px; line-height: 1.55; }
.cibd-result-media figcaption small { margin-top: 5px; color: #898b99; font-size: 10px; letter-spacing: .02em; }
.cibd-result-bridge { max-width: 980px; margin: 38px 0 0; color: var(--navy); font-size: clamp(20px, 2.2vw, 27px); font-weight: 700; line-height: 1.42; }
.cibd-result-evidence { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 35px; }
.cibd-result-evidence article { padding: 25px 24px 27px; border-top: 5px solid var(--product-red); background: #fff; }
.cibd-result-evidence article > span { color: var(--product-red); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.cibd-result-evidence h4 { margin: 22px 0 10px; color: var(--navy); font-size: 23px; }
.cibd-result-evidence p { margin: 0; color: #5b5d70; font-size: 14px; line-height: 1.55; }
.cibd-result-source { margin-top: 0; padding-top: 16px; }

.control-section { padding: 104px 0 112px; background: var(--navy); color: #fff; }
.control-section .section-heading { max-width: 880px; }
.control-section .section-heading > p:last-child { color: #c9cad9; }
.control-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.control-grid article { min-height: 260px; padding: 29px 27px 31px; border-top: 5px solid var(--product-red); background: #fff; color: var(--navy); }
.control-grid article > span { color: var(--product-red); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.control-grid h3 { margin: 38px 0 13px; font-size: 31px; }
.control-grid p { margin: 0; color: #595b6d; font-size: 16px; }

.landing-section { padding: 108px 0; background: #fff; }
.landing-layout { display: grid; grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr); gap: clamp(58px, 8vw, 112px); align-items: center; }
.landing-copy > p:not(.section-kicker) { color: #555769; font-size: 19px; }
.landing-copy .landing-note { margin-top: 28px; padding-left: 21px; border-left: 3px solid var(--product-red); font-size: 15px; }
.landing-regimes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.landing-card { min-height: 310px; padding: 34px 30px; }
.landing-soft { background: #edf4f8; }
.landing-reactive { background: #f7e9eb; }
.landing-marker { color: var(--product-red); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.landing-card h3 { margin: 84px 0 16px; font-size: 31px; }
.landing-card p { margin: 0; color: #555769; font-size: 15px; }
.energy-axis { display: grid; grid-column: 1 / -1; gap: 9px; min-height: 54px; padding-top: 18px; align-content: start; background: transparent; }
.energy-axis i { position: relative; display: block; width: 100%; height: 2px; background: var(--navy); }
.energy-axis i::after { content: ""; position: absolute; top: -4px; right: -1px; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 9px solid var(--navy); }
.energy-axis span { position: static; color: #67697a; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }

.dqmf-section { padding: 108px 0; background: #f0f1f4; }
.dqmf-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(50px, 7vw, 98px); align-items: center; }
.dqmf-visual { margin: 0; background: #fff; box-shadow: 0 15px 35px rgba(24,25,75,.1); }
.dqmf-visual img { width: 100%; min-height: 310px; padding: 34px; object-fit: contain; }
.dqmf-visual figcaption { padding: 17px 22px; background: var(--navy); color: #d6d7e4; font-size: 13px; }
.dqmf-copy > p:not(.section-kicker) { color: #56586b; }
.dqmf-principle { margin-top: 28px; padding: 24px 26px; border-left: 4px solid var(--product-red); background: #fff; box-shadow: 0 10px 25px rgba(24,25,75,.08); }
.dqmf-principle > span { display: block; margin-bottom: 12px; color: var(--product-red); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.dqmf-equation { display: block; margin: 0 0 16px; color: var(--navy); font-family: "STIX Two Math", "Cambria Math", serif; font-size: clamp(25px, 2.7vw, 35px); font-weight: 600; }
.dqmf-equation mfrac { padding-inline: .12em; }
.dqmf-principle p { margin: 0; color: #626477; font-size: 13px; }
.dqmf-comparison-heading { margin-top: 72px; }
.dqmf-comparison-heading h3 { margin: 0 0 30px; font-size: clamp(34px, 4vw, 48px); }
.dqmf-comparison-table-wrap { overflow-x: auto; border: 1px solid #d7d8df; background: #fff; }
.dqmf-comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 15px; }
.dqmf-comparison-table th,
.dqmf-comparison-table td { padding: 22px 24px; border-bottom: 1px solid #dfe0e6; text-align: left; vertical-align: top; }
.dqmf-comparison-table thead th { background: var(--navy); color: #fff; font-size: 20px; }
.dqmf-comparison-table thead th:first-child { width: 25%; background: #11123b; }
.dqmf-comparison-table thead th:last-child { border-left: 5px solid var(--product-red); }
.dqmf-comparison-table tbody th { color: #393b50; font-weight: 700; }
.dqmf-comparison-table tbody td { color: #5a5c6e; }
.dqmf-comparison-table tbody td:last-child { border-left: 5px solid #f0d7d9; background: #fffafb; color: var(--navy); font-weight: 700; }
.dqmf-comparison-table tbody tr:last-child th,
.dqmf-comparison-table tbody tr:last-child td { border-bottom: 0; }
.dqmf-benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 32px; background: #d7d8df; border: 1px solid #d7d8df; }
.dqmf-benefit-grid article { min-height: 270px; padding: 28px 24px 30px; background: #fff; }
.dqmf-benefit-grid article > span { color: var(--product-red); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.dqmf-benefit-grid h3 { margin: 48px 0 13px; font-size: 23px; line-height: 1.12; }
.dqmf-benefit-grid p { margin: 0; color: #5c5e70; font-size: 14px; }
.dqmf-range-callout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 90px); margin-top: 32px; padding: clamp(34px, 5vw, 62px); border-left: 8px solid var(--product-red); background: var(--navy); color: #fff; }
.dqmf-range-callout .section-kicker { color: #ef9aa2; }
.dqmf-range-callout h3 { max-width: 570px; margin: 0; color: #fff; font-size: clamp(38px, 5vw, 59px); line-height: 1.02; }
.dqmf-range-callout h3 em { white-space: nowrap; }
.dqmf-range-callout > div:last-child { align-self: end; }
.dqmf-range-callout > div:last-child p { color: #d3d4e1; font-size: 18px; }
.dqmf-range-callout small { display: block; margin-top: 24px; padding-top: 18px; border-top: 1px solid #565779; color: #aeb0c4; font-size: 12px; line-height: 1.55; }

.molecule-section { padding: 108px 0; background: #fff; }
.molecule-layout { display: grid; grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 7vw, 94px); align-items: center; }
.molecule-copy > p:not(.section-kicker) { color: #555769; }
.molecule-copy .molecule-caveat { margin-top: 28px; padding: 18px 20px; border-left: 4px solid var(--product-red); background: #f7f7f9; font-size: 14px; }
.molecule-visual { margin: 0; padding: 36px 28px; background: #f7f7f9; box-shadow: 0 15px 35px rgba(24,25,75,.09); }
.molecule-visual img { width: 100%; min-height: 250px; object-fit: contain; }

.evidence-section { padding: 108px 0; background: var(--navy); color: #fff; }
.evidence-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: clamp(34px, 5vw, 74px); align-items: start; }
.evidence-section .section-kicker { color: #ef9aa2; }
.evidence-copy h2 { color: #fff; }
.evidence-copy > p:not(.section-kicker) { color: #cccedd; }
.evidence-copy .paper-title { max-width: 730px; margin: 31px 0 16px; color: #fff; font-size: 22px; font-weight: 700; line-height: 1.35; }
.evidence-copy .paper-meta { margin-bottom: 28px; font-size: 14px; }
.evidence-copy .proposal-button { margin-top: 18px; }
.evidence-facts { display: grid; border-top: 1px solid #555676; }
.evidence-facts article { padding: 25px 0; border-bottom: 1px solid #555676; }
.evidence-facts strong,
.evidence-facts span { display: block; }
.evidence-facts strong { margin-bottom: 6px; color: #fff; font-size: 32px; }
.evidence-facts span { color: #bfc1d2; font-size: 13px; }

.origin-section { padding: 110px 0; background: #f0f1f4; }
.origin-layout { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 7vw, 98px); align-items: center; }
.origin-copy > p:not(.section-kicker) { color: #56586b; font-size: 18px; }
.origin-video { position: relative; padding: 0 18px 18px 0; }
.origin-video::after { content: ""; position: absolute; z-index: 0; right: 0; bottom: 0; width: 42%; height: 48%; background: var(--product-red); }
.origin-video video { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 16 / 9; background: #111; box-shadow: 0 18px 45px rgba(24,25,75,.18); }

.technology-cta .proposal-button-light { margin-top: 12px; }
.proposal-button-ghost-light { margin-top: 12px; border-color: rgba(255,255,255,.8); color: #fff; }
.proposal-button-ghost-light:hover { background: #fff; color: var(--product-red); }

/* Career proposal: the same editorial system, focused on contribution and culture. */
.career-hero-visual img { aspect-ratio: 1.3 / 1; object-fit: cover; }

.career-intro { padding: 104px 0; background: #fff; }
.career-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: start;
}
.career-intro h2 { margin: 0; font-size: clamp(42px, 4.8vw, 64px); line-height: 1.03; }
.career-intro-copy { padding-top: 33px; }
.career-intro-copy p { color: #57596c; }
.career-intro-copy .career-big-copy { color: var(--navy); font-size: 23px; font-weight: 700; line-height: 1.42; }

.career-fields { padding: 102px 0 110px; background: #f0f1f4; }
.career-field-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; }
.career-field-grid article {
  grid-column: span 2;
  min-height: 285px;
  padding: 30px 27px;
  border-top: 5px solid var(--product-red);
  background: #fff;
  box-shadow: 0 12px 28px rgba(24,25,75,.07);
}
.career-field-grid article:nth-child(4) { grid-column: 2 / span 2; }
.career-field-grid h3 { margin: 0 0 13px; font-size: 30px; }
.career-field-grid p { margin: 0; color: #595b6d; font-size: 15px; }

.career-mindset { padding: 108px 0; background: var(--navy); color: #fff; }
.career-mindset-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(52px, 8vw, 112px); align-items: start; }
.career-mindset .section-kicker { color: #ef9aa2; }
.career-mindset-copy h2 { color: #fff; }
.career-mindset-copy > p:not(.section-kicker) { max-width: 510px; color: #c9cad9; font-size: 18px; }
.career-values { border-top: 1px solid #555676; }
.career-values article { padding: 22px 0; border-bottom: 1px solid #555676; }
.career-values h3 { margin: 0 0 6px; color: #fff; font-size: 23px; }
.career-values p { margin: 0; color: #bfc1d2; font-size: 15px; }

.career-offer { padding: 108px 0; background: #fff; }
.career-offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #dfe0e6; border-bottom: 1px solid #dfe0e6; }
.career-offer-grid article { min-height: 280px; padding: 32px clamp(24px, 3vw, 40px) 38px; }
.career-offer-grid article + article { border-left: 1px solid #dfe0e6; }
.career-offer-grid h3 { margin: 0 0 14px; font-size: 29px; }
.career-offer-grid p { margin: 0; color: #595b6d; font-size: 16px; }

.career-cta-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: clamp(46px, 7vw, 90px); align-items: end; }
.career-contact { display: grid; align-items: start; justify-items: start; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.4); }
.career-contact > span { margin-bottom: 12px; color: #ffd5d8; font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.career-contact > strong { margin-bottom: 14px; font-size: 24px; }
.career-contact .proposal-button { word-break: break-word; }

/* News archive: preserve the original posts in a more editorial local format. */
.news-archive-hero {
  position: relative;
  padding: 88px 0 94px;
  background:
    linear-gradient(90deg, rgba(24,25,75,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(24,25,75,.035) 1px, transparent 1px) 0 0 / 80px 80px,
    #f7f7f9;
}
.news-archive-hero::before,
.news-article-hero::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 9px; background: var(--product-red); }
.news-archive-hero h1 { margin-bottom: 25px; font-size: clamp(64px, 8vw, 104px); }
.news-archive-hero > .content-wrap > p:last-child { max-width: 680px; margin: 0; color: #55576b; font-size: 21px; }

.news-archive { padding: 104px 0 118px; background: #fff; }
.news-card { overflow: hidden; border-top: 5px solid var(--product-red); background: #f5f5f7; }
.news-card-featured { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); margin-bottom: 34px; }
.news-card-media { display: flex; min-height: 285px; align-items: center; justify-content: center; overflow: hidden; background: #ececef; text-decoration: none; }
.news-card-media img { width: 100%; height: 100%; min-height: 285px; object-fit: cover; }
.news-card-featured .news-card-media { min-height: 510px; background: #fff; }
.news-card-featured .news-card-media img { min-height: 510px; padding: clamp(22px, 4vw, 58px); object-fit: contain; }
.news-card-copy { padding: 30px 28px 34px; }
.news-card-featured .news-card-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 66px); }
.news-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 30px; color: #6a6c7e; font-size: 12px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.news-card h2 { margin-bottom: 18px; font-size: 34px; }
.news-card-featured h2 { font-size: clamp(42px, 4.4vw, 60px); }
.news-card h2 a { color: inherit; text-decoration: none; }
.news-card h2 a:hover { color: var(--product-red); }
.news-card-copy > p:not(.news-meta) { margin-bottom: 30px; color: #595b6e; font-size: 16px; }
.news-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.news-card-grid .news-card { display: flex; min-width: 0; flex-direction: column; }
.news-card-grid .news-card-copy { display: flex; flex: 1; flex-direction: column; }
.news-card-grid .text-link { margin-top: auto; }
.news-card-document .news-card-media { padding: 34px; background: var(--navy); color: #fff; }
.news-card-document .news-card-media > span { display: grid; width: 100%; align-self: stretch; padding: 22px; border: 1px solid #5a5c7b; }
.news-card-document .news-card-media small { color: #ef9aa2; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.news-card-document .news-card-media strong { align-self: center; font-size: 31px; line-height: 1.05; }
.news-card-document .news-card-media i { align-self: end; justify-self: end; color: #bfc1d2; font-size: 12px; font-style: normal; font-weight: 700; letter-spacing: .12em; }

.news-article-hero { position: relative; padding: 58px 0 86px; background: #f0f1f4; }
.news-back-link { display: inline-flex; gap: 8px; margin-bottom: 72px; color: #55576b; font-size: 14px; font-weight: 700; text-decoration: none; }
.news-back-link:hover { color: var(--product-red); }
.news-article-hero h1 { max-width: 1000px; margin-bottom: 30px; font-size: clamp(54px, 7vw, 88px); }
.news-article-meta { display: flex; flex-wrap: wrap; gap: 9px 28px; margin: 0; color: #656779; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.news-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: clamp(54px, 8vw, 112px); align-items: start; padding-top: 92px; padding-bottom: 108px; }
.news-article-body { min-width: 0; max-width: 820px; font-size: 20px; line-height: 1.58; }
.news-article-body > p { margin-bottom: 30px; }
.news-article-body a { color: var(--product-red); text-underline-offset: 3px; }
.news-article-body h2 { margin: 0 0 34px; color: var(--product-red); font-size: clamp(32px, 4vw, 48px); }
.news-lead-media { margin: 0 0 58px; background: #f4f4f6; }
.news-lead-media img { width: 100%; max-height: 820px; object-fit: contain; }
.news-lead-media-wide { padding: clamp(24px, 5vw, 60px); }
.news-lead-media-portrait img { max-height: none; }
.news-tags { padding-top: 22px; border-top: 1px solid #d9dae0; font-size: 15px; line-height: 1.8; }
.news-tags a { display: inline-block; margin-right: 7px; text-decoration: none; }
.news-gallery { display: grid; grid-template-columns: .78fr 1.22fr; gap: 22px; align-items: start; margin-top: 48px; }
.news-gallery figure { margin: 0; background: #f0f1f4; }
.news-gallery img { width: 100%; height: 660px; object-fit: contain; }
.news-gallery figure:last-child img { object-fit: cover; }
.news-pdf { margin-top: 38px; }
.news-pdf object { display: block; width: 100%; height: 720px; border: 1px solid #d6d7de; background: #f4f4f6; }
.news-download-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding: 22px; border: 1px solid #d6d7de; border-top: 0; font-size: 14px; }
.news-download-row > a:first-child { word-break: break-word; }
.news-download-row .proposal-button { color: #fff; text-decoration: none; }
.news-article-aside { position: sticky; top: 32px; padding-top: 18px; border-top: 3px solid var(--product-red); }
.news-article-aside p { margin: 0; padding: 18px 0; border-bottom: 1px solid #d9dae0; }
.news-article-aside span,
.news-article-aside strong { display: block; }
.news-article-aside span { margin-bottom: 5px; color: #77798b; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.news-article-aside strong { font-size: 14px; line-height: 1.4; }
.news-article-aside .text-link { display: inline-block; margin-top: 25px; }
.news-post-nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #d6d7de; }
.news-post-nav > a { min-height: 170px; padding: 35px 0 44px; color: var(--navy); text-decoration: none; }
.news-post-nav > a:last-child { padding-left: 44px; border-left: 1px solid #d6d7de; text-align: right; }
.news-post-nav span,
.news-post-nav strong { display: block; }
.news-post-nav span { margin-bottom: 28px; color: #7a7c8d; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.news-post-nav strong { font-size: 20px; }
.news-post-nav a:hover strong { color: var(--product-red); }

@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-header { min-height: 130px; padding: 12px 20px; position: relative; }
  .brand img { width: 113px; height: 76px; }
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    z-index: 20;
    top: 105px;
    left: 16px;
    right: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px; }
  .global-language-switch { margin: 10px 12px 0; padding: 18px 0 2px; border-top: 1px solid var(--line); border-left: 0; }
  .global-language-switch > a { padding: 8px 0; }
  .title-band { padding: 28px 18px 30px; }
  h1 { font-size: 31px; line-height: 1.12; }
  h2 { font-size: 38px; }
  .home-hero .hero-image { width: 100%; height: 560px; max-height: none; object-fit: cover; object-position: center top; }
  .card-grid, .career-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 34px; }
  .info-card .card-image { height: 240px; }
  .card-body { padding: 28px 20px 20px; }
  .feature-block { grid-template-columns: 1fr; gap: 28px; padding: 42px 0; }
  .feature-block.reverse .feature-copy, .feature-block.reverse .feature-media { order: initial; }
  .advantages { columns: 1; }
  .product-hero { height: 280px; }
  .product-card .product-image { height: 250px; }
  .product-card .product-content { padding: 25px 20px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img:first-child, .gallery img:last-child { grid-column: auto; height: auto; max-height: 500px; }
  .company-footer { grid-template-columns: 1fr; min-height: 0; padding-top: 52px; padding-bottom: 52px; }
  .company-footer img { margin: 0; }
  .legal-footer { padding: 28px 20px; flex-wrap: wrap; gap: 16px 24px; }
  .to-top { width: 100%; margin-left: 0; }

  .privacy-intro { padding-top: 52px; }
  .privacy-intro h1 { font-size: 43px; overflow-wrap: anywhere; }
  .privacy-intro > p:not(.section-kicker) { font-size: 18px; }
  .privacy { padding-bottom: 68px; }
  .privacy section { padding: 34px 0; }

  .news-archive-hero { padding: 58px 0 64px; }
  .news-archive-hero h1 { font-size: 58px; }
  .news-archive-hero > .content-wrap > p:last-child { font-size: 18px; }
  .news-archive { padding: 72px 0; }
  .news-card-featured { grid-template-columns: 1fr; margin-bottom: 24px; }
  .news-card-featured .news-card-media { min-height: 300px; }
  .news-card-featured .news-card-media img { min-height: 300px; padding: 24px; }
  .news-card-featured .news-card-copy { padding: 32px 22px 36px; }
  .news-card-featured h2 { font-size: 42px; }
  .news-card-grid { grid-template-columns: 1fr; gap: 24px; }
  .news-card-media { min-height: 260px; }
  .news-card-media img { min-height: 260px; }
  .news-article-hero { padding: 42px 0 62px; }
  .news-back-link { margin-bottom: 48px; }
  .news-article-hero h1 { font-size: 48px; }
  .news-article-layout { grid-template-columns: 1fr; gap: 62px; padding-top: 62px; padding-bottom: 72px; }
  .news-article-body { font-size: 18px; }
  .news-lead-media { margin-bottom: 40px; }
  .news-lead-media-wide { padding: 18px; }
  .news-gallery { grid-template-columns: 1fr; gap: 18px; }
  .news-gallery img { height: auto; max-height: 680px; }
  .news-gallery figure:last-child img { object-fit: contain; }
  .news-pdf object { height: 480px; }
  .news-download-row { align-items: stretch; }
  .news-download-row .proposal-button { width: 100%; }
  .news-article-aside { position: static; }
  .news-post-nav { grid-template-columns: 1fr; }
  .news-post-nav > span:empty { display: none; }
  .news-post-nav > a { min-height: 140px; padding: 30px 0 36px; }
  .news-post-nav > a:last-child { padding-left: 0; border-top: 1px solid #d6d7de; border-left: 0; text-align: left; }
  .news-post-nav > a:first-child:last-child { border-top: 0; }

  .home-proposal-hero { padding-top: 54px; }
  .home-hero-copy h1 { font-size: 50px; }
  .home-hero-lead { font-size: 18px; }
  .home-hero-stage { margin-top: 48px; }
  .home-system-figure { padding: 0 10px 42px 0; }
  .home-system-figure img { min-height: 330px; aspect-ratio: auto; object-position: center; }
  .home-system-figure figcaption { right: 0; bottom: 18px; width: 88%; }
  .home-proof-strip .content-wrap { grid-template-columns: 1fr; }
  .home-proof-strip p { min-height: 0; padding: 25px 0; }
  .home-proof-strip p + p { border-top: 1px solid #4e5072; border-left: 0; }
  .home-process,
  .home-systems,
  .home-advantages,
  .home-applications,
  .home-research { padding: 72px 0; }
  .home-process-intro,
  .home-advantages-layout,
  .home-research-layout { grid-template-columns: 1fr; gap: 38px; }
  .home-process-intro { margin-bottom: 46px; }
  .home-process-intro h2 { font-size: 43px; }
  .home-process-intro > p { padding-top: 0; font-size: 17px; }
  .home-stage-list { grid-template-columns: 1fr; margin-bottom: 36px; }
  .home-stage-list li { padding: 21px 0; }
  .home-stage-list li::after { display: none; }
  .home-stage-list p { max-width: none; }
  .home-process-figure { padding: 18px 12px 12px; }
  .home-process-figure img { min-height: 145px; }
  .home-process-figure figcaption { display: none; }
  .home-system-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-advantages-copy { position: static; }
  .home-application-grid { grid-template-columns: 1fr; }
  .home-application-grid article { min-height: 250px; padding: 27px 22px 32px; }
  .home-application-grid article + article { border-top: 1px solid #d1d2d9; border-left: 0; }
  .home-application-grid h3 { margin-top: 32px; }
  .home-research-layout { gap: 32px; }
  .home-research-mark { width: 78px; }
  .home-research-actions { padding-top: 0; }
  .home-research-actions .proposal-button { width: 100%; }

  .products-hero { padding: 52px 0 70px; }
  .products-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .products-hero-copy h1 { font-size: 48px; }
  .products-hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .products-hero-visual::before { top: -10px; right: -10px; }
  .products-hero-visual figcaption { right: 0; bottom: -30px; width: 86%; }
  .platform-story,
  .configuration-section,
  .comparison-section,
  .modules-section { padding: 72px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading > p:last-child { font-size: 18px; }
  .ion-path { grid-template-columns: 1fr 1fr; }
  .ion-path li:nth-child(2)::after { display: none; }
  .scope-row { grid-template-columns: 82px 1fr; gap: 10px; }
  .scope-row small { grid-column: 2; margin-top: -7px; }
  .system-card-featured,
  .system-card-grid { grid-template-columns: 1fr; }
  .system-card-featured .system-image { min-height: 300px; }
  .system-card-grid { gap: 24px; }
  .system-copy { padding: 30px 22px 34px; }
  .system-copy h3 { font-size: 42px; }
  .performance-panel { padding: 18px; }
  .performance-disclaimer { text-align: left; }
  .comparison-scroll { margin-right: calc(-1 * var(--page-pad)); }
  .modules-layout { grid-template-columns: 1fr; gap: 62px; }
  .modules-visual { padding: 0 16px 80px 0; }
  .modules-visual > img:first-child { min-height: 220px; }
  .products-cta { padding: 76px 0 84px; }

  .technology-hero-visual img { aspect-ratio: 1.2 / 1; }
  .technology-intro,
  .cibd-process,
  .control-section,
  .landing-section,
  .dqmf-section,
  .molecule-section,
  .evidence-section,
  .origin-section { padding: 72px 0; }
  .technology-intro-head,
  .landing-layout,
  .dqmf-layout,
  .molecule-layout,
  .origin-layout { grid-template-columns: 1fr; gap: 42px; }
  .technology-intro .technology-big-copy { margin-top: 0; font-size: 20px; }
  .deposition-story-rail { grid-template-columns: 1fr; gap: 10px; }
  .deposition-story-rail i { transform: rotate(90deg); text-align: center; }
  .deposition-method-grid { grid-template-columns: 1fr; margin-top: 18px; }
  .deposition-evidence { margin-top: 66px; padding: 44px 28px; }
  .deposition-evidence-heading,
  .cibd-transition,
  .cibd-result-heading { grid-template-columns: 1fr; }
  .deposition-limit-labels { grid-template-columns: 1fr; }
  .cibd-transition { margin-top: 66px; }
  .cibd-route-formula { grid-template-columns: 1fr; }
  .cibd-route-formula i { transform: rotate(90deg); text-align: center; }
  .technology-path { grid-template-columns: 1fr; }
  .technology-path li { padding: 18px 0; }
  .technology-path li::after { display: none; }
  .technology-path small { max-width: none; }
  .cibd-result { margin-top: 62px; padding-top: 52px; }
  .cibd-result-media { grid-template-columns: 1fr; }
  .cibd-result-molecule > div { min-height: 280px; }
  .cibd-result-evidence { grid-template-columns: 1fr; }
  .control-grid { grid-template-columns: 1fr; }
  .control-grid article { min-height: 230px; padding: 25px 22px; }
  .control-grid h3 { margin-top: 28px; }
  .landing-layout { gap: 36px; }
  .landing-regimes { grid-template-columns: 1fr; }
  .landing-card { min-height: 245px; }
  .landing-card h3 { margin-top: 48px; }
  .energy-axis { grid-column: auto; min-height: 54px; }
  .dqmf-visual img { min-height: 220px; padding: 20px; }
  .dqmf-benefit-grid,
  .dqmf-range-callout { grid-template-columns: 1fr; }
  .dqmf-comparison-heading { margin-top: 48px; }
  .dqmf-comparison-table-wrap { margin-right: calc(-1 * var(--page-pad)); }
  .dqmf-benefit-grid article { min-height: 225px; padding: 25px 22px; }
  .dqmf-benefit-grid h3 { margin-top: 35px; }
  .dqmf-range-callout { gap: 30px; padding: 34px 24px; border-left-width: 5px; }
  .molecule-layout,
  .origin-layout { gap: 36px; }
  .molecule-visual { padding: 22px 12px; }
  .molecule-visual img { min-height: 180px; }
  .evidence-layout { grid-template-columns: 1fr; }
  .evidence-copy .paper-title { font-size: 19px; }
  .evidence-facts { margin-top: 10px; }
  .technology-cta .hero-actions { align-items: stretch; }

  .career-hero-visual img { aspect-ratio: 1.15 / 1; }
  .career-intro,
  .career-fields,
  .career-mindset,
  .career-offer { padding: 72px 0; }
  .career-intro-grid,
  .career-mindset-layout,
  .career-cta-layout { grid-template-columns: 1fr; gap: 42px; }
  .career-intro-copy { padding-top: 0; }
  .career-intro-copy .career-big-copy { font-size: 20px; }
  .career-field-grid { grid-template-columns: 1fr; }
  .career-field-grid article,
  .career-field-grid article:nth-child(4) { grid-column: auto; min-height: 240px; padding: 26px 22px; }
  .career-mindset-layout { gap: 38px; }
  .career-offer-grid { grid-template-columns: 1fr; }
  .career-offer-grid article { min-height: 240px; padding: 27px 22px 31px; }
  .career-offer-grid article + article { border-top: 1px solid #dfe0e6; border-left: 0; }
  .career-contact { padding-top: 22px; }
  .career-contact .proposal-button { width: 100%; }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .site-header { padding-right: 24px; padding-left: 24px; }
  .primary-nav { gap: 18px; }
  .global-language-switch { margin-left: 0; padding-left: 12px; }

  .news-card-featured { grid-template-columns: 1fr; }
  .news-card-featured .news-card-media { min-height: 430px; }
  .news-card-featured .news-card-media img { min-height: 430px; }
  .news-card-grid { grid-template-columns: 1fr 1fr; }
  .news-card-grid .news-card:last-child { grid-column: 1 / -1; }
  .news-article-layout { grid-template-columns: minmax(0, 1fr) 190px; gap: 48px; }
  .news-gallery { grid-template-columns: 1fr; }
  .news-gallery img { height: auto; max-height: 760px; }
  .news-gallery figure:last-child img { object-fit: contain; }

  .home-hero-copy h1 { font-size: 68px; }
  .home-system-figure img { aspect-ratio: 1.65 / 1; }
  .home-stage-list { grid-template-columns: 1fr 1fr; }
  .home-stage-list li:nth-child(2)::after { display: none; }
  .home-system-grid { grid-template-columns: 1fr 1fr; }
  .home-system-grid article:last-child { grid-column: 1 / -1; }
  .home-advantages-layout { grid-template-columns: 1fr; }
  .home-advantages-copy { position: static; }
  .home-research-layout { grid-template-columns: 70px 1fr; }
  .home-research-actions { grid-column: 2; grid-template-columns: auto 1fr; align-items: center; padding-top: 0; }
  .home-research-actions .proposal-button { width: auto; }

  .products-hero-grid { grid-template-columns: 1fr 1.1fr; gap: 42px; }
  .products-hero-copy h1 { font-size: 54px; }
  .system-card-featured { grid-template-columns: 1fr; }
  .system-card-featured .system-image { min-height: 460px; }
  .modules-layout { gap: 48px; }
  .technology-path { grid-template-columns: repeat(2, 1fr); }
  .technology-path li:nth-child(2)::after { display: none; }
  .control-grid { grid-template-columns: 1fr 1fr; }
  .landing-layout { grid-template-columns: 1fr; }
  .dqmf-layout { grid-template-columns: 1fr; }
  .dqmf-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dqmf-range-callout { grid-template-columns: 1fr; gap: 30px; }
  .evidence-layout { grid-template-columns: 1fr; }
  .evidence-facts { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .career-field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-field-grid article,
  .career-field-grid article:nth-child(4) { grid-column: auto; }
  .career-field-grid article:last-child { grid-column: 1 / -1; }
  .career-mindset-layout { grid-template-columns: 1fr; }
}
