@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Semibold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --ink: #080808;
  --section-label: #275d90;
  --hero-accent: #4a9bd6;
  --line-dark: rgba(0, 0, 0, .16);
  --line-light: rgba(255, 255, 255, .24);
  --max: 1240px;
  color-scheme: light dark;
}

* { box-sizing: border-box; }

html {
  min-width: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ink);
  font-family: "Clash Display", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, select { font: inherit; }
h1, h2, p, figure { margin-top: 0; }

.wrap {
  width: min(calc(100% - 56px), var(--max));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 2px solid var(--hero-accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--black);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(0, 0, 0, .11);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 12px 36px rgba(0, 0, 0, .08); }

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  width: 168px;
}

.brand img { width: 100%; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(0, 0, 0, .72);
  font-size: 15px;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-picker { position: relative; z-index: 2; }
.language-picker__trigger {
  width: 92px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(3, 93, 146, .26);
  border-radius: 15px 18px 15px 17px / 17px 14px 18px 15px;
  color: #12171d;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 24px rgba(3, 39, 61, .055);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.language-picker__trigger:hover,
.language-picker__trigger:focus-visible,
.language-picker.is-open .language-picker__trigger {
  border-color: rgba(3, 93, 146, .58);
  background: #fff;
  box-shadow: 0 10px 30px rgba(3, 74, 112, .12);
  outline: none;
}
.language-picker__trigger svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #036fae;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}
.language-picker.is-open .language-picker__trigger svg { transform: rotate(180deg); }
.language-picker__menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 166px;
  padding: 7px;
  border: 1px solid rgba(3, 93, 146, .15);
  border-radius: 19px 15px 21px 16px / 16px 20px 15px 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 55px rgba(3, 32, 48, .16);
  backdrop-filter: blur(18px);
}
.language-picker__menu[hidden] { display: none; }
.language-picker__menu button {
  position: relative;
  width: 100%;
  min-height: 42px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 0 30px 0 10px;
  border: 0;
  border-radius: 12px 10px 13px 11px;
  color: rgba(18, 23, 29, .67);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.language-picker__menu button:hover,
.language-picker__menu button:focus-visible {
  color: #12171d;
  background: rgba(74, 169, 223, .09);
  outline: none;
}
.language-picker__menu button[aria-selected="true"] {
  color: #12171d;
  background: rgba(74, 169, 223, .13);
}
.language-picker__menu button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #036fae;
  box-shadow: 0 0 0 4px rgba(74, 169, 223, .14);
}
.language-picker__menu b { color: #036fae; font-size: 11px; font-weight: 650; }
.language-picker__menu span { font-size: 13px; font-weight: 500; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--black);
}

.hero__fallback,
.hero__video,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__fallback {
  z-index: -4;
  background:
    radial-gradient(circle at 64% 38%, rgba(74, 155, 214, .22), transparent 26vw),
    radial-gradient(circle, rgba(255, 255, 255, .2) 1px, transparent 1.4px),
    #050505;
  background-size: auto, 64px 64px, auto;
}

.hero__video {
  z-index: -3;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__video.is-loaded { opacity: 1; }

.hero__video video,
.hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  object-fit: cover;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.04);
  filter: saturate(.92) contrast(1.08) brightness(.78);
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .3) 48%, rgba(0, 0, 0, .08)),
    linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 42%, rgba(0, 0, 0, .92) 100%);
}

.hero__content {
  position: relative;
  min-height: calc(100svh - 82px);
  padding: 0 0 6vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero__statement {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88vw, 930px);
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 7.65vw, 112.5px);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.045em;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .82);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__statement span { color: var(--section-label); }

.hero__logo {
  width: clamp(250px, 31vw, 440px);
  filter: grayscale(1) brightness(0) invert(1);
  transform: translateY(18px);
  opacity: 0;
  animation: hero-in 1.2s .35s cubic-bezier(.22, 1, .36, 1) forwards;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 42px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: .08em;
  opacity: 0;
  animation: hero-in .9s .8s ease forwards;
}

.scroll-cue__line {
  width: 1px;
  height: 46px;
  background: var(--white);
  transform-origin: top;
  animation: scroll-line 1.8s 1.4s ease-in-out infinite;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(.35); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section {
  position: relative;
  padding-block: clamp(100px, 12vw, 172px);
}

.customers,
.introduction {
  background: var(--white);
  color: var(--ink);
}

.kicker {
  margin-bottom: 24px;
  color: var(--section-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
}

.section-title {
  max-width: 1140px;
  margin-bottom: clamp(58px, 8vw, 112px);
  font-size: clamp(46px, 7.3vw, 104px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.025em;
}

.customers__copy {
  width: min(100%, 920px);
  margin-left: auto;
}

.customers__copy p {
  margin-bottom: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: clamp(24px, 2.65vw, 38px);
  line-height: 1.34;
}

.customers__copy p:last-child { margin-bottom: 0; }
.customers strong, .outputs strong, .introduction strong { font-weight: 500; }

.outputs {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.outputs .kicker { color: var(--hero-accent); }

.outputs__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 34px 80px;
  align-items: end;
  margin-bottom: 82px;
}

.outputs__head .kicker { grid-column: 1 / -1; margin-bottom: 0; }

.outputs__head .section-title {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 86px);
}

.output-marquee {
  --marquee-gap: 18px;
  --marquee-duration: 52s;
  width: 100%;
  overflow: hidden;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
}

.output-marquee__track {
  width: max-content;
  display: flex;
  gap: 0;
  animation: output-marquee-left var(--marquee-duration) linear infinite;
  will-change: transform;
}

.output-marquee__group {
  display: flex;
  flex: none;
  gap: var(--marquee-gap);
  padding-right: var(--marquee-gap);
}

.output-card {
  position: relative;
  flex: 0 0 clamp(420px, 48vw, 720px);
  margin: 0;
  overflow: hidden;
  border: 0;
  background: #080808;
}

.output-card figcaption {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  min-height: 92px;
  display: flex;
  align-items: flex-start;
  padding: 22px 26px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .48) 58%, transparent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}

.output-card figcaption::before {
  content: "";
  width: 2px;
  height: 24px;
  flex: none;
  margin-right: 14px;
  background: var(--hero-accent);
}

.output-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.output-card__media > img:not(.output-card__device) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.output-card__media--contain {
  padding: 7%;
  background: #080808;
}

.output-card__media--contain > img:not(.output-card__device) { object-fit: contain; }

.output-card__device {
  position: absolute;
  right: 6%;
  bottom: 5%;
  width: 18%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .52));
}

.output-card--portrait .output-card__media { background: #ececea; }
.output-card--portrait .output-card__media--contain { padding: 0; background: #e9e9e7; }
.output-card--portrait .output-card__media > img:not(.output-card__device) {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-90deg) scale(1.04);
}
.output-card:hover .output-card__media > img:not(.output-card__device) { transform: scale(1.018); }
.output-card--portrait:hover .output-card__media > img:not(.output-card__device) { transform: rotate(-90deg) scale(1.06); }

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

.section-copy {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.48;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 56px 22px;
}

.output { margin-bottom: 0; }
.output--configurator { grid-column: span 7; }
.output--webgl { grid-column: span 5; }
.output--video { grid-column: 1 / span 4; }
.output--ar { grid-column: span 3; }
.output--photo { grid-column: span 5; }

.output figcaption {
  position: relative;
  margin-bottom: 14px;
  padding-left: 16px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 500;
}

.output figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--hero-accent);
}

.output__media {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background: #0d0d0d;
}

.output__media > img:not(.configurator-mobile) {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.output:hover .output__media > img:not(.configurator-mobile) { transform: scale(1.025); }

.output__media--configurator {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 8%;
  background: #070707;
}

.output__media--configurator .configurator-desktop {
  min-height: 0 !important;
  object-fit: contain !important;
}

.configurator-mobile {
  position: absolute;
  right: 5.5%;
  bottom: 4%;
  width: 18%;
  max-height: 68%;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, .48));
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.output--configurator:hover .configurator-mobile { transform: translateY(-8px); }

.output__media--portrait {
  display: flex;
  justify-content: center;
  background: #f0f0ee;
}

.output__media--portrait > img:not(.configurator-mobile) {
  width: auto;
  object-fit: contain;
}

.introduction { overflow: hidden; }

.introduction__background {
  position: absolute;
  inset: 0;
  background: url("assets/kdm-intro-bg.webp") center / cover no-repeat;
  opacity: .72;
}

.introduction__inner {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-content: center;
}

.introduction__logo {
  width: min(48vw, 560px);
  margin: 28px auto clamp(58px, 7vw, 96px);
}

.introduction__statement {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.site-footer {
  padding-block: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .62);
  background: var(--black);
  font-size: 12px;
  letter-spacing: .06em;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 980px) {
  .primary-nav { display: none; }
  .language-picker { margin-left: auto; }

  .outputs__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .output--configurator,
  .output--webgl { grid-column: span 6; }
  .output--video { grid-column: 1 / span 6; }
  .output--ar { grid-column: span 3; }
  .output--photo { grid-column: span 3; }

  .output__media,
  .output__media > img:not(.configurator-mobile) { min-height: 250px; }
  .output__media--configurator { min-height: 350px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 67px; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .header__inner { min-height: 67px; gap: 14px; }
  .brand { width: 128px; }
  .language-picker__trigger { width: 88px; min-height: 42px; padding-inline: 14px 12px; }

  .hero__content {
    min-height: calc(100svh - 67px);
    padding-bottom: 5vh;
  }

  .hero__logo { width: min(82vw, 360px); }
  .hero__statement {
    width: min(88vw, 350px);
    font-size: clamp(36px, 11.1vw, 49.5px);
    line-height: .88;
  }
  .hero__veil {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .08)),
      linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .12) 48%, rgba(0, 0, 0, .94) 72%, #000 100%);
  }
  .hero__logo { width: min(66vw, 258px); }
  .scroll-cue { margin-top: 30px; }

  .section { padding-block: 88px; }
  .section-title { margin-bottom: 54px; font-size: clamp(42px, 13vw, 64px); }
  .customers__copy p { padding-top: 20px; font-size: clamp(22px, 7vw, 30px); }

  .outputs__head { margin-bottom: 54px; }
  .outputs__head .section-title { font-size: clamp(40px, 12vw, 60px); }
  .section-copy { font-size: 18px; }

  .output-grid { grid-template-columns: 1fr; gap: 44px; }
  .output--configurator,
  .output--webgl,
  .output--video,
  .output--ar,
  .output--photo { grid-column: 1; }

  .output__media,
  .output__media > img:not(.configurator-mobile) { min-height: 270px; }
  .output__media--configurator { min-height: 320px; }
  .output__media--portrait { min-height: 440px; }
  .output__media--portrait > img:not(.configurator-mobile) { min-height: 440px; }

  .introduction__inner { min-height: 72svh; }
  .introduction__logo { width: min(86vw, 470px); margin-bottom: 56px; }
  .introduction__statement { font-size: clamp(37px, 11vw, 56px); }

  .footer__inner { flex-direction: column; }
}

@media (max-width: 350px) {
  .hero__statement {
    width: 90vw;
    font-size: 32px;
  }
}

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

/* Full narrative */
.brand--text {
  width: auto;
  color: var(--black);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand--image {
  width: 168px;
  line-height: 0;
}

.brand-asset {
  display: block;
  max-width: 100%;
  height: auto !important;
  aspect-ratio: 734 / 231;
  object-fit: contain !important;
  object-position: left center;
}

.section--black,
.capability--dark {
  color: var(--white);
  background: var(--black);
}

.kicker--bright { color: var(--hero-accent); }

.section-copy--dark { color: rgba(0, 0, 0, .68); }

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  gap: 72px;
  align-items: start;
}

.split-heading--bottom { align-items: end; }
.split-heading .section-title { margin-bottom: 72px; }

.introduction__inner--statement {
  min-height: 76svh;
  padding-block: 48px;
}

.video-story__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
}

.video-story__head .kicker { margin-bottom: 8px; }

.video-story__head h2 {
  margin: 0;
  font-size: clamp(46px, 7.2vw, 104px);
  font-weight: 300;
  line-height: .92;
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #050505;
}

.video-player__poster {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1px;
  color: rgba(255, 255, 255, .2);
  background:
    radial-gradient(circle at 70% 42%, rgba(74, 155, 214, .18), transparent 25vw),
    radial-gradient(circle, rgba(255, 255, 255, .2) 1px, transparent 1.4px),
    #050505;
  background-size: auto, 62px 62px, auto;
}

.video-player__poster span {
  display: grid;
  min-height: 100%;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 500;
}

.video-player__play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--white);
  border-radius: 0;
  color: var(--black);
  background: var(--white);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-player__icon { font-size: 13px; }

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player.is-playing .video-player__poster,
.video-player.is-playing .video-player__play { display: none; }

.why-kdm { background: var(--white); }

.why-diagram {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: 360px 240px minmax(260px, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.why-diagram__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.why-diagram__lines path {
  fill: none;
  stroke: var(--black);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.why-diagram__sources {
  display: grid;
  gap: 52px;
}

.data-source {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--black);
  background: var(--white);
}

.data-source span {
  font-size: 22px;
  font-weight: 500;
}

.data-source small {
  color: rgba(0, 0, 0, .56);
  font-size: 13px;
}

.why-diagram__hub {
  position: relative;
  z-index: 1;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 36px;
  font-weight: 500;
}

.why-diagram__result {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0 0 0 auto;
  padding: 34px;
  border-left: 4px solid var(--section-label);
  background: var(--white);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
}

.pipeline-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .65fr);
  gap: 84px;
}

.pipeline-definition {
  padding-top: 42px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.pipeline-definition p { margin-bottom: 24px; }

.pipeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 80px;
  padding: 0;
  list-style: none;
}

.pipeline-rail::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .55);
}

.pipeline-rail li {
  position: relative;
  min-height: 190px;
  padding: 62px 20px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.pipeline-rail li:last-child { border-right: 0; }

.pipeline-rail li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--black);
}

.pipeline-rail span {
  display: block;
  margin-bottom: 20px;
  color: var(--hero-accent);
  font-size: 12px;
}

.pipeline-rail strong {
  max-width: 160px;
  display: block;
  font-size: 19px;
  font-weight: 400;
}

.pipeline-closing {
  max-width: 830px;
  margin-top: 34px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.25;
  text-align: center;
}

.custom-pipeline { background: var(--white); }

.product-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 36px;
  background: #efefed;
}

.product-strip figure {
  position: relative;
  min-width: 0;
  margin: 0;
  border-right: 1px solid rgba(0, 0, 0, .15);
  background: #f5f5f3;
}

.product-strip figure:last-child { border-right: 0; }

.product-strip img {
  width: 100%;
  height: clamp(330px, 36vw, 520px);
  object-fit: contain;
  padding: 7%;
}

.product-strip figcaption {
  min-height: 76px;
  padding: 18px;
  border-top: 1px solid rgba(0, 0, 0, .15);
  font-size: 13px;
  font-weight: 500;
}

.process__head .section-title { margin-bottom: 24px; }

.process__label {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  letter-spacing: .04em;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: 160px repeat(4, minmax(145px, 1fr)) minmax(220px, 1.25fr);
  gap: 10px;
  margin-top: 72px;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--hero-accent);
}

.process-node {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: #080808;
}

.process-node__index,
.process-node__type {
  display: block;
  margin-bottom: auto;
  color: var(--hero-accent);
  font-size: 12px;
  font-weight: 500;
}

.process-node > strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.08;
}

.process-node > small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1.35;
}

.process-node > p {
  margin: 26px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
}

.process-node--input > strong { font-size: 16px; }

.process-node--output ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.25;
}

.benefits { background: var(--white); }
.benefits__head .section-title { margin-bottom: 54px; }

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

.benefit-list > li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 30px 0 38px;
  border-bottom: 1px solid var(--line-dark);
}

.benefit-list > li > span {
  color: var(--section-label);
  font-size: 13px;
}

.benefit-list strong {
  display: block;
  max-width: 980px;
  font-size: clamp(30px, 4.4vw, 64px);
  font-weight: 300;
  line-height: 1.03;
}

.benefit-list p {
  max-width: 740px;
  margin: 14px 0 0;
  color: rgba(0, 0, 0, .56);
  font-size: 18px;
}

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

.market-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.market-level {
  margin: 0;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
}

.market-level:last-child { border-right: 0; }

.market-level img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f4f4f2;
}

.market-level > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding-top: 26px;
}

.market-level span {
  color: var(--section-label);
  font-size: 12px;
}

.market-level p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.adopted {
  margin-top: 110px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.adopted h3 {
  margin: 0 0 52px;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 300;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 46px;
}

.client-logo {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 72px;
  margin: 0 auto;
  object-fit: contain !important;
}

.client-logo--gm { max-height: 92px; }

.kpi .section-title { margin-bottom: 62px; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.kpi-grid article {
  min-height: 300px;
  padding: 26px 20px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.kpi-grid article:not(:first-child) { padding-left: 20px; }
.kpi-grid article:last-child { border-right: 0; }

.kpi-grid strong {
  display: block;
  margin-bottom: 90px;
  color: var(--white);
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 300;
  line-height: .9;
}

.kpi-grid p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
}

.capability-intro {
  position: relative;
  isolation: isolate;
  min-height: 90svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.capability-intro__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .4) 1px, transparent 1.4px);
  background-size: 64px 64px;
}

.capability-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(62px, 10.4vw, 152px);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.05em;
}

.capability-intro h2 span { color: var(--section-label); }

.capability--light {
  color: var(--black);
  background: var(--white);
}

.capability__head {
  display: grid;
  grid-template-columns: 1fr minmax(360px, .55fr);
  gap: 84px;
  align-items: end;
  margin-bottom: 70px;
}

.capability__head .section-title { margin-bottom: 0; }

.capability__copy {
  margin: 0;
  color: rgba(0, 0, 0, .67);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.5;
}

.capability--dark .capability__copy { color: rgba(255, 255, 255, .68); }

.layered-sequence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black);
}

.layered-sequence figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #efefed;
}

.layered-sequence span {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  font-size: 11px;
}

.layered-sequence img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.example-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 1px;
  background: var(--black);
}

.example-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.example-gallery img:nth-child(3) { grid-column: span 2; }

.capability-layout {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: start;
}

.capability-layout > * { min-width: 0; }

.capability-layout--reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
}

.capability-layout--reverse .capability-layout__copy { grid-column: 2; }
.capability-layout--reverse .capability-gallery { grid-column: 1; grid-row: 1; }

.capability-layout__copy {
  position: sticky;
  top: 128px;
}

.capability-layout__copy .section-title {
  margin-bottom: 36px;
  font-size: clamp(50px, 6.2vw, 88px);
}

.capability-gallery {
  display: grid;
  gap: 12px;
}

.capability-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

.capability-gallery--four { align-items: start; }
.capability-gallery--four img { aspect-ratio: auto; }

.capability-gallery--products {
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.capability-gallery--products img:not(.capability-gallery__phone) { aspect-ratio: auto; }

.capability-gallery__phone {
  width: 31% !important;
  max-height: 68%;
  position: absolute;
  right: 5%;
  bottom: 4%;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .3));
}

.capability-gallery--xr {
  grid-template-columns: 1.15fr .65fr;
  align-items: stretch;
}

.capability-gallery--xr img { height: auto; object-fit: contain; }

.pixel-benefits {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.pixel-benefits p {
  margin-bottom: 18px;
  font-size: 16px;
}

.pixel-benefits strong { font-weight: 500; }

.capability-gallery--pixel {
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.capability-gallery--pixel img:not(.capability-gallery__phone) { aspect-ratio: auto; }

.closing {
  padding-block: clamp(110px, 14vw, 190px) 76px;
}

.closing__inner h2 {
  max-width: 1050px;
  margin: 0 0 110px;
  color: var(--white);
  font-size: clamp(70px, 12vw, 170px);
  font-weight: 300;
  line-height: .84;
  letter-spacing: -.045em;
}

.closing__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .68);
}

.closing address {
  font-style: normal;
  line-height: 1.7;
}

.closing a { color: inherit; text-underline-offset: 4px; }

.closing__website {
  justify-self: end;
  font-size: 22px;
}

@media (max-width: 1100px) {
  .why-diagram { grid-template-columns: 300px 190px 1fr; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
  .kpi-grid article { border-bottom: 1px solid rgba(255, 255, 255, .2); }
}

@media (max-width: 980px) {
  .split-heading,
  .pipeline-copy,
  .capability__head,
  .capability-layout,
  .capability-layout--reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading .section-title { margin-bottom: 24px; }
  .why-diagram { grid-template-columns: 1fr 150px 1fr; }

  .product-strip { grid-template-columns: repeat(2, 1fr); }
  .product-strip figure { border-bottom: 1px solid var(--line-dark); }

  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-flow::before { display: none; }
  .process-node { min-height: 300px; }

  .market-levels { grid-template-columns: 1fr; }
  .market-level { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .market-level:last-child { border-bottom: 0; }

  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .layered-sequence { grid-template-columns: repeat(2, 1fr); }

  .capability-layout--reverse .capability-layout__copy,
  .capability-layout--reverse .capability-gallery { grid-column: 1; grid-row: auto; }

  .capability-layout__copy { position: static; }
}

@media (max-width: 700px) {
  .brand--text { font-size: 22px; }
  .brand--image { width: 128px; }
  .capability-layout__copy .section-title { font-size: clamp(38px, 12vw, 50px); }

  .output-marquee {
    --marquee-gap: 12px;
    --marquee-duration: 38s;
    padding-inline: 14px;
  }

  .output-card { flex-basis: min(82vw, 420px); }
  .output-card__media { aspect-ratio: 4 / 3; }
  .output-card figcaption { min-height: 78px; padding: 18px; font-size: 12px; }
  .output-card figcaption::before { height: 20px; margin-right: 11px; }

  .video-story__head { display: block; }
  .video-story__head h2 { font-size: 48px; }
  .video-player { width: 100%; aspect-ratio: 16 / 9; }
  .video-player__poster { grid-template-columns: repeat(2, 1fr); }
  .video-player__poster span { font-size: 28px; }

  .why-diagram {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .why-diagram__lines { display: none; }
  .why-diagram__sources { width: 100%; gap: 18px; }
  .why-diagram__hub { width: 126px; height: 126px; }
  .why-diagram__result { margin: 0; }

  .pipeline-rail {
    grid-template-columns: 1fr;
    margin-top: 50px;
    padding-left: 22px;
  }

  .pipeline-rail::before {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .pipeline-rail li {
    min-height: 120px;
    padding: 8px 0 34px 30px;
    border-right: 0;
  }

  .pipeline-rail li::before { top: 3px; left: -22px; }
  .pipeline-rail span { margin-bottom: 10px; }
  .pipeline-closing { font-size: 24px; text-align: left; }

  .product-strip { grid-template-columns: 1fr 1fr; }
  .product-strip img { height: 230px; }
  .product-strip figcaption { min-height: 88px; padding: 14px; font-size: 11px; }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 20px;
  }

  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 5px;
    display: block;
    width: 1px;
    height: auto;
  }

  .process-node,
  .process-node--output {
    min-height: 0;
    border-left: 2px solid var(--hero-accent);
  }

  .process-node__index,
  .process-node__type { margin-bottom: 28px; }

  .benefit-list > li { grid-template-columns: 42px 1fr; gap: 12px; }
  .benefit-list strong { font-size: 32px; }
  .benefit-list p { font-size: 16px; }

  .client-logos { gap: 34px 24px; }
  .client-logo { max-height: 54px; }
  .client-logo--gm { max-height: 70px; }

  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid article { min-height: 245px; padding: 22px 14px !important; }
  .kpi-grid strong { margin-bottom: 60px; font-size: 48px; }

  .capability-intro { min-height: 72svh; }
  .capability-intro h2 { font-size: clamp(54px, 16vw, 74px); }

  .capability__head { margin-bottom: 44px; }
  .capability__copy { font-size: 18px; }
  .layered-sequence { grid-template-columns: 1fr; }
  .layered-sequence img { height: auto; }

  .example-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .example-gallery img,
  .example-gallery img:first-child,
  .example-gallery img:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
    height: auto;
  }

  .capability-gallery--four,
  .capability-gallery--products,
  .capability-gallery--xr,
  .capability-gallery--pixel { grid-template-columns: 1fr; }

  .capability-gallery--xr img { height: auto; }
  .capability-gallery__phone {
    position: static;
    width: min(54%, 260px) !important;
    max-height: none;
    justify-self: center;
    margin: 20px auto 0;
  }

  .closing__inner h2 { margin-bottom: 72px; font-size: 72px; }
  .closing__contacts { grid-template-columns: 1fr; }
  .closing__website { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .output-marquee__track {
    animation: none;
    transform: none;
  }
}

/* Premium control-plane narrative */
:root {
  --paper: #f4f3ef;
  --panel: #090c10;
  --panel-raised: #0f141a;
  --panel-active: #151c24;
  --kdm-blue: #035d92;
  --signal: #4aa9df;
  --technical-grid: rgba(255, 255, 255, .045);
  --ease-premium: cubic-bezier(.22, 1, .36, 1);
  --max: 1440px;
}

.site-header {
  background: #fff;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 48px rgba(5, 9, 14, .1);
}

.section { scroll-margin-top: 0; }

.why-kdm,
.custom-pipeline,
.markets {
  background: var(--paper);
}

.perfect-pipeline,
.process {
  background:
    radial-gradient(circle at 86% 18%, rgba(3, 93, 146, .18), transparent 30vw),
    linear-gradient(180deg, #05070a 0%, #090c10 100%);
}

.why-kdm {
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 10, 15, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 10, 15, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.why-kdm .split-heading {
  grid-template-columns: 1fr;
  margin-bottom: 58px;
}

.why-kdm .section-title { margin-bottom: 0; }

.why-diagram {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 250px minmax(300px, 1fr);
  gap: 80px;
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(3, 93, 146, .22), transparent 26%),
    radial-gradient(circle, var(--technical-grid) 1px, transparent 1.2px),
    var(--panel);
  background-size: auto, 32px 32px, auto;
  box-shadow: 0 34px 90px rgba(5, 10, 16, .16);
}

.why-diagram::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}

.why-diagram__sources {
  position: relative;
  display: grid;
  gap: 28px;
}

.why-diagram__sources::before,
.why-diagram__sources::after,
.data-source::after,
.why-diagram__hub::after {
  content: "";
  position: absolute;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(74, 169, 223, .34);
}

.why-diagram__sources::after {
  top: calc(25% - 7px);
  right: -40px;
  bottom: calc(25% - 7px);
  width: 1px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .65s .25s var(--ease-premium);
}

.why-diagram__sources::before {
  top: 50%;
  right: -80px;
  width: 40px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s .74s var(--ease-premium);
}

.data-source {
  position: relative;
  z-index: 1;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .17);
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  transition: border-color .35s var(--ease-premium), background .35s var(--ease-premium), transform .35s var(--ease-premium);
}

.data-source::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--panel);
  border-radius: 50%;
  background: var(--signal);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(74, 169, 223, .12), 0 0 18px rgba(74, 169, 223, .35);
}

.data-source::after {
  top: 50%;
  right: -40px;
  width: 40px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-premium);
}

.why-diagram.is-visible .data-source::after,
.why-diagram.is-visible .why-diagram__sources::before,
.why-diagram.is-visible .why-diagram__hub::after { transform: scaleX(1); }

.why-diagram.is-visible .why-diagram__sources::after { transform: scaleY(1); }

.data-source:hover {
  border-color: rgba(74, 169, 223, .58);
  background: linear-gradient(145deg, rgba(74, 169, 223, .12), rgba(255, 255, 255, .025));
  transform: translateY(-3px);
}

.data-source span {
  max-width: 290px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.06;
}

.data-source small {
  max-width: 300px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.4;
}

.why-diagram__hub {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  justify-self: center;
  overflow: visible;
  border: 1px solid rgba(74, 169, 223, .62);
  border-radius: 2px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(145deg, #111820, #070a0e);
  background-size: 25px 25px, 25px 25px, auto;
  box-shadow: 0 0 0 12px rgba(3, 93, 146, .06), 0 30px 70px rgba(0, 0, 0, .4);
}

.why-diagram__hub::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 42px;
  left: 42px;
  height: 3px;
  background: var(--signal);
  box-shadow: 0 0 24px rgba(74, 169, 223, .7);
}

.why-diagram__hub::after {
  top: 50%;
  left: 100%;
  width: 80px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s .95s var(--ease-premium);
}

.why-diagram__hub span {
  position: relative;
  z-index: 1;
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: -.045em;
}

.why-diagram__result {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 0;
  padding: 22px 0 22px 34px;
  border-left: 4px solid var(--signal);
  color: #fff;
  background: transparent;
  font-size: clamp(36px, 4.2vw, 66px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.025em;
}

.why-diagram__result::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--panel);
  border-radius: 50%;
  background: var(--signal);
  transform: translateY(-50%);
}

.perfect-pipeline { overflow: hidden; }

.pipeline-copy {
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .62fr);
  gap: clamp(58px, 7vw, 110px);
  align-items: start;
}

.perfect-pipeline .section-title {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(58px, 7vw, 98px);
}

.pipeline-definition {
  margin-top: 8px;
  padding: 30px 0 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-left: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.48;
}

.pipeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 72px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}

.pipeline-rail::before,
.pipeline-rail::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
}

.pipeline-rail::before {
  right: 0;
  background: rgba(255, 255, 255, .08);
}

.pipeline-rail::after {
  width: 100%;
  background: linear-gradient(90deg, var(--kdm-blue), var(--signal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s .18s var(--ease-premium);
  box-shadow: 0 0 22px rgba(74, 169, 223, .4);
}

.pipeline-rail.is-visible::after { transform: scaleX(1); }

.pipeline-rail li {
  position: relative;
  min-height: 182px;
  padding: 42px 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 72%);
  transition: background .35s var(--ease-premium);
}

.pipeline-rail li:last-child { border-right: 0; }

.pipeline-rail li::before {
  top: -7px;
  left: 24px;
  width: 13px;
  height: 13px;
  border: 2px solid #05070a;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(74, 169, 223, .12), 0 0 20px rgba(74, 169, 223, .4);
}

.pipeline-rail li:hover {
  background: linear-gradient(180deg, rgba(74, 169, 223, .1), rgba(255, 255, 255, .018));
}

.pipeline-rail span {
  margin-bottom: 30px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
}

.pipeline-rail strong {
  max-width: 190px;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 400;
  line-height: 1.05;
}

.pipeline-closing {
  max-width: 980px;
  margin: 58px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.13;
  text-align: left;
}

.custom-pipeline {
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 10, 15, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 10, 15, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.product-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(320px, 24vw);
  gap: 1px;
  margin-top: 64px;
  padding: 1px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 34px 90px rgba(5, 10, 16, .18);
}

.product-strip:focus-visible { outline-offset: 8px; }

.product-strip .product-tile {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-right: 0;
  background:
    radial-gradient(circle at 52% 44%, rgba(74, 169, 223, .14), transparent 42%),
    linear-gradient(145deg, var(--panel-active), var(--panel));
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .55;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.product-tile--automotive { grid-column: span 5; }
.product-tile--consumer { grid-column: span 3; }
.product-tile--accessories { grid-column: span 4; }
.product-tile--furniture { grid-column: span 5; }
.product-tile--clothes { grid-column: span 7; }

.product-tile__media {
  position: absolute;
  inset: 18px 18px 74px;
  display: grid;
  place-items: center;
}

.product-tile img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, .34));
  transition: transform .65s var(--ease-premium), filter .65s var(--ease-premium);
}

.product-tile--automotive img { width: 94%; }
.product-tile--consumer img { height: 92%; }
.product-tile--accessories img { width: 86%; }
.product-tile--furniture img { height: 92%; }
.product-tile--clothes img { width: 82%; object-position: 58% center; }

.product-tile figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  min-height: 92px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: end;
  padding: 34px 24px 22px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, .92) 58%);
}

.product-tile figcaption span {
  color: var(--signal);
  font-size: 12px;
  letter-spacing: .08em;
}

.product-tile figcaption strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.product-tile:hover img { transform: translateY(-4px) scale(1.02); }

.product-strip .product-tile:hover {
  background:
    radial-gradient(circle at 52% 44%, rgba(74, 169, 223, .22), transparent 45%),
    linear-gradient(145deg, #17212b, #0a0e13);
}

.process {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(3, 93, 146, .18), transparent 28vw),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    #05070a;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.process__head .section-title {
  max-width: 1180px;
  margin-bottom: 22px;
  font-size: clamp(58px, 7vw, 98px);
}

.process__label {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  letter-spacing: .06em;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, .95fr) minmax(660px, 3.4fr) minmax(270px, 1.2fr);
  gap: 18px;
  margin-top: 72px;
  padding: 0;
  align-items: stretch;
}

.process-flow::before {
  top: 50%;
  right: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, var(--kdm-blue), var(--signal));
  box-shadow: 0 0 18px rgba(74, 169, 223, .3);
}

.process-flow__stages {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(255, 255, 255, .17);
  list-style: none;
}

.process-node {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, .17);
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)), var(--panel);
  transition: border-color .35s var(--ease-premium), background .35s var(--ease-premium), transform .35s var(--ease-premium), opacity .55s var(--ease-premium);
}

.process-flow__stages .process-node { border: 0; }

.process-node::before,
.process-node::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 9px;
  height: 9px;
  border: 2px solid var(--panel);
  border-radius: 50%;
  background: var(--signal);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(74, 169, 223, .1);
}

.process-node::before { left: -6px; }
.process-node::after { right: -6px; }
.process-node--input::before,
.process-node--output::after { display: none; }

.process-node:hover {
  z-index: 4;
  border-color: rgba(74, 169, 223, .62);
  background: linear-gradient(160deg, rgba(74, 169, 223, .12), rgba(255, 255, 255, .02)), var(--panel-raised);
  transform: translateY(-4px);
}

.process-flow.reveal .process-node {
  opacity: .12;
  transform: translateY(14px);
}

.process-flow.reveal.is-visible .process-node {
  opacity: 1;
  transform: translateY(0);
}

.process-flow.reveal.is-visible .process-node--input { transition-delay: .05s; }
.process-flow.reveal.is-visible .process-flow__stages .process-node:nth-child(1) { transition-delay: .14s; }
.process-flow.reveal.is-visible .process-flow__stages .process-node:nth-child(2) { transition-delay: .23s; }
.process-flow.reveal.is-visible .process-flow__stages .process-node:nth-child(3) { transition-delay: .32s; }
.process-flow.reveal.is-visible .process-flow__stages .process-node:nth-child(4) { transition-delay: .41s; }
.process-flow.reveal.is-visible .process-node--output { transition-delay: .5s; }

.process-node__index,
.process-node__type {
  margin-bottom: auto;
  color: var(--signal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
}

.process-node > strong {
  margin-top: 22px;
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.02;
}

.process-node > small {
  margin-top: 15px;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  line-height: 1.4;
}

.process-node > p {
  margin-top: 26px;
  padding-top: 17px;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  line-height: 1.4;
}

.process-node--input > strong {
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: clamp(20px, 1.5vw, 25px);
}

.process-node--input > strong + strong { margin-top: 22px; }

.process-node--output ul {
  gap: 0;
  font-size: 14px;
  line-height: 1.3;
}

.process-node--output li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.market-levels {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1fr 1.2fr;
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 34px 90px rgba(5, 10, 16, .16);
}

.market-level {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--panel);
}

.market-level::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, var(--kdm-blue), var(--signal));
  box-shadow: 0 0 18px rgba(74, 169, 223, .35);
}

.market-level--low::before { width: 34%; }
.market-level--mid::before { width: 67%; }
.market-level--high::before { width: 100%; }

.market-level img {
  width: 100%;
  height: clamp(300px, 24vw, 390px);
  padding: 0;
  object-fit: cover;
  background: transparent;
  transition: transform .7s var(--ease-premium), filter .7s var(--ease-premium);
}

.market-level--mid img {
  padding: clamp(38px, 4vw, 66px);
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 48%, rgba(74, 169, 223, .18), transparent 44%),
    linear-gradient(145deg, var(--panel-active), var(--panel));
}

.market-level:hover img { transform: scale(1.02); }

.market-level > div {
  min-height: 250px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-content: start;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), transparent);
}

.market-level span {
  color: var(--signal);
  font-size: 12px;
  letter-spacing: .08em;
}

.market-level p {
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .why-diagram {
    grid-template-columns: minmax(270px, 1fr) 200px minmax(270px, 1fr);
    gap: 48px;
    padding: 32px;
  }

  .why-diagram__hub { width: 200px; height: 220px; }
  .data-source::after { right: -24px; width: 24px; }
  .why-diagram__sources::after { right: -24px; }
  .why-diagram__sources::before { right: -48px; width: 24px; }
  .why-diagram__hub::after { width: 48px; }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 34px;
  }

  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 10px;
    width: 1px;
    height: auto;
  }

  .process-flow__stages {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    background: transparent;
  }

  .process-node,
  .process-node--output {
    min-height: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .17);
  }

  .process-flow__stages .process-node { border: 1px solid rgba(255, 255, 255, .17); }

  .process-node::before,
  .process-node::after {
    top: auto;
    right: auto;
    left: -29px;
    transform: translateX(-50%);
  }

  .process-node::before { top: 28px; }
  .process-node::after { display: none; }
  .process-node--input::before { display: block; }

  .process-node__index,
  .process-node__type { margin-bottom: 48px; }

  .process-node--output ul { margin-top: 24px; }
}

@media (max-width: 900px) {
  .why-diagram {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px;
  }

  .why-diagram::after {
    content: "";
    position: absolute;
    top: 70px;
    bottom: 70px;
    left: 50%;
    z-index: -1;
    width: 1px;
    background: var(--signal);
    box-shadow: 0 0 18px rgba(74, 169, 223, .32);
  }

  .why-diagram__sources { gap: 16px; }
  .why-diagram__sources::before,
  .why-diagram__sources::after,
  .data-source::before,
  .data-source::after,
  .why-diagram__hub::after,
  .why-diagram__result::before { display: none; }

  .data-source { min-height: 136px; }
  .why-diagram__hub { width: min(100%, 240px); height: 170px; }
  .why-diagram__result { max-width: none; padding-left: 26px; font-size: clamp(38px, 8vw, 58px); }

  .pipeline-copy { grid-template-columns: 1fr; gap: 34px; }
  .pipeline-definition { margin-top: 0; }

  .product-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 310px;
  }

  .product-tile--automotive { grid-column: span 6; }
  .product-tile--consumer,
  .product-tile--accessories,
  .product-tile--furniture,
  .product-tile--clothes { grid-column: span 3; }

  .market-levels { grid-template-columns: 1fr; }
  .market-level img { height: clamp(280px, 56vw, 430px); }
  .market-level > div { min-height: 0; }
}

@media (max-width: 700px) {
  .section { scroll-margin-top: 0; }
  .why-kdm .split-heading { margin-bottom: 36px; }
  .why-diagram { width: min(calc(100% - 28px), var(--max)); padding: 18px; }
  .data-source { padding: 22px; }
  .data-source span { font-size: 22px; }
  .why-diagram__result { font-size: 38px; }

  .pipeline-definition {
    padding: 24px 0 0 20px;
    font-size: 16px;
  }

  .pipeline-rail {
    grid-template-columns: 1fr;
    margin-top: 52px;
    padding-left: 24px;
    border: 0;
  }

  .pipeline-rail::before {
    top: 0;
    bottom: 0;
    left: 5px;
    width: 1px;
    height: auto;
  }

  .pipeline-rail::after {
    top: 0;
    bottom: 0;
    left: 5px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .pipeline-rail.is-visible::after { transform: scaleY(1); }

  .pipeline-rail li {
    min-height: 0;
    padding: 22px 20px 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .pipeline-rail li::before { top: 24px; left: -25px; }
  .pipeline-rail span { margin-bottom: 14px; }
  .pipeline-closing { margin-top: 44px; font-size: 28px; }

  .product-strip {
    width: auto;
    display: flex;
    grid-auto-rows: auto;
    gap: 1px;
    margin-inline: 14px;
    padding: 1px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-strip::-webkit-scrollbar { display: none; }

  .product-strip .product-tile,
  .product-tile--automotive,
  .product-tile--consumer,
  .product-tile--accessories,
  .product-tile--furniture,
  .product-tile--clothes {
    flex: 0 0 84vw;
    min-height: 480px;
    scroll-snap-align: center;
  }

  .product-tile__media { inset: 20px 14px 82px; }

  .process-flow { margin-top: 52px; }
  .process-node > strong { font-size: 24px; }
  .process-node > small,
  .process-node > p { font-size: 14px; }

  .market-levels { width: min(calc(100% - 28px), var(--max)); }
  .market-level img { height: 280px; }
  .market-level > div { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .why-diagram__sources::before,
  .why-diagram__sources::after,
  .data-source::after,
  .why-diagram__hub::after,
  .pipeline-rail::after {
    transform: none !important;
    transition: none !important;
  }

  .process-flow.reveal .process-node {
    opacity: 1;
    transform: none;
  }

  .product-tile img,
  .market-level img { transition: none; }
}

/* Conversion landing — concise enterprise narrative */
:root {
  --paper: #f4f3ef;
  --paper-deep: #ebeae5;
  --panel: #070a0e;
  --panel-raised: #0d1218;
  --kdm-blue: #035d92;
  --signal: #4aa9df;
  --max: 1480px;
  --header-height: 94px;
}

html { scroll-padding-top: var(--header-height); }

.wrap { width: min(calc(100% - clamp(48px, 7vw, 112px)), var(--max)); }

.site-header {
  background: #fff;
  border-bottom-color: rgba(5, 10, 15, .12);
}

.header__inner {
  min-height: var(--header-height);
  gap: clamp(18px, 2vw, 34px);
}

.brand { width: clamp(168px, 11.5vw, 206px); }

.brand-asset {
  width: 100%;
  height: auto;
  aspect-ratio: 734 / 231;
  object-fit: contain;
}

.primary-nav { gap: clamp(22px, 2.2vw, 38px); }

.primary-nav a {
  color: rgba(0, 0, 0, .66);
  font-size: 15px;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #0b0d10;
  color: #0b0d10;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .25s ease, background .25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  background: #0b0d10;
}

.language-picker select { min-height: 42px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

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

.button--light {
  border-color: #fff;
  color: #080b0f;
  background: #fff;
}

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--signal);
  color: #fff;
  background: var(--kdm-blue);
}

.button--ghost {
  border-color: rgba(255, 255, 255, .48);
  color: #fff;
  background: rgba(5, 8, 12, .2);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: #fff;
  color: #080b0f;
  background: #fff;
}

.button--large { min-height: 60px; padding-inline: 28px; }

.hero {
  min-height: 100svh;
  align-items: stretch;
}

.hero__video video,
.hero__video iframe { filter: saturate(.9) contrast(1.1) brightness(.525); }

.hero__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .2) 62%, rgba(0, 0, 0, .9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .26), transparent 38%, transparent 62%, rgba(0, 0, 0, .26));
}

.hero__content {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: center;
  padding: calc(var(--header-height) + clamp(28px, 5vh, 56px)) 0 clamp(34px, 5vh, 58px);
}

.hero__eyebrow {
  grid-row: 1;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero__statement {
  top: 47%;
  width: min(96vw, 1560px);
  color: #fff;
  font-size: clamp(50px, 5.25vw, 88px);
  line-height: .84;
  letter-spacing: -.055em;
  word-spacing: .22em;
  text-align: center;
  text-wrap: balance;
}

.hero__statement span { color: #2c659b; }

.hero__value {
  grid-row: 3;
  width: min(100%, 1000px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px 60px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .34);
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.35;
  text-wrap: pretty;
}

.hero__actions { display: flex; gap: 10px; }

.scroll-cue {
  position: absolute;
  bottom: clamp(34px, 5vh, 58px);
  left: 0;
  margin: 0;
}

.landing-chapter { padding-block: clamp(108px, 9vw, 156px); }

.customers,
.benefits,
.custom-pipeline {
  color: #090b0e;
  background:
    linear-gradient(rgba(5, 10, 15, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 10, 15, .032) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.chapter-head { margin-bottom: clamp(58px, 6vw, 92px); }

.chapter-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: clamp(54px, 7vw, 120px);
  align-items: end;
}

.chapter-head .kicker { margin-bottom: 20px; }

.landing-chapter .section-title,
.chapter-head .section-title {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(58px, 6.3vw, 96px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.chapter-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  text-wrap: pretty;
}

.chapter-intro--dark { color: rgba(5, 8, 12, .66); }

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.challenge-grid__lead,
.challenge-grid__answer { margin: 0; text-wrap: pretty; }

.challenge-grid__lead {
  grid-column: 1 / span 6;
  max-width: 750px;
  font-size: clamp(30px, 3.35vw, 52px);
  line-height: 1.07;
  letter-spacing: -.025em;
}

.challenge-grid__answer {
  grid-column: 8 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 10, 15, .25);
  color: rgba(5, 10, 15, .67);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.4;
}

.adopted--early {
  margin-top: clamp(82px, 9vw, 132px);
  padding-top: 28px;
}

.adopted h3 {
  max-width: 760px;
  margin-bottom: 48px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  text-wrap: balance;
}

.client-logos { gap: clamp(28px, 5vw, 76px); }

.client-logo {
  width: auto !important;
  height: auto !important;
  max-width: min(100%, 220px);
  max-height: 66px;
  aspect-ratio: auto;
  object-fit: contain !important;
}

.client-logo--gm { max-width: 78px; max-height: 78px; }

.process {
  background:
    radial-gradient(circle at 84% 10%, rgba(3, 93, 146, .2), transparent 30vw),
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px),
    #05070a;
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.process__head .section-title {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(58px, 6.3vw, 96px);
}

.process .why-diagram { margin-top: 0; }

.process-stages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  margin-bottom: 0;
  padding: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  list-style: none;
}

.process-stages::before {
  content: "";
  position: absolute;
  top: 46px;
  right: 0;
  left: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, var(--kdm-blue), var(--signal));
  box-shadow: 0 0 18px rgba(74, 169, 223, .38);
}

.process-stages li {
  position: relative;
  min-height: 342px;
  display: flex;
  flex-direction: column;
  padding: 78px 28px 28px;
  color: #fff;
  background: linear-gradient(150deg, rgba(255, 255, 255, .045), transparent 60%), var(--panel);
}

.process-stages li::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 28px;
  z-index: 3;
  width: 11px;
  height: 11px;
  border: 2px solid var(--panel);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(74, 169, 223, .12), 0 0 20px rgba(74, 169, 223, .45);
}

.process-stages span {
  margin-bottom: 40px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
}

.process-stages strong {
  display: block;
  max-width: 250px;
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.process-stages p {
  max-width: 300px;
  margin: 18px 0 32px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.42;
}

.process-stages small {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .44);
  font-size: 12px;
  line-height: 1.45;
}

.benefit-list--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(5, 10, 15, .22);
  border-left: 1px solid rgba(5, 10, 15, .22);
}

.benefit-list--grid > li {
  min-height: 300px;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border-right: 1px solid rgba(5, 10, 15, .22);
  border-bottom: 1px solid rgba(5, 10, 15, .22);
}

.benefit-list--grid strong {
  max-width: 12ch;
  font-size: clamp(27px, 2.55vw, 40px);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.benefit-list--grid p {
  max-width: 32ch;
  margin-top: 22px;
  color: rgba(5, 10, 15, .62);
  font-size: 17px;
  line-height: 1.45;
}

.impact-panel {
  margin-top: clamp(72px, 8vw, 118px);
  padding: clamp(32px, 4.5vw, 66px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(3, 93, 146, .22), transparent 28vw),
    radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1.2px),
    #070a0e;
  background-size: auto, 32px 32px, auto;
  box-shadow: 0 36px 100px rgba(5, 10, 16, .18);
}

.impact-panel__head {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.impact-panel__head .kicker { margin: 0; }

.impact-panel__head h3 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.impact-panel .kpi-grid { border-top-color: rgba(255, 255, 255, .2); }

.impact-panel .kpi-grid article { min-height: 238px; }

.impact-panel .kpi-grid strong {
  margin-bottom: 70px;
  font-size: clamp(46px, 5vw, 76px);
}

.impact-panel__note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .44);
  font-size: 12px;
}

.outputs {
  background:
    radial-gradient(circle at 10% 10%, rgba(3, 93, 146, .17), transparent 28vw),
    #040609;
}

.outputs__head {
  margin-bottom: clamp(58px, 6vw, 90px);
}

.outputs__head .section-title { font-size: clamp(58px, 6.3vw, 96px); }

.output-marquee {
  --marquee-gap: 16px;
  --marquee-duration: 58s;
}

.output-card { flex-basis: clamp(460px, 42vw, 680px); }

.output-card__media { aspect-ratio: 16 / 9; }

.output-families {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(62px, 7vw, 104px);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.output-family {
  min-height: 286px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 62%);
}

.output-family > span {
  display: block;
  margin-bottom: 70px;
  color: var(--signal);
  font-size: 12px;
  letter-spacing: .08em;
}

.output-family h3 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.03;
  text-wrap: balance;
}

.output-family p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 16px;
  line-height: 1.45;
}

.product-strip {
  grid-auto-rows: clamp(300px, 20vw, 360px);
  margin-top: 0;
}

.product-strip .product-tile { min-height: 0; }

.industry-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.55fr);
  gap: clamp(42px, 6vw, 90px);
  margin-top: 1px;
  padding: clamp(34px, 4.5vw, 64px);
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px),
    #080b0f;
  background-size: 48px 48px;
}

.industry-panel__head .kicker { margin-bottom: 20px; }

.industry-panel__head h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.industry-list li {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.video-story {
  background:
    radial-gradient(circle at 76% 18%, rgba(3, 93, 146, .2), transparent 30vw),
    #05070a;
}

.video-story__head {
  margin-bottom: clamp(50px, 6vw, 84px);
}

.video-story__head h2 {
  max-width: 13ch;
  font-size: clamp(58px, 6.3vw, 96px);
  line-height: .94;
  text-wrap: balance;
}

.video-player { box-shadow: 0 34px 100px rgba(0, 0, 0, .38); }

.closing {
  padding-block: clamp(118px, 11vw, 176px) 70px;
  background:
    radial-gradient(circle at 82% 16%, rgba(3, 93, 146, .22), transparent 30vw),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    #030507;
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.closing__inner > .kicker { margin-bottom: 24px; }

.closing__inner h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(64px, 7vw, 104px);
  line-height: .89;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.closing__conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-top: clamp(64px, 7vw, 104px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.closing__conversion p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.35;
  text-wrap: pretty;
}

.closing .button--light { color: #080b0f; }

.closing .button--light:hover,
.closing .button--light:focus-visible { color: #fff; }

.closing__contacts { margin-top: clamp(92px, 10vw, 150px); }

@media (max-width: 1180px) {
  :root { --header-height: 86px; }

  .primary-nav { display: none; }
  .header-cta { margin-left: auto; }
  .language-picker { margin-left: 0; }

  .chapter-head--split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .chapter-intro { max-width: 720px; }

  .why-diagram {
    grid-template-columns: minmax(260px, 1fr) 190px minmax(260px, 1fr);
    gap: 42px;
  }

  .why-diagram__hub { width: 190px; }

  .process-stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-stages::before { display: none; }
  .process-stages li::before { top: 28px; }
  .process-stages li { min-height: 310px; padding-top: 66px; }
  .process-stages span { margin-bottom: 28px; }

  .benefit-list--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .output-families { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .impact-panel .kpi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .impact-panel .kpi-grid article { border-bottom: 1px solid rgba(255, 255, 255, .2); }
}

@media (max-width: 820px) {
  .wrap { width: min(calc(100% - 48px), var(--max)); }

  .landing-chapter { padding-block: 96px; }

  .landing-chapter .section-title,
  .chapter-head .section-title,
  .process__head .section-title,
  .outputs__head .section-title,
  .video-story__head h2 { font-size: clamp(48px, 10vw, 70px); }

  .hero__value {
    width: min(100%, 680px);
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .scroll-cue { display: none; }

  .challenge-grid { grid-template-columns: 1fr; gap: 48px; }
  .challenge-grid__lead,
  .challenge-grid__answer { grid-column: 1; }
  .challenge-grid__lead { max-width: 16ch; }

  .why-diagram {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-diagram__sources::before,
  .why-diagram__sources::after,
  .data-source::before,
  .data-source::after,
  .why-diagram__hub::after,
  .why-diagram__result::before { display: none; }

  .why-diagram::after {
    content: "";
    position: absolute;
    top: 70px;
    bottom: 70px;
    left: 50%;
    z-index: -1;
    width: 1px;
    background: var(--signal);
  }

  .why-diagram__hub { width: min(100%, 240px); height: 160px; }
  .why-diagram__result { max-width: none; }

  .impact-panel__head { grid-template-columns: 1fr; gap: 18px; }

  .industry-panel { grid-template-columns: 1fr; }
  .industry-panel__head h3 { max-width: 16ch; }

  .closing__conversion { grid-template-columns: 1fr; align-items: start; }
  .closing__conversion .button { justify-self: start; }
}

@media (max-width: 700px) {
  :root { --header-height: 74px; }

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

  .header__inner { gap: 14px; }
  .brand { width: 132px; }
  .header-cta { display: none; }
  .language-picker { margin-left: auto; }
  .language-picker select { width: 72px; min-height: 40px; padding-inline: 8px; }

  .hero__content {
    padding: calc(var(--header-height) + 24px) 0 28px;
  }

  .hero__eyebrow { font-size: 10px; }

  .hero__statement {
    top: 42.5%;
    width: calc(100vw - 30px);
    font-size: clamp(40px, 13vw, 58px);
    line-height: .84;
  }

  .hero__value { gap: 18px; padding-top: 18px; }
  .hero__lead { max-width: 30ch; font-size: 16px; line-height: 1.35; }
  .hero__actions { width: 100%; }
  .hero__actions .button { flex: 1 1 0; min-height: 48px; padding-inline: 12px; font-size: 12px; }

  .landing-chapter { padding-block: 80px; }
  .chapter-head { margin-bottom: 48px; }

  .landing-chapter .section-title,
  .chapter-head .section-title,
  .process__head .section-title,
  .outputs__head .section-title,
  .video-story__head h2 {
    max-width: 17ch;
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: .96;
  }

  .chapter-intro { font-size: 18px; }
  .challenge-grid__lead { font-size: 32px; }
  .challenge-grid__answer { font-size: 19px; }

  .adopted--early { margin-top: 72px; }
  .adopted h3 { margin-bottom: 34px; font-size: 28px; }
  .client-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 24px; }
  .client-logo { max-width: 128px; max-height: 48px; }
  .client-logo--gm { max-width: 56px; max-height: 56px; }

  .why-diagram { width: min(calc(100% - 28px), var(--max)); padding: 18px; }
  .data-source { min-height: 124px; }
  .why-diagram__result { font-size: 34px; }

  .process-stages {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 14px;
    padding-left: 28px;
    background: transparent;
  }

  .process-stages::before {
    top: 0;
    bottom: 0;
    left: 7px;
    display: block;
    width: 1px;
    height: auto;
  }

  .process-stages li { min-height: 0; padding: 28px 22px 32px; border-bottom: 1px solid rgba(255, 255, 255, .15); }
  .process-stages li::before { top: 32px; left: -21px; }
  .process-stages span { margin-bottom: 32px; }
  .process-stages strong { font-size: 28px; }
  .process-stages p { margin-bottom: 26px; }

  .benefit-list--grid { grid-template-columns: 1fr; }
  .benefit-list--grid > li { min-height: 240px; padding: 24px 20px; }
  .benefit-list--grid strong { font-size: 29px; }

  .impact-panel { width: calc(100% - 28px); padding: 24px 18px; }
  .impact-panel__head h3 { font-size: 34px; }
  .impact-panel .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-panel .kpi-grid article { min-height: 196px; padding: 20px 12px !important; }
  .impact-panel .kpi-grid article:nth-child(2n) { border-right: 0; }
  .impact-panel .kpi-grid article:last-child { grid-column: 1 / -1; }
  .impact-panel .kpi-grid strong { margin-bottom: 48px; font-size: 42px; }
  .impact-panel .kpi-grid p { font-size: 13px; }

  .output-marquee { width: 100%; overflow: hidden; padding-inline: 14px; }
  .output-card { flex-basis: min(86vw, 440px); }

  .output-families { grid-template-columns: 1fr; margin-top: 62px; }
  .output-family { min-height: 250px; padding: 24px; }
  .output-family > span { margin-bottom: 52px; }
  .output-family h3 { font-size: 29px; }

  .product-strip {
    width: auto;
    margin-inline: 14px;
    grid-auto-rows: auto;
  }

  .product-strip .product-tile,
  .product-tile--automotive,
  .product-tile--consumer,
  .product-tile--accessories,
  .product-tile--furniture,
  .product-tile--clothes {
    min-height: 430px;
  }

  .industry-panel { width: calc(100% - 28px); padding: 28px 20px; }
  .industry-panel__head h3 { font-size: 38px; }
  .industry-list { grid-template-columns: 1fr; }
  .industry-list li { min-height: 68px; font-size: 16px; }

  .video-story__head { display: grid; }
  .video-player { width: 100%; }
  .video-player__poster span { font-size: 24px; }
  .video-player__play { min-height: 50px; padding-inline: 18px; font-size: 13px; }

  .closing { padding-block: 92px 54px; }
  .closing__inner h2 { font-size: clamp(44px, 12vw, 60px); }
  .closing__conversion { margin-top: 58px; }
  .closing__conversion p { font-size: 21px; }
  .closing__conversion .button { width: 100%; }
  .closing__contacts { margin-top: 84px; }
}

@media (max-width: 700px) {
  html[lang="it"] .hero__statement { font-size: clamp(37px, 11.5vw, 50px); }
}

@media (max-width: 360px) {
  .hero__statement { font-size: 38px; }
  .hero__actions { flex-direction: column; }
  .landing-chapter .section-title,
  .chapter-head .section-title,
  .process__head .section-title,
  .outputs__head .section-title,
  .video-story__head h2 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .output-card__media > img,
  .output-marquee__track { transition: none !important; animation: none !important; }
}

/* KDM fluid identity — adaptive fields outside the technical components */
.customers,
.benefits,
.custom-pipeline,
.process,
.outputs,
.video-story,
.closing {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.customers,
.benefits,
.custom-pipeline {
  background:
    radial-gradient(75% 55% at 100% 0%, rgba(74, 169, 223, .075), transparent 68%),
    radial-gradient(62% 48% at 0% 100%, rgba(3, 93, 146, .045), transparent 72%),
    var(--paper);
}

.customers::before,
.benefits::before,
.custom-pipeline::before,
.process::before,
.outputs::before,
.video-story::before,
.closing::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(760px, 72vw, 1240px);
  aspect-ratio: 16 / 10;
  pointer-events: none;
  background: url("assets/kdm-fluid-field.svg") center / contain no-repeat;
  transform-origin: 50% 50%;
  animation: kdm-fluid-drift 18s ease-in-out infinite alternate;
}

.customers::after,
.benefits::after,
.custom-pipeline::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(520px, 48vw, 820px);
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(3, 93, 146, .09);
  border-radius: 61% 39% 52% 48% / 45% 58% 42% 55%;
}

.customers::before {
  top: -250px;
  right: -300px;
  opacity: .38;
  transform: rotate(-10deg);
}

.customers::after {
  right: -250px;
  bottom: -360px;
  transform: rotate(22deg);
}

.benefits::before {
  top: 16%;
  left: -390px;
  opacity: .3;
  transform: scaleX(-1) rotate(8deg);
  animation-delay: -7s;
}

.benefits::after {
  top: 39%;
  left: -290px;
  transform: rotate(-31deg);
}

.custom-pipeline::before {
  top: -230px;
  right: -320px;
  opacity: .3;
  transform: rotate(14deg);
  animation-delay: -12s;
}

.custom-pipeline::after {
  right: -220px;
  bottom: 10%;
  transform: rotate(39deg);
}

.customers > *,
.benefits > *,
.custom-pipeline > *,
.process > *,
.outputs > *,
.video-story > *,
.closing > * {
  position: relative;
  z-index: 1;
}

.process {
  background:
    radial-gradient(ellipse at 92% 8%, rgba(3, 93, 146, .2), transparent 34%),
    radial-gradient(ellipse at 4% 90%, rgba(74, 169, 223, .06), transparent 42%),
    #05070a;
}

.process::before {
  top: -230px;
  right: -330px;
  opacity: .34;
  mix-blend-mode: screen;
  transform: rotate(-8deg);
}

.impact-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 86% 8%, rgba(3, 93, 146, .28), transparent 36%),
    radial-gradient(ellipse at 12% 100%, rgba(74, 169, 223, .08), transparent 44%),
    #070a0e;
}

.impact-panel::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -300px;
  z-index: -1;
  width: min(920px, 76vw);
  aspect-ratio: 16 / 10;
  background: url("assets/kdm-fluid-field.svg") center / contain no-repeat;
  opacity: .24;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: rotate(12deg);
}

.outputs::before {
  top: 22%;
  left: -420px;
  opacity: .24;
  mix-blend-mode: screen;
  transform: scaleX(-1) rotate(8deg);
  animation-delay: -5s;
}

.industry-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(74, 169, 223, .14), transparent 38%),
    radial-gradient(ellipse at 100% 100%, rgba(3, 93, 146, .14), transparent 40%),
    #080b0f;
}

.industry-panel::before {
  content: "";
  position: absolute;
  right: -260px;
  bottom: -240px;
  z-index: -1;
  width: min(780px, 68vw);
  aspect-ratio: 16 / 10;
  background: url("assets/kdm-fluid-field.svg") center / contain no-repeat;
  opacity: .2;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: rotate(-18deg);
}

.video-story::before {
  right: -390px;
  bottom: -260px;
  opacity: .24;
  mix-blend-mode: screen;
  transform: rotate(-18deg);
  animation-delay: -10s;
}

.closing {
  background:
    radial-gradient(ellipse at 82% 12%, rgba(3, 93, 146, .24), transparent 37%),
    radial-gradient(ellipse at 8% 94%, rgba(74, 169, 223, .07), transparent 42%),
    #030507;
}

.closing::before {
  top: -180px;
  right: -280px;
  opacity: .34;
  mix-blend-mode: screen;
  transform: rotate(9deg);
  animation-delay: -14s;
}

@keyframes kdm-fluid-drift {
  from { translate: -1.2% 0; scale: .985; }
  to { translate: 1.2% 1.5%; scale: 1.015; }
}

@media (max-width: 700px) {
  .customers::before,
  .benefits::before,
  .custom-pipeline::before,
  .process::before,
  .outputs::before,
  .video-story::before,
  .closing::before {
    width: 780px;
    opacity: .2;
  }

  .customers::before { top: -150px; right: -490px; }
  .benefits::before { top: 30%; left: -520px; }
  .custom-pipeline::before { top: -120px; right: -500px; }
  .customers::after,
  .benefits::after,
  .custom-pipeline::after { opacity: .65; }
}

@media (prefers-reduced-motion: reduce) {
  .customers::before,
  .benefits::before,
  .custom-pipeline::before,
  .process::before,
  .outputs::before,
  .video-story::before,
  .closing::before {
    animation: none !important;
  }
}

/* Image-led narrative — airy, fluid, never dashboard-like */
.challenge-transform {
  position: relative;
  height: clamp(540px, 52vw, 780px);
  margin-top: clamp(76px, 8vw, 124px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(3, 93, 146, .22), transparent 23%),
    #05080c;
}

.challenge-transform__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 68%;
  overflow: hidden;
}

.challenge-transform__panel--input {
  left: 0;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 67%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 67%, transparent 100%);
}

.challenge-transform__panel--output {
  right: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 33%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 33%, #000 100%);
}

.challenge-transform__panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.challenge-transform__panel--input > img {
  filter: grayscale(.7) contrast(1.04) brightness(.68);
  transform: scale(1.06);
}

.challenge-transform__panel--output > img {
  filter: saturate(.82) contrast(1.06) brightness(.72);
  transform: scale(1.025);
}

.challenge-transform__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 9, .08), rgba(2, 5, 9, .22) 54%, rgba(2, 5, 9, .84)),
    linear-gradient(90deg, rgba(2, 5, 9, .45), transparent 50%);
}

.challenge-transform__panel--output .challenge-transform__shade {
  background:
    linear-gradient(180deg, rgba(2, 5, 9, .04), rgba(2, 5, 9, .18) 54%, rgba(2, 5, 9, .78)),
    linear-gradient(270deg, rgba(2, 5, 9, .38), transparent 48%);
}

.challenge-transform__label {
  position: absolute;
  right: clamp(28px, 4vw, 64px);
  bottom: clamp(30px, 4vw, 60px);
  left: clamp(28px, 4vw, 64px);
  z-index: 2;
}

.challenge-transform__panel--output .challenge-transform__label {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.challenge-transform__label > span {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(28px, 3.5vw, 54px);
  font-weight: 300;
  letter-spacing: -.03em;
}

.challenge-transform__label ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.challenge-transform__panel--output .challenge-transform__label ul { justify-content: flex-end; }

.challenge-transform__label li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 999px;
  background: rgba(4, 8, 12, .2);
  backdrop-filter: blur(12px);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.challenge-transform__bridge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: clamp(82px, 8vw, 118px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 56% 44% 63% 37% / 45% 57% 43% 55%;
  color: #fff;
  background: rgba(3, 93, 146, .82);
  box-shadow: 0 0 0 18px rgba(3, 93, 146, .09), 0 24px 70px rgba(0, 0, 0, .4);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 500;
}

.process-story {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .65fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: start;
}

.pipeline-primer {
  position: relative;
  isolation: isolate;
  margin-bottom: clamp(96px, 10vw, 150px);
  padding: clamp(34px, 4.6vw, 66px);
  overflow: hidden;
  border-radius: 54px 54px 42% 54px / 54px 54px 68px 54px;
  color: #0c1118;
  background:
    radial-gradient(54% 62% at 50% 94%, rgba(50, 145, 205, .12), transparent 73%),
    radial-gradient(32% 42% at 96% 4%, rgba(50, 145, 205, .09), transparent 78%),
    #f7f7f4;
  box-shadow: 0 20px 54px rgba(0, 10, 20, .17);
}

.pipeline-primer::before {
  content: "";
  position: absolute;
  inset: 40% -8% auto;
  z-index: -1;
  height: 39%;
  border: 1px solid rgba(3, 93, 146, .16);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.pipeline-primer__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(46px, 5vw, 72px);
}

.pipeline-primer__intro .kicker { margin-bottom: 14px; }

.pipeline-primer__intro h3 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.035em;
}

.pipeline-primer__intro > p,
.pipeline-primer__closing {
  margin: 0;
  color: rgba(12, 17, 24, .62);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.46;
  text-wrap: pretty;
}

.pipeline-primer__viewport { overflow-x: auto; scrollbar-width: none; }
.pipeline-primer__viewport::-webkit-scrollbar { display: none; }
.pipeline-primer__canvas { min-width: 1060px; }

.pipeline-primer__rail { position: relative; display: grid; margin: 0; padding: 0; list-style: none; }
.pipeline-primer__rail::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 17, 24, .36) 7%, rgba(12, 17, 24, .36) 93%, transparent);
}

.pipeline-primer__rail--production { grid-template-columns: repeat(5, 1fr); }
.pipeline-primer__rail--production li { position: relative; text-align: center; }
.pipeline-primer__rail--production i {
  position: relative;
  z-index: 1;
  width: 21px;
  aspect-ratio: 1;
  display: block;
  margin: 0 auto 13px;
  border: 1px solid rgba(12, 17, 24, .72);
  border-radius: 50%;
  background: #f7f7f4;
  box-shadow: 0 0 0 7px rgba(74, 169, 223, .12);
}
.pipeline-primer__rail--production span { font-size: 13px; color: rgba(12, 17, 24, .66); }

.pipeline-primer__bridge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 26px;
  color: #036fae;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pipeline-primer__bridge::before,
.pipeline-primer__bridge::after { content: ""; height: 1px; flex: 1; background: rgba(3, 93, 146, .28); }

.pipeline-primer__kdm { display: grid; grid-template-columns: 185px 1fr 220px; gap: 28px; align-items: stretch; }
.pipeline-primer__endpoint { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 280px; padding: 24px 21px; background: rgba(255, 255, 255, .86); box-shadow: inset 0 0 0 1px rgba(12, 17, 24, .1), 0 14px 34px rgba(10, 27, 40, .08); }
.pipeline-primer__endpoint--input { border-radius: 42px 18px 42px 18px; }
.pipeline-primer__endpoint--output { border-radius: 18px 42px 18px 42px; text-align: right; }
.pipeline-primer__endpoint small { display: block; margin-bottom: 13px; color: #036fae; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.pipeline-primer__endpoint strong { display: block; font-size: 17px; font-weight: 500; line-height: 1.1; }
.pipeline-primer__endpoint p { margin: 8px 0 0; color: rgba(12, 17, 24, .54); font-size: 11px; line-height: 1.4; }
.pipeline-primer__endpoint-graphic { width: 54px; margin-bottom: 20px; color: #036fae; }
.pipeline-primer__endpoint-graphic svg { display: block; width: 100%; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }

.pipeline-primer__rail--kdm { grid-template-columns: repeat(4, 1fr); gap: 11px; padding: 0 4px; }
.pipeline-primer__rail--kdm::before { top: 73px; right: 7%; left: 7%; height: 2px; background: linear-gradient(90deg, rgba(3, 93, 146, .18), #1189c5 50%, rgba(3, 93, 146, .18)); }
.pipeline-primer__rail--kdm li { position: relative; z-index: 1; min-width: 0; min-height: 280px; padding: 17px 9px 13px; border-radius: 34px 34px 27px 27px; background: linear-gradient(180deg, rgba(228, 243, 250, .94), rgba(255, 255, 255, .75)); box-shadow: inset 0 0 0 1px rgba(3, 93, 146, .12); text-align: center; }
.pipeline-primer__stage-icon { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 9px; border-radius: 48% 52% 55% 45% / 44% 54% 46% 56%; color: #036fae; background: #f9fcfd; box-shadow: 0 0 0 7px rgba(74, 169, 223, .14); }
.pipeline-primer__stage-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pipeline-primer__rail--kdm i { position: absolute; top: 64px; left: 50%; display: grid; width: 20px; aspect-ratio: 1; place-items: center; border: 1px solid #036fae; border-radius: 50%; color: #036fae; background: #f7f7f4; transform: translateX(-50%); font-size: 8px; font-style: normal; font-weight: 600; }
.pipeline-primer__rail--kdm strong { display: block; min-height: 37px; margin-top: 28px; font-size: 12px; font-weight: 600; line-height: 1.13; }
.pipeline-primer__rail--kdm small { display: block; margin-top: 6px; color: rgba(12, 17, 24, .52); font-size: 9px; line-height: 1.28; }
.pipeline-primer__tool-logos { display: block; width: auto; max-width: 98px; height: 84px; object-fit: contain; object-position: center top; margin: 4px auto 0; mix-blend-mode: multiply; }
.pipeline-primer__output-orbit { position: relative; width: 56px; height: 52px; margin: 0 0 20px auto; }
.pipeline-primer__output-orbit::before, .pipeline-primer__output-orbit::after { content: ""; position: absolute; inset: 50% 5px auto; height: 1px; background: #036fae; transform: rotate(29deg); }
.pipeline-primer__output-orbit::after { transform: rotate(-29deg); }
.pipeline-primer__output-orbit span { position: absolute; width: 15px; aspect-ratio: 1; border-radius: 45% 55% 52% 48%; background: #036fae; box-shadow: 0 0 0 5px rgba(74, 169, 223, .14); }
.pipeline-primer__output-orbit span:nth-child(1) { top: 0; left: 21px; }.pipeline-primer__output-orbit span:nth-child(2) { top: 19px; right: 0; }.pipeline-primer__output-orbit span:nth-child(3) { bottom: 0; left: 21px; }.pipeline-primer__output-orbit span:nth-child(4) { top: 19px; left: 0; }
.pipeline-primer__closing { max-width: 780px; margin: clamp(26px, 3vw, 42px) auto 0; text-align: center; }

@media (max-width: 700px) {
  .pipeline-primer { width: calc(100% - 28px); padding: 34px 20px 40px; border-radius: 42px; }
  .pipeline-primer__intro { grid-template-columns: 1fr; gap: 24px; }
  .pipeline-primer__intro h3 { font-size: 40px; }
  .pipeline-primer__viewport { margin-inline: -20px; padding-inline: 20px; }
  .pipeline-primer__canvas { min-width: 1050px; }
  .pipeline-primer__closing { text-align: left; }
}

.process-story__visual {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  height: min(74vh, 790px);
  min-height: 610px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(3, 93, 146, .24), transparent 46%),
    radial-gradient(ellipse at 20% 90%, rgba(74, 169, 223, .08), transparent 36%);
}

.process-story__visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 6%;
  background: url("assets/kdm-fluid-field.svg") center / contain no-repeat;
  opacity: .2;
  pointer-events: none;
}

.process-story__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(.965) translateY(12px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

[data-active-step="0"] [data-process-frame="0"],
[data-active-step="1"] [data-process-frame="1"],
[data-active-step="2"] [data-process-frame="2"],
[data-active-step="3"] [data-process-frame="3"] {
  z-index: 2;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.process-story__frame:not(.process-story__frame--data):not(.process-story__frame--outputs) {
  display: grid;
  place-items: center;
  -webkit-mask-image: radial-gradient(ellipse 82% 74% at 50% 50%, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 74% at 50% 50%, #000 50%, transparent 100%);
}

.process-story__frame:not(.process-story__frame--data):not(.process-story__frame--outputs) > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(.78) contrast(1.08);
}

.process-story__frame-label {
  position: absolute;
  right: 9%;
  bottom: 10%;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(4, 8, 12, .28);
  backdrop-filter: blur(14px);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-story__frame--data {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8%;
}

.process-story__cutout {
  width: 88%;
  height: auto;
  object-fit: contain;
  filter: saturate(.72) brightness(.74) drop-shadow(0 42px 60px rgba(0, 0, 0, .52));
}

.process-story__data-cloud {
  position: absolute;
  inset: 8% 4% auto;
  height: 48%;
}

.process-story__data-cloud span {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .8);
  background: rgba(3, 93, 146, .22);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-story__data-cloud span:nth-child(1) { top: 5%; left: 8%; }
.process-story__data-cloud span:nth-child(2) { top: 34%; left: 42%; }
.process-story__data-cloud span:nth-child(3) { top: 2%; right: 8%; }
.process-story__data-cloud span:nth-child(4) { bottom: 8%; left: 13%; }
.process-story__data-cloud span:nth-child(5) { right: 7%; bottom: 2%; }

.process-story__frame--outputs img,
.process-story__frame--outputs > i {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
  filter: brightness(.74) saturate(.82);
}

.process-story__frame--outputs img { object-fit: cover; }
.process-story__frame--outputs img:nth-child(1) { top: 7%; left: 0; width: 58%; height: 50%; object-position: 50% center; }
.process-story__frame--outputs img:nth-child(2) { top: 0; right: 0; width: 44%; height: 42%; object-position: 50% center; }
.process-story__frame--outputs img:nth-child(3) { right: 5%; bottom: 0; width: 31%; height: 55%; object-position: 50% center; }
.process-story__frame--outputs img:nth-child(4) { bottom: 0; left: 10%; width: 48%; height: 40%; object-position: 50% center; }

.process-story__frame--outputs > i {
  display: block;
  background: url("assets/story-abitare-final.webp") center / cover no-repeat;
}

.process-story__frame--outputs > i:nth-child(1) { top: 12%; left: 1%; width: 62%; height: 56%; }
.process-story__frame--outputs > i:nth-child(2) { top: 2%; right: 0; width: 47%; height: 38%; }
.process-story__frame--outputs > i:nth-child(3) { right: 7%; bottom: 2%; width: 21%; height: 50%; }
.process-story__frame--outputs > i:nth-child(4) { bottom: 0; left: 18%; width: 42%; height: 35%; }

.process-story__status {
  position: absolute;
  bottom: 24px;
  left: 0;
  z-index: 5;
  display: flex;
  gap: 6px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.process-story__status [data-process-current] { color: var(--signal); }

.process-story__progress {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 5;
  width: 120px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.process-story__progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--signal);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

[data-active-step="1"] .process-story__progress span { transform: translateX(100%); }
[data-active-step="2"] .process-story__progress span { transform: translateX(200%); }
[data-active-step="3"] .process-story__progress span { transform: translateX(300%); }

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

.process-story__step {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: .25;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.process-story__step.is-active { opacity: 1; transform: translateY(0); }

.process-story__step > span {
  margin-bottom: 28px;
  color: var(--signal);
  font-size: 12px;
  letter-spacing: .08em;
}

.process-story__step strong {
  display: block;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.process-story__step p {
  max-width: 30ch;
  margin: 26px 0 42px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
}

.process-story__step small {
  max-width: 34ch;
  color: rgba(255, 255, 255, .36);
  font-size: 12px;
  line-height: 1.5;
}

.benefit-stories {
  display: grid;
  gap: clamp(130px, 12vw, 210px);
}

.benefit-story {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .65fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: center;
}

.benefit-story--reverse { grid-template-columns: minmax(340px, .65fr) minmax(0, 1.45fr); }

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

.benefit-story__copy li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 18px;
}

.benefit-story__copy li + li { margin-top: clamp(64px, 7vw, 104px); }

.benefit-story__copy li > span,
.benefit-impact__copy li > span {
  padding-top: 8px;
  color: var(--kdm-blue);
  font-size: 12px;
  letter-spacing: .06em;
}

.benefit-story__copy strong,
.benefit-impact__copy strong {
  display: block;
  max-width: 12ch;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.benefit-story__copy p,
.benefit-impact__copy p {
  max-width: 31ch;
  margin: 24px 0 0;
  color: rgba(5, 10, 15, .62);
  font-size: 18px;
  line-height: 1.5;
}

.benefit-story__media {
  position: relative;
  min-height: 670px;
}

.benefit-story__media--master::before,
.benefit-story__media--outputs::before {
  content: "";
  position: absolute;
  inset: 9% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 169, 223, .18), transparent 68%);
  filter: blur(32px);
}

.benefit-story__media--master figure {
  position: absolute;
  width: 76%;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(5, 10, 15, .16);
}

.benefit-story__media--master figure:first-child {
  top: 3%;
  left: 0;
  border-radius: 9% 28% 11% 23% / 12% 20% 14% 25%;
}

.benefit-story__media--master figure:last-child {
  right: 0;
  bottom: 3%;
  border-radius: 26% 10% 22% 12% / 18% 12% 26% 14%;
}

.benefit-story__media--master img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.benefit-story__media--master figure:first-child img { filter: grayscale(.6) brightness(.82); }

.benefit-story__media--master figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(4, 8, 12, .34);
  backdrop-filter: blur(12px);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.benefit-story__output {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #070a0e;
  box-shadow: 0 32px 90px rgba(5, 10, 15, .17);
}

.benefit-story__output img { width: 100%; height: 100%; display: block; object-fit: cover; }

.benefit-story__output--config {
  top: 2%;
  left: 2%;
  width: 72%;
  height: 44%;
  border-radius: 8% 24% 9% 20% / 13% 17% 15% 22%;
}

.benefit-story__output--config img { object-fit: contain; padding: 5%; }

.benefit-story__output--ar {
  top: 24%;
  right: 3%;
  width: 28%;
  height: 62%;
  border-radius: 42% 18% 35% 22% / 22% 38% 18% 34%;
}

.benefit-story__output--ar img { object-fit: contain; }

.benefit-story__output--cgi {
  bottom: 2%;
  left: 11%;
  width: 58%;
  height: 45%;
  border-radius: 23% 8% 19% 13% / 11% 20% 9% 22%;
}

.benefit-impact {
  position: relative;
  left: 50%;
  width: min(100vw, 1780px);
  min-height: 1180px;
  margin-left: -50vw;
  overflow: hidden;
  color: #fff;
  background: #040609;
}

.benefit-impact__backdrop,
.benefit-impact__veil { position: absolute; inset: 0; }

.benefit-impact__backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.54) contrast(1.08);
}

.benefit-impact__veil {
  background:
    linear-gradient(180deg, rgba(2, 5, 8, .3), rgba(2, 5, 8, .1) 35%, rgba(2, 5, 8, .82) 75%, #030507 100%),
    linear-gradient(90deg, rgba(2, 5, 8, .62), transparent 55%);
}

.benefit-impact__copy,
.benefit-impact__metrics {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(48px, 9vw, 160px)), var(--max));
  margin-inline: auto;
}

.benefit-impact__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 10vw, 180px);
  margin-top: 0;
  padding: clamp(72px, 8vw, 130px) 0;
  list-style: none;
}

.benefit-impact__copy li { display: grid; grid-template-columns: 30px 1fr; gap: 18px; }
.benefit-impact__copy strong { color: #fff; }
.benefit-impact__copy p { color: rgba(255, 255, 255, .7); }

.benefit-impact__metrics { margin-top: clamp(300px, 27vw, 440px); padding-bottom: clamp(62px, 7vw, 110px); }
.benefit-impact__metrics .kicker { margin-bottom: 20px; }

.benefit-impact__metrics h3 {
  max-width: 900px;
  margin: 0 0 clamp(70px, 7vw, 110px);
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.benefit-impact .kpi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(50px, 6vw, 96px);
  border: 0;
}

.benefit-impact .kpi-grid article {
  min-width: 170px;
  flex: 1 1 180px;
  min-height: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent;
}

.benefit-impact .kpi-grid strong {
  display: block;
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  letter-spacing: -.04em;
}

.benefit-impact .kpi-grid p {
  max-width: 20ch;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.4;
}

.benefit-impact__note {
  margin: 46px 0 0;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
}

@media (max-width: 1000px) {
  .process-story { grid-template-columns: 1fr; gap: 0; }
  .process-story__visual { top: calc(var(--header-height) + 12px); z-index: 2; height: 54svh; min-height: 440px; }
  .process-story__steps { position: relative; z-index: 3; }
  .process-story__step { min-height: 62svh; padding-top: 18svh; justify-content: flex-end; }
  .process-story__step > * { max-width: min(88%, 440px); }
  .process-story__step strong { font-size: 46px; }
  .process-story__step p { margin-block: 20px 28px; }

  .benefit-story,
  .benefit-story--reverse { grid-template-columns: 1fr; min-height: 0; gap: 64px; }
  .benefit-story--reverse .benefit-story__media { order: 1; }
  .benefit-story--reverse .benefit-story__copy { order: 2; }
  .benefit-story__media { min-height: 620px; }
  .benefit-story__copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
  .benefit-story__copy li + li { margin-top: 0; }
}

@media (max-width: 700px) {
  .challenge-transform { width: 100%; height: 720px; margin-top: 64px; }
  .challenge-transform__panel { width: 100%; height: 57%; }
  .challenge-transform__panel--input {
    top: 0;
    bottom: auto;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
  }
  .challenge-transform__panel--output {
    top: auto;
    bottom: 0;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
  }
  .challenge-transform__label { inset: auto 18px 22px; }
  .challenge-transform__panel--input .challenge-transform__label { top: 22px; bottom: auto; }
  .challenge-transform__label > span { margin-bottom: 12px; font-size: 30px; }
  .challenge-transform__label li { padding: 6px 9px; font-size: 9px; }
  .challenge-transform__bridge { width: 74px; }

  .process-story { width: 100%; }
  .process-story__visual { top: var(--header-height); height: 47svh; min-height: 350px; margin-inline: 0; }
  .process-story__visual::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    height: 34%;
    background: linear-gradient(transparent, #05070a);
    pointer-events: none;
  }
  .process-story__frame--data { padding: 5%; }
  .process-story__cutout { width: 96%; }
  .process-story__data-cloud { inset-inline: 0; }
  .process-story__data-cloud span { padding: 7px 9px; font-size: 8px; }
  .process-story__frame-label { right: 5%; bottom: 8%; font-size: 9px; }
  .process-story__frame--outputs img { border-radius: 11px; }
  .process-story__status { bottom: 14px; left: 18px; }
  .process-story__progress { right: 18px; bottom: 18px; }
  .process-story__steps { width: calc(100% - 36px); margin-inline: auto; }
  .process-story__step { min-height: 58svh; padding: 14svh 0 42px; }
  .process-story__step strong { font-size: 36px; }
  .process-story__step p { font-size: 17px; }

  .benefit-stories { gap: 112px; }
  .benefit-story { gap: 44px; }
  .benefit-story__media { min-height: 430px; }
  .benefit-story__media--master figure { width: 88%; }
  .benefit-story__copy { grid-template-columns: 1fr; gap: 64px; }
  .benefit-story__copy strong { font-size: 34px; }
  .benefit-story__copy p { font-size: 17px; }
  .benefit-story__output--config { width: 78%; height: 42%; }
  .benefit-story__output--ar { width: 30%; height: 58%; }
  .benefit-story__output--cgi { left: 4%; width: 66%; height: 44%; }

  .benefit-impact { left: auto; width: 100vw; min-height: 0; margin-left: calc(50% - 50vw); }
  .benefit-impact__backdrop { height: 100%; }
  .benefit-impact__copy { grid-template-columns: 1fr; gap: 62px; padding: 72px 0 240px; }
  .benefit-impact__copy strong { font-size: 34px; }
  .benefit-impact__metrics { margin-top: 0; padding-bottom: 72px; }
  .benefit-impact__metrics h3 { margin-bottom: 64px; font-size: 42px; }
  .benefit-impact .kpi-grid { gap: 48px 22px; }
  .benefit-impact .kpi-grid article { min-width: 0; flex: 1 1 calc(50% - 22px); }
  .benefit-impact .kpi-grid strong { font-size: 46px; }
  .benefit-impact .kpi-grid p { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .process-story__frame,
  .process-story__step,
  .process-story__progress span { transition: none !important; }
}

/* Final editorial pass — imagery flows, information breathes */
.customers .chapter-head {
  margin-bottom: clamp(46px, 5vw, 76px);
}

.challenge-transform {
  left: 50%;
  width: min(100vw, 1780px);
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  transform: translateX(-50%);
  background: #04070a;
}

.challenge-transform.reveal,
.challenge-transform.reveal.is-visible { transform: translateX(-50%); }

.challenge-transform::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: 50%;
  z-index: 3;
  width: clamp(140px, 18vw, 310px);
  border-radius: 48% 52% 43% 57% / 61% 42% 58% 39%;
  background: radial-gradient(ellipse, rgba(3, 93, 146, .32), rgba(3, 93, 146, .08) 42%, transparent 72%);
  filter: blur(26px);
  pointer-events: none;
  transform: translateX(-50%) rotate(9deg);
}

.challenge-transform__panel { width: 64%; }

.challenge-transform__panel--input {
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 54%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 54%, transparent 100%);
}

.challenge-transform__panel--output {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 100%);
}

.challenge-transform__label > span {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 400;
  letter-spacing: -.015em;
}

.challenge-transform__bridge,
.challenge-transform__label ul { display: none; }

.challenge-grid {
  margin-top: clamp(72px, 8vw, 124px);
  margin-bottom: clamp(92px, 10vw, 150px);
}

.process-story__visual {
  border-radius: 44% 56% 36% 64% / 34% 42% 58% 66%;
  background:
    radial-gradient(ellipse at 48% 48%, rgba(3, 93, 146, .26), transparent 47%),
    radial-gradient(ellipse at 18% 92%, rgba(74, 169, 223, .08), transparent 38%);
}

.process-story__visual::before { opacity: .3; }

.process-story__frame-label,
.process-story__data-cloud,
.process-story__status,
.process-story__progress { display: none; }

.process-story__frame:not(.process-story__frame--data):not(.process-story__frame--outputs) {
  -webkit-mask-image: radial-gradient(ellipse 86% 78% at 50% 50%, #000 42%, transparent 100%);
  mask-image: radial-gradient(ellipse 86% 78% at 50% 50%, #000 42%, transparent 100%);
}

.process-story__frame--outputs img,
.process-story__frame--outputs > i { border-radius: 18% 10% 22% 12% / 14% 20% 12% 24%; }

.output-families {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(78px, 9vw, 140px) clamp(70px, 11vw, 180px);
  margin-top: clamp(100px, 11vw, 170px);
  border: 0;
}

.output-family {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.output-family:nth-child(even) { transform: translateY(clamp(42px, 5vw, 82px)); }

.output-family > span {
  margin-bottom: clamp(28px, 3vw, 44px);
  font-size: 11px;
}

.output-family h3 {
  max-width: 15ch;
  font-size: clamp(34px, 3.7vw, 58px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.03em;
}

.output-family p {
  max-width: 36ch;
  margin-top: 24px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
}

.product-strip {
  gap: 10px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.product-strip .product-tile {
  border-radius: 22% 8% 19% 10% / 12% 18% 8% 20%;
  background:
    radial-gradient(circle at 52% 44%, rgba(74, 169, 223, .18), transparent 45%),
    linear-gradient(145deg, #151d26, #070a0e);
}

.product-tile:nth-child(even) { border-radius: 9% 22% 8% 17% / 18% 10% 22% 8%; }
.product-tile::before { display: none; }

.industry-panel {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.6fr);
  gap: clamp(70px, 9vw, 150px);
  margin-top: clamp(80px, 9vw, 140px);
  padding: clamp(58px, 7vw, 110px);
  border-radius: 8% 20% 7% 17% / 12% 8% 18% 10%;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: clamp(24px, 3vw, 44px) clamp(32px, 4vw, 64px);
  border: 0;
}

.industry-list li {
  min-height: 0;
  flex: 0 1 auto;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.15;
}

@media (max-width: 1000px) {
  .output-families { gap: 76px 52px; }
  .industry-panel { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .challenge-transform {
    width: 100vw;
    height: 640px;
    margin-top: 0;
  }

  .challenge-transform::after {
    top: 50%;
    right: -20%;
    bottom: auto;
    left: -20%;
    width: 140%;
    height: 180px;
    transform: translateY(-50%) rotate(-5deg);
  }

  .challenge-transform__panel { width: 100%; height: 60%; }
  .challenge-transform__label { inset: auto 22px 24px; }
  .challenge-transform__panel--input .challenge-transform__label { top: 24px; bottom: auto; }
  .challenge-transform__label > span { font-size: 21px; }
  .challenge-grid { margin-top: 68px; margin-bottom: 86px; }

  .process-story__visual { border-radius: 0; }

  .output-families {
    grid-template-columns: 1fr;
    gap: 72px;
    margin-top: 94px;
  }

  .output-family:nth-child(even) { transform: none; }
  .output-family h3 { font-size: 38px; }

  .product-strip { gap: 8px; }
  .product-strip .product-tile,
  .product-tile:nth-child(even) { border-radius: 26px; }

  .industry-panel {
    margin-top: 74px;
    padding: 56px 26px 64px;
    border-radius: 34px;
  }

  .industry-list { gap: 22px 28px; }
  .industry-list li { font-size: 20px; }
}

/* V2.1 — connected product storytelling */
.connected-anatomy {
  position: relative;
  left: 50%;
  width: min(100vw, 1780px);
  height: min(72vw, 900px);
  min-height: 620px;
  margin-left: 0;
  overflow: hidden;
  color: #fff;
  background: #030507;
  transform: translateX(-50%);
}

.connected-anatomy.reveal,
.connected-anatomy.reveal.is-visible { transform: translateX(-50%); }

.connected-anatomy__image,
.connected-anatomy__veil { position: absolute; inset: 0; width: 100%; height: 100%; }

.connected-anatomy__image {
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(.84) brightness(.68) contrast(1.04);
  transform: scale(1.035);
}

.connected-anatomy__veil {
  background:
    radial-gradient(circle at 50% 55%, transparent 12%, rgba(2, 5, 8, .16) 42%, rgba(2, 5, 8, .78) 100%),
    linear-gradient(180deg, rgba(2, 5, 8, .45), transparent 32%, rgba(2, 5, 8, .38));
}

.connected-anatomy__intro {
  position: absolute;
  top: clamp(34px, 5vw, 78px);
  left: clamp(28px, 6vw, 108px);
  z-index: 3;
  max-width: 560px;
}

.connected-anatomy__intro span {
  display: block;
  margin-bottom: 20px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.connected-anatomy__intro strong {
  display: block;
  max-width: 13ch;
  font-size: clamp(38px, 4.8vw, 76px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.connected-anatomy__node {
  position: absolute;
  z-index: 4;
  min-width: clamp(138px, 13vw, 206px);
  padding: 15px 18px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(3, 7, 11, .4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.connected-anatomy__node::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(45px, 6vw, 98px);
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 169, 223, .85), rgba(74, 169, 223, .08));
}

.connected-anatomy__node span {
  float: left;
  margin-right: 10px;
  color: var(--signal);
  font-size: 10px;
}

.connected-anatomy__node strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.connected-anatomy__node small {
  display: block;
  margin: 4px 0 0 26px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  letter-spacing: .04em;
}

.connected-anatomy__node--part { top: 23%; right: 7%; }
.connected-anatomy__node--material { top: 46%; right: 4%; }
.connected-anatomy__node--finish { right: 12%; bottom: 12%; }
.connected-anatomy__node--market { bottom: 10%; left: 6%; }
.connected-anatomy__node--variant { top: 45%; left: 5%; }
.connected-anatomy__node--part::after,
.connected-anatomy__node--material::after,
.connected-anatomy__node--finish::after { right: 100%; transform: rotate(180deg); }
.connected-anatomy__node--market::after,
.connected-anatomy__node--variant::after { left: 100%; }

.connected-anatomy__pulse {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(74, 169, 223, .16), 0 0 30px rgba(74, 169, 223, .6);
}

.connected-anatomy__pulse--a { top: 39%; left: 48%; }
.connected-anatomy__pulse--b { top: 59%; left: 43%; }
.connected-anatomy__pulse--c { top: 68%; left: 61%; }

.process-story__frame--data { display: grid; place-items: center; padding: 0; }
.process-story__frame--data > img,
.process-story__frame:not(.process-story__frame--outputs) > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(.68) contrast(1.06);
}

.process-story__frame-label {
  display: block;
  z-index: 3;
  right: 7%;
  bottom: 7%;
  padding: 10px 15px;
}

.process-story__frame--outputs img,
.process-story__frame--outputs > i {
  filter: brightness(.74) saturate(.78);
}

.process-story__frame--outputs > i:nth-child(1) { top: 7%; left: 0; width: 58%; height: 50%; background-position: 44% center; }
.process-story__frame--outputs > i:nth-child(2) { top: 0; right: 0; width: 44%; height: 42%; background-position: 72% center; }
.process-story__frame--outputs > i:nth-child(3) { right: 5%; bottom: 0; width: 31%; height: 55%; background-position: 84% center; }
.process-story__frame--outputs > i:nth-child(4) { bottom: 0; left: 10%; width: 48%; height: 40%; background-position: 18% center; }

.benefit-story__media--master figure { width: 80%; background: #dce3e9; }
.benefit-story__media--master figure:first-child img { filter: brightness(.92) saturate(.72); }

.benefit-story__output--config img,
.benefit-story__output--ar img {
  padding: 0;
  object-fit: cover;
}

.benefit-story__output--config { width: 74%; height: 48%; }
.benefit-story__output--ar { top: 28%; width: 34%; height: 62%; border-radius: 34% 12% 30% 16% / 16% 32% 12% 28%; }
.benefit-story__output--cgi { left: 6%; width: 62%; height: 48%; }

.benefit-impact__backdrop {
  overflow: hidden;
  filter: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(3, 93, 146, .34), transparent 24%),
    radial-gradient(circle at 50% 44%, rgba(74, 169, 223, .08), transparent 48%),
    #020508;
}

.benefit-impact__backdrop::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(64vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(74, 169, 223, .25);
  border-radius: 44% 56% 47% 53% / 58% 42% 58% 42%;
  box-shadow:
    0 0 0 9vw rgba(3, 93, 146, .025),
    0 0 0 18vw rgba(3, 93, 146, .018);
  transform: translateX(-50%) rotate(12deg);
}

.benefit-impact__backdrop i {
  position: absolute;
  top: 47%;
  left: 50%;
  width: clamp(9px, .9vw, 14px);
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(74, 169, 223, .12), 0 0 30px rgba(74, 169, 223, .5);
}

.benefit-impact__backdrop i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: clamp(80px, 12vw, 210px);
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 169, 223, .7), transparent);
  transform-origin: left;
}

.benefit-impact__backdrop i:nth-child(1) { transform: translate(-50%, -50%); }
.benefit-impact__backdrop i:nth-child(2) { transform: translate(-250px, -140px); }
.benefit-impact__backdrop i:nth-child(2)::after { transform: rotate(210deg); }
.benefit-impact__backdrop i:nth-child(3) { transform: translate(240px, -110px); }
.benefit-impact__backdrop i:nth-child(3)::after { transform: rotate(-28deg); }
.benefit-impact__backdrop i:nth-child(4) { transform: translate(-210px, 160px); }
.benefit-impact__backdrop i:nth-child(4)::after { transform: rotate(150deg); }
.benefit-impact__backdrop i:nth-child(5) { transform: translate(250px, 170px); }
.benefit-impact__backdrop i:nth-child(5)::after { transform: rotate(28deg); }

.product-tile--architecture { grid-column: span 5; }
.product-tile--furniture,
.product-tile--clothes,
.product-tile--architecture { grid-column: span 4; }
.product-tile--automotive,
.product-tile--consumer,
.product-tile--furniture,
.product-tile--architecture { background: #080b0f; }

.product-tile--automotive .product-tile__media,
.product-tile--consumer .product-tile__media,
.product-tile--furniture .product-tile__media,
.product-tile--architecture .product-tile__media { inset: 0; }

.product-tile--automotive img,
.product-tile--consumer img,
.product-tile--furniture img,
.product-tile--architecture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(.82);
}

.product-tile--consumer img { object-position: 54% center; }
.product-tile--furniture img { object-position: 52% center; }
.product-tile--clothes .product-tile__media { inset: 8px 18px 68px; }
.product-tile--clothes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

@media (max-width: 1000px) {
  .connected-anatomy__node--market { display: none; }
  .product-tile--furniture,
  .product-tile--clothes,
  .product-tile--architecture { grid-column: span 3; }
}

@media (max-width: 700px) {
  .connected-anatomy {
    height: 720px;
    min-height: 0;
  }

  .connected-anatomy__image { object-position: 56% center; }
  .connected-anatomy__intro { top: 34px; right: 24px; left: 24px; }
  .connected-anatomy__intro strong { font-size: 42px; }
  .connected-anatomy__node { min-width: 142px; padding: 13px 15px; }
  .connected-anatomy__node--part { top: 38%; right: 18px; }
  .connected-anatomy__node--material { top: 57%; right: auto; left: 18px; }
  .connected-anatomy__node--finish { right: 18px; bottom: 8%; }
  .connected-anatomy__node--variant,
  .connected-anatomy__node--market,
  .connected-anatomy__pulse--b,
  .connected-anatomy__pulse--c { display: none; }

  .process-story__frame-label { right: 18px; bottom: 18px; font-size: 9px; }
  .benefit-impact__backdrop::before { top: 26%; width: 94vw; }
  .benefit-impact__backdrop i:nth-child(2) { transform: translate(-130px, -105px); }
  .benefit-impact__backdrop i:nth-child(3) { transform: translate(105px, -75px); }
  .benefit-impact__backdrop i:nth-child(4) { transform: translate(-110px, 110px); }
  .benefit-impact__backdrop i:nth-child(5) { transform: translate(110px, 120px); }

  .product-tile--architecture,
  .product-tile--furniture,
  .product-tile--clothes,
  .product-strip .product-tile--architecture { grid-column: auto; }
}

/* V2.4 — verified loop, readable technical map and editorial video framing */
.output-marquee__track { animation-name: output-marquee-left-continuous; }

.output-card--configurator .output-card__media { background: #080808 url("assets/output-configurator.webp") center / contain no-repeat; }
.output-card--webgl .output-card__media { background: #080808 url("assets/output-webgl.webp") center / cover no-repeat; }
.output-card--video .output-card__media { background: #080808 url("assets/output-video-cgi.webp") center / cover no-repeat; }
.output-card--photo .output-card__media { background: #080808 url("assets/output-photorealistic.webp") center / cover no-repeat; }

.output-card--ar .output-card__media {
  padding: 0;
  background: #e9e9e7 url("assets/output-ar-landscape.png") center / contain no-repeat;
}

.output-card--ar .output-card__media > img:not(.output-card__device) {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.output-card--ar:hover .output-card__media > img:not(.output-card__device) { transform: scale(1.02); }

@keyframes output-marquee-left-continuous {
  to { transform: translate3d(-33.3333333333%, 0, 0); }
}

.pipeline-primer {
  width: min(calc(100vw - 56px), 1880px);
  max-width: none;
}

.pipeline-primer__canvas { min-width: 1460px; }
.pipeline-primer__kdm { grid-template-columns: 230px 1fr 270px; gap: 22px; }
.pipeline-primer__endpoint { min-height: 330px; padding: 30px 28px; }
.pipeline-primer__endpoint small { margin-bottom: 16px; font-size: 12px; }
.pipeline-primer__endpoint strong { font-size: 22px; }
.pipeline-primer__endpoint p { margin-top: 12px; font-size: 15px; }
.pipeline-primer__endpoint-graphic { width: 66px; margin-bottom: 26px; }
.pipeline-primer__output-orbit { width: 72px; height: 66px; margin-bottom: 26px; }
.pipeline-primer__output-orbit span { width: 19px; }
.pipeline-primer__output-orbit span:nth-child(1) { left: 27px; }
.pipeline-primer__output-orbit span:nth-child(2) { top: 24px; }
.pipeline-primer__output-orbit span:nth-child(3) { left: 27px; }
.pipeline-primer__output-orbit span:nth-child(4) { top: 24px; }
.pipeline-primer__rail--kdm { gap: 14px; padding-inline: 0; }
.pipeline-primer__rail--kdm::before { top: 91px; }
.pipeline-primer__rail--kdm li { min-height: 330px; padding: 22px 14px 18px; }
.pipeline-primer__stage-icon { width: 62px; height: 62px; margin-bottom: 12px; }
.pipeline-primer__stage-icon svg { width: 36px; height: 36px; }
.pipeline-primer__rail--kdm i { top: 80px; width: 25px; font-size: 10px; }
.pipeline-primer__rail--kdm strong { min-height: 46px; margin-top: 34px; font-size: 16px; }
.pipeline-primer__rail--kdm small { margin-top: 10px; font-size: 12px; }
.pipeline-primer__tool-logos { max-width: 148px; height: 128px; margin-top: 8px; }
.pipeline-primer__data-types {
  display: grid;
  width: min(174px, 100%);
  gap: 7px;
  margin: 8px auto 0;
}
.pipeline-primer__data-type {
  display: grid;
  grid-template-columns: 30px 1fr;
  min-height: 40px;
  align-items: center;
  padding: 5px 12px 5px 8px;
  border: 1px solid rgba(3, 111, 174, .14);
  border-radius: 14px 18px 14px 17px / 16px 13px 18px 14px;
  color: #036fae;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 24px rgba(3, 93, 146, .055);
  text-align: left;
}
.pipeline-primer__data-type svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pipeline-primer__data-type b {
  color: #12171d;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .025em;
}
.pipeline-primer__closing { max-width: 980px; font-size: clamp(18px, 1.35vw, 24px); }

.industry-panel {
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.55fr);
  gap: clamp(60px, 7vw, 118px);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 0;
}

.industry-list li {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px 30px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px 18px 20px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-size: inherit;
}

.industry-list li:nth-child(odd) { margin-right: 28px; }
.industry-list li:nth-child(even) { padding-left: 28px; }

.industry-list__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50% 46% 54% 48% / 44% 54% 47% 56%;
  color: #4aa9df;
  background: rgba(74, 169, 223, .09);
}

.industry-list__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-list__index {
  color: #4aa9df;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.industry-list strong {
  color: rgba(255, 255, 255, .84);
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 300;
  line-height: 1.15;
}

.video-player { border: 0; box-shadow: none; }
.video-player__poster span { border-right: 0; }

@media (max-width: 1000px) {
  .pipeline-primer { width: calc(100% - 28px); }
  .pipeline-primer__canvas { min-width: 1400px; }
  .industry-panel { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .industry-list { grid-template-columns: 1fr; }
  .industry-list li,
  .industry-list li:nth-child(odd),
  .industry-list li:nth-child(even) { min-height: 92px; margin-right: 0; padding: 16px 0; }
  .industry-list strong { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  .output-marquee__track { animation: none; transform: none; }
}

/* V2.5 — compact editorial outputs and stronger visual associations */
.benefit-impact {
  min-height: 0;
}

.benefit-impact__copy {
  padding: clamp(68px, 7vw, 108px) 0 clamp(46px, 5vw, 76px);
}

.benefit-impact__metrics {
  margin-top: 0;
  padding: clamp(46px, 4vw, 68px) 0 clamp(72px, 7vw, 110px);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.benefit-impact__metrics h3 {
  max-width: 980px;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.benefit-impact__backdrop::before {
  top: 5%;
  width: min(50vw, 760px);
  opacity: .72;
}

.outputs {
  padding-bottom: clamp(88px, 9vw, 150px);
}

.output-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 78px) clamp(18px, 2vw, 34px);
  margin-top: clamp(52px, 6vw, 92px);
}

.output-gallery__item {
  min-width: 0;
}

.output-gallery__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #05080c;
  border-radius: 26% 10% 24% 9% / 15% 24% 12% 21%;
}

.output-gallery__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, .22));
}

.output-gallery__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.output-gallery__media--contain img {
  object-fit: contain;
  padding: 7%;
}

.output-gallery__item:hover .output-gallery__media img {
  transform: scale(1.025);
}

.output-gallery__copy {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.output-gallery__copy > span {
  color: #4aa9df;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.output-gallery__copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 300;
  line-height: 1.02;
}

.output-gallery__copy p {
  max-width: 38ch;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.45;
}

.product-tile--clothes {
  background: none;
}

.product-tile--clothes .product-tile__media {
  inset: 0;
}

.product-tile--clothes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.video-player__poster {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(1, 5, 9, .2), rgba(1, 5, 9, .7)),
    url("assets/kdm-hero-poster.jpg") center / cover no-repeat;
}

.connected-anatomy__pulse {
  display: none;
}

.connected-anatomy__node {
  min-width: clamp(150px, 12vw, 210px);
  background: rgba(5, 10, 15, .76);
  border-color: rgba(255, 255, 255, .26);
  backdrop-filter: blur(14px);
}

.connected-anatomy__node::after {
  width: clamp(58px, 6vw, 105px);
  background: linear-gradient(90deg, rgba(74, 169, 223, .25), #4aa9df);
  box-shadow: 0 0 12px rgba(74, 169, 223, .28);
}

.connected-anatomy__node--part { top: 29%; right: 17%; }
.connected-anatomy__node--material { top: 49%; right: 13%; }
.connected-anatomy__node--finish { right: 18%; bottom: 14%; }
.connected-anatomy__node--market { bottom: 13%; left: 17%; }
.connected-anatomy__node--variant { top: 51%; left: 16%; }

.connected-anatomy__node--part::after,
.connected-anatomy__node--material::after,
.connected-anatomy__node--finish::after {
  right: 100%;
  left: auto;
  background: linear-gradient(90deg, #4aa9df, rgba(74, 169, 223, .25));
}

.adopted--early {
  margin-top: clamp(54px, 6vw, 92px);
  text-align: center;
}

.adopted h3 {
  max-width: none;
  margin: 0 auto clamp(34px, 4vw, 58px);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.15;
}

.client-logos {
  max-width: 1160px;
  margin-inline: auto;
}

.pipeline-primer__rail--production {
  padding-top: 14px;
}

.pipeline-primer__rail--production::before {
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(3, 93, 146, .2), #4aa9df 50%, rgba(3, 93, 146, .2));
}

.pipeline-primer__rail--production i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  color: #035d92;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(74, 169, 223, .14);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.pipeline-primer__rail--production li:nth-child(3) i {
  color: #fff;
  background: #035d92;
  box-shadow: 0 0 0 10px rgba(74, 169, 223, .2), 0 10px 28px rgba(3, 93, 146, .22);
  transform: scale(1.12);
}

.pipeline-primer__rail--production span {
  margin-top: 16px;
  color: #12171d;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1000px) {
  .output-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .connected-anatomy__node--part { right: 8%; }
  .connected-anatomy__node--material { right: 5%; }
  .connected-anatomy__node--finish { right: 8%; }
  .connected-anatomy__node--variant { left: 7%; }
}

@media (max-width: 700px) {
  .benefit-impact__copy { padding-bottom: 36px; }
  .benefit-impact__metrics { padding-top: 36px; }
  .output-gallery { grid-template-columns: 1fr; gap: 46px; }
  .output-gallery__media { border-radius: 22% 8% 20% 7% / 12% 20% 10% 18%; }
  .output-gallery__copy h3 { font-size: 29px; }
  .connected-anatomy__node--part { top: 38%; right: 18px; }
  .connected-anatomy__node--material { top: 57%; right: auto; left: 18px; }
  .connected-anatomy__node--finish { right: 18px; bottom: 8%; }
  .pipeline-primer__rail--production { padding-top: 12px; }
  .pipeline-primer__rail--production i { width: 42px; height: 42px; }
  .pipeline-primer__rail--production::before { top: 33px; }
}

/* KDM orchestration map */
.pipeline-primer {
  width: min(calc(100vw - 56px), 1880px);
  padding: clamp(38px, 4vw, 68px);
  border-radius: 56px 56px 17% 56px / 56px 56px 74px 56px;
}

.pipeline-primer::before {
  inset: 31% -6% auto;
  height: 48%;
  border-color: rgba(3, 111, 174, .12);
  transform: rotate(-3deg);
}

.pipeline-primer__intro { margin-bottom: clamp(44px, 4.8vw, 76px); }
.pipeline-primer__intro h3 { max-width: 18ch; }
.pipeline-primer__intro h3 { word-spacing: .055em; }

.pipeline-orchestrator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(660px, 2.35fr) minmax(320px, 1.05fr);
  gap: clamp(16px, 1.5vw, 28px);
  align-items: stretch;
}

.pipeline-orchestrator::before,
.pipeline-orchestrator::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 50%;
  width: clamp(22px, 2.5vw, 44px);
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 169, 223, .28), #4aa9df);
  pointer-events: none;
}

.pipeline-orchestrator::before { left: calc(19% - 8px); }
.pipeline-orchestrator::after { right: calc(23% - 8px); transform: rotate(180deg); }

.pipeline-orchestrator__inputs,
.pipeline-orchestrator__outputs {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 2vw, 34px);
  border: 1px solid rgba(3, 111, 174, .12);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 45px rgba(11, 33, 48, .07);
}

.pipeline-orchestrator__inputs { border-radius: 42px 18px 42px 18px / 34px 28px 45px 26px; }
.pipeline-orchestrator__outputs { border-radius: 18px 46px 22px 44px / 28px 36px 26px 46px; }

.pipeline-orchestrator__chapter {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.pipeline-orchestrator__chapter > span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #036fae;
  box-shadow: 0 0 0 7px rgba(74, 169, 223, .13);
  font-size: 10px;
  font-weight: 650;
}

.pipeline-orchestrator__chapter small {
  display: block;
  color: #036fae;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pipeline-orchestrator__chapter h4 {
  margin: 3px 0 0;
  font-size: clamp(25px, 1.7vw, 32px);
  font-weight: 400;
  line-height: 1;
}

.pipeline-orchestrator__input-list { display: grid; gap: 12px; }

.pipeline-orchestrator__input-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  border-radius: 18px 25px 18px 24px / 22px 18px 25px 18px;
  color: #101820;
  background: rgba(239, 248, 252, .92);
}

.pipeline-orchestrator__input-list svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #0375b5;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pipeline-orchestrator__input-list strong,
.pipeline-orchestrator__input-list span { display: block; }
.pipeline-orchestrator__input-list strong { font-size: 15px; font-weight: 600; line-height: 1.15; }
.pipeline-orchestrator__input-list strong { word-spacing: .07em; }
.pipeline-orchestrator__input-list span {
  margin-top: 7px;
  color: rgba(12, 17, 24, .78);
  font-size: clamp(13px, .86vw, 15px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.pipeline-orchestrator__core {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: clamp(26px, 2.4vw, 42px);
  border-radius: 54px 28px 58px 30px / 40px 56px 34px 62px;
  color: #fff;
  background:
    radial-gradient(70% 90% at 50% 115%, rgba(21, 139, 199, .34), transparent 66%),
    radial-gradient(38% 46% at 10% 0%, rgba(74, 169, 223, .18), transparent 72%),
    #06131d;
  box-shadow: 0 26px 64px rgba(1, 15, 25, .24);
}

.pipeline-orchestrator__core::before {
  content: "";
  position: absolute;
  inset: 10% -10% -25%;
  opacity: .22;
  background: url("assets/kdm-fluid-field.svg") center / cover no-repeat;
  pointer-events: none;
}

.pipeline-orchestrator__core-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(210px, .72fr) minmax(240px, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: clamp(28px, 3vw, 46px);
}

.pipeline-orchestrator__mark {
  display: grid;
  width: 72px;
  height: 64px;
  place-items: center;
  border-radius: 46% 54% 57% 43% / 42% 48% 52% 58%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(74, 169, 223, .11);
}

.pipeline-orchestrator__mark img { display: block; width: 58px; height: auto; }
.pipeline-orchestrator__chapter--core { gap: 8px; margin: 0 0 7px; }
.pipeline-orchestrator__chapter--core > span { flex-basis: 24px; width: 24px; font-size: 8px; box-shadow: none; }
.pipeline-orchestrator__chapter--core small { color: #5bb8ea; }

.pipeline-orchestrator__core-head h4 {
  margin: 0;
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -.025em;
}

.pipeline-orchestrator__core-head > p {
  max-width: 36ch;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, .6);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
}

.pipeline-orchestrator__stages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-orchestrator__stages::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 7%;
  left: 7%;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 169, 223, .18), #4aa9df 45%, rgba(74, 169, 223, .22));
}

.pipeline-orchestrator__stages li {
  min-width: 0;
  min-height: 215px;
  padding: 18px 12px 14px;
  border-radius: 24px 18px 27px 19px / 20px 27px 18px 25px;
  color: #0c1118;
  background: #fff;
  text-align: center;
}

.pipeline-orchestrator__stages i {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  margin: -10px auto 22px;
  border: 1px solid #1283bd;
  border-radius: 50%;
  color: #036fae;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(74, 169, 223, .14);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.pipeline-orchestrator__stages strong {
  display: block;
  min-height: 38px;
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 600;
  line-height: 1.15;
  word-spacing: .07em;
}

.pipeline-orchestrator__stages img {
  display: block;
  width: min(92px, 78%);
  max-width: none;
  height: auto;
  margin: 9px auto 0;
  mix-blend-mode: normal;
}

.pipeline-orchestrator__stage-meta {
  display: block;
  margin-top: 18px;
  color: #036fae;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .035em;
}

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

.pipeline-orchestrator__output-grid article {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 24px 14px 22px 16px / 18px 24px 15px 25px;
  background: #07141e;
}

.pipeline-orchestrator__output-grid article:nth-child(2),
.pipeline-orchestrator__output-grid article:nth-child(3) { border-radius: 14px 25px 16px 22px / 25px 16px 23px 15px; }

.pipeline-orchestrator__output-grid article::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(180deg, transparent, rgba(1, 8, 13, .9));
}

.pipeline-orchestrator__output-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pipeline-orchestrator__output-grid strong {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  word-spacing: .07em;
}

.pipeline-lifecycle {
  position: relative;
  margin-top: clamp(30px, 3vw, 48px);
  padding: clamp(20px, 2vw, 30px) clamp(20px, 2.5vw, 40px);
  overflow: hidden;
  border-radius: 28px 38px 24px 42px / 34px 25px 40px 28px;
  background: linear-gradient(105deg, rgba(222, 241, 250, .88), rgba(243, 249, 251, .62));
}

.pipeline-lifecycle::before {
  content: "";
  position: absolute;
  inset: 48% -5% auto;
  height: 60%;
  border: 1px solid rgba(3, 111, 174, .14);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.pipeline-lifecycle__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 22px;
}

.pipeline-lifecycle__head span { color: #0c1118; font-size: clamp(16px, 1.25vw, 21px); font-weight: 550; }
.pipeline-lifecycle__head small { color: rgba(12, 17, 24, .52); font-size: 12px; }

.pipeline-lifecycle ol {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-lifecycle ol::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 7%;
  left: 7%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2e9bd0, #036fae 48%, #4aa9df);
}

.pipeline-lifecycle li { position: relative; text-align: center; }
.pipeline-lifecycle li i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  margin: 0 auto 13px;
  border: 5px solid rgba(74, 169, 223, .2);
  border-radius: 50%;
  color: #fff;
  background: #036fae;
  box-shadow: 0 0 0 4px #f4f9fb;
  font-size: 9px;
  font-style: normal;
  font-weight: 650;
}
.pipeline-lifecycle li span { color: #111820; font-size: 12px; font-weight: 550; word-spacing: .07em; }
.pipeline-primer__closing { margin-top: clamp(24px, 2.4vw, 38px); }

@media (prefers-reduced-motion: no-preference) {
  .pipeline-orchestrator__core::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(74, 169, 223, .08) 50%, transparent 65%);
    background-size: 220% 100%;
    animation: kdm-orchestration-flow 8s linear infinite;
    pointer-events: none;
  }
  @keyframes kdm-orchestration-flow { to { background-position: -220% 0; } }
}

@media (max-width: 1280px) {
  .pipeline-orchestrator { grid-template-columns: 210px minmax(570px, 1fr) 290px; }
  .pipeline-orchestrator__core-head { grid-template-columns: auto 1fr; }
  .pipeline-orchestrator__core-head > p { grid-column: 1 / -1; max-width: 58ch; margin: 0; }
  .pipeline-orchestrator__output-grid article { min-height: 135px; }
}

@media (max-width: 1000px) {
  .pipeline-primer { width: calc(100% - 28px); }
  .pipeline-orchestrator { grid-template-columns: 1fr; }
  .pipeline-orchestrator::before,
  .pipeline-orchestrator::after { display: none; }
  .pipeline-orchestrator__input-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pipeline-orchestrator__outputs { padding-bottom: 28px; }
  .pipeline-orchestrator__output-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pipeline-orchestrator__output-grid article { min-height: 170px; }
}

@media (max-width: 700px) {
  .pipeline-primer { padding: 34px 20px 40px; border-radius: 42px 42px 70px 42px; }
  .pipeline-primer__intro h3 { max-width: 12ch; font-size: 39px; }
  .pipeline-orchestrator__inputs,
  .pipeline-orchestrator__outputs,
  .pipeline-orchestrator__core { padding: 24px 18px; }
  .pipeline-orchestrator__input-list { grid-template-columns: 1fr; }
  .pipeline-orchestrator__input-list article { min-height: 76px; }
  .pipeline-orchestrator__core-head { grid-template-columns: 60px 1fr; }
  .pipeline-orchestrator__mark { width: 56px; height: 52px; }
  .pipeline-orchestrator__mark img { width: 46px; }
  .pipeline-orchestrator__core-head > p { grid-column: 1 / -1; }
  .pipeline-orchestrator__stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pipeline-orchestrator__stages::before { display: none; }
  .pipeline-orchestrator__stages li { min-height: 205px; }
  .pipeline-orchestrator__output-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pipeline-orchestrator__output-grid article { min-height: 165px; }
  .pipeline-lifecycle { padding: 24px 18px; }
  .pipeline-lifecycle__head { display: block; }
  .pipeline-lifecycle__head small { display: block; margin-top: 8px; }
  .pipeline-lifecycle ol { grid-template-columns: 1fr; gap: 0; padding-left: 7px; }
  .pipeline-lifecycle ol::before { top: 20px; bottom: 20px; left: 27px; width: 3px; height: auto; }
  .pipeline-lifecycle li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center; min-height: 63px; text-align: left; }
  .pipeline-lifecycle li i { margin: 0; }
  .pipeline-lifecycle li span { font-size: 14px; }
  .pipeline-primer__closing { text-align: left; }
}

/* Geometry system: clean UI containers, fluidity reserved for graphic fields. */
:root {
  --radius-control: 14px;
  --radius-card: 18px;
  --radius-panel: 28px;
}

.language-picker__trigger { border-radius: var(--radius-control); }
.language-picker__menu { border-radius: 16px; }
.language-picker__menu button { border-radius: 10px; }

/* The orchestration chapter is a full-bleed section, not a card inside the page. */
.pipeline-primer {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(42px, 4.5vw, 72px) max(clamp(28px, 6vw, 108px), calc((100vw - 1740px) / 2));
  border-radius: 0;
  box-shadow: none;
}

.pipeline-orchestrator__inputs,
.pipeline-orchestrator__outputs { border-radius: var(--radius-panel); }
.pipeline-orchestrator__input-list article { border-radius: var(--radius-card); }
.pipeline-orchestrator__core { border-radius: var(--radius-panel); }

.pipeline-orchestrator__mark {
  width: clamp(122px, 8vw, 150px);
  height: 64px;
  padding: 10px 12px;
  border-radius: 16px;
}
.pipeline-orchestrator__mark img { width: 100%; height: auto; }

.pipeline-orchestrator__stages li,
.pipeline-orchestrator__output-grid article,
.pipeline-orchestrator__output-grid article:nth-child(2),
.pipeline-orchestrator__output-grid article:nth-child(3) { border-radius: var(--radius-card); }
.pipeline-lifecycle { border-radius: 24px; }

.benefit-story__media--master figure:first-child,
.benefit-story__media--master figure:last-child,
.benefit-story__output--config,
.benefit-story__output--ar,
.benefit-story__output--cgi { border-radius: 24px; }

.process-story__visual { border-radius: 32px; }
.process-story__frame--outputs img,
.process-story__frame--outputs > i { border-radius: var(--radius-card); }

.product-strip .product-tile,
.product-tile:nth-child(even) { border-radius: 24px; }
.industry-panel { border-radius: 32px; }
.industry-list__icon { border-radius: 50%; }
.output-gallery__media { border-radius: 24px; }

@media (max-width: 1000px) {
  .pipeline-primer {
    width: 100vw;
    padding-inline: clamp(24px, 5vw, 48px);
  }
}

@media (max-width: 700px) {
  .pipeline-primer {
    width: 100vw;
    padding: 34px 20px 40px;
    border-radius: 0;
  }
  .pipeline-orchestrator__core-head { grid-template-columns: 112px minmax(0, 1fr); }
  .pipeline-orchestrator__mark { width: 108px; height: 52px; padding: 9px 10px; }
}
