:root {
  --bleu-1: #01113b;
  --bleu-2: #d9e7ff;
  --orange-1: #b83400;
  --orange-2: #ffb99d;
  --vert-1: #233807;
  --vert-2: #e7ffde;
  --noir: #202020;
  --gris: #f6f6f6;
  --gris-texte: color-mix(in srgb, var(--noir) 58%, transparent);
  --gris-bordure: color-mix(in srgb, var(--noir) 16%, transparent);
  --blanc: #ffffff;
  --fs-h1: clamp(2.92em, 2.05em + 1.65vw, 3.72em);
  --fs-h2: clamp(2.55em, 1.85em + 1.4vw, 3.35em);
  --fs-h3: clamp(2.05em, 1.5em + 0.95vw, 2.65em);
  --fs-h4: clamp(1.65em, 1.2em + 0.55vw, 2em);
  --fs-h5: clamp(1.35em, 1.06em + 0.32vw, 1.65em);
  --fs-h6: clamp(1.15em, 0.96em + 0.2vw, 1.35em);
  --fs-subtitle-lg: clamp(1.45em, 1em + 0.7vw, 1.8em);
  --fs-subtitle-md: clamp(1.28em, 0.96em + 0.5vw, 1.5em);
  --fs-subtitle-sm: clamp(1.14em, 0.9em + 0.34vw, 1.28em);
  --fs-subtitle-xs: clamp(1em, 0.9em + 0.18vw, 1.08em);
  --fs-body: clamp(1.12em, 0.95em + 0.28vw, 1.24em);
  --fs-home-kicker: clamp(1.95em, 1.5em + 0.75vw, 2.45em);
  --fs-home-title: clamp(2.3em, 1.8em + 0.9vw, 3.15em);
  --fs-home-subtitle: clamp(1.9em, 1.45em + 0.7vw, 2.5em);
  --fs-hero-h1: clamp(2.58em, 1.72em + 1.2vw, 3.28em);
  --fs-home-card-title: clamp(1.5em, 1.2em + 0.4vw, 1.95em);
  --fs-home-card-subtitle: clamp(1.35em, 1.1em + 0.35vw, 1.65em);
  --fs-home-body-lg: clamp(1.5em, 1.2em + 0.42vw, 1.86em);
  --fs-home-body-md: clamp(1.28em, 1.08em + 0.28vw, 1.52em);
  --fs-home-body-sm: clamp(1.12em, 0.98em + 0.18vw, 1.28em);
  --fs-home-cta: clamp(1em, 0.94em + 0.14vw, 1.08em);
  --content-width: 80%;
  --container-width: 1920px;
  --nav-height: 76px;
  /* Hauteur header dans le flux : min-height nav + padding vertical .header-inner (20+20) */
  --nav-bar-total-height: calc(var(--nav-height) + 40px);
  --nav-radius: 38px;
  --nav-border: rgba(32, 32, 32, 0.08);
  --nav-shadow: 0 12px 30px rgba(1, 17, 59, 0.05);
}

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

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("../font/Atkinson_Hyperlegible_Next/AtkinsonHyperlegibleNext-VariableFont_wght.d723933aa225.ttf")
    format("truetype");
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-width: 530px;
}

body {
  font-family: "Atkinson Hyperlegible Next", "Inter", sans-serif;
  background-color: var(--gris);
  color: var(--noir);
  line-height: 1.2;
  min-height: 100vh;
  overflow-x: hidden;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

p {
  font-size: var(--fs-home-body-md) !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: var(--nav-height);
  padding: 16px 52px;
  background: var(--gris);
  border-radius: 0;
  transition:
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header .header-inner .brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-header .header-inner .brand .brand-logo {
  display: block;
  width: auto;
  height: 34px;
  flex: 0 0 auto;
}

.site-header .header-inner .site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2vw, 42px);
  min-width: 0;
}

.site-header .header-inner .site-nav .site-nav__item {
  position: relative;
}

.site-header .header-inner .site-nav .site-nav__item--dropdown::after {
  content: "";
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(1, 17, 59, 0.12);
  border-left: 1px solid rgba(1, 17, 59, 0.12);
  background: var(--gris);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) rotate(45deg);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 2;
}

.site-header .header-inner .site-nav .site-nav__link {
  font-size: clamp(1rem, 0.8rem + 0.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--noir);
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-header .header-inner .site-nav .site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--noir);
  font-family: inherit;
  font-size: clamp(1rem, 0.8rem + 0.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-header .header-inner .site-nav .site-nav__item .site-nav__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--bleu-1);
  border-bottom: 1.5px solid var(--bleu-1);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(290px, 1.35fr) minmax(230px, 1fr);
  gap: 0;
  min-width: 650px;
  padding: 0;
  border: 1px solid rgba(1, 17, 59, 0.1);
  background: var(--gris);
  box-shadow: 0 24px 54px rgba(1, 17, 59, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1000;
}

.site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-group {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
}

.site-header
  .header-inner
  .site-nav
  .site-nav__item
  .site-nav__dropdown-group
  + .site-nav__dropdown-group {
  border-left: 1px solid rgba(1, 17, 59, 0.08);
}

.site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-label {
  margin-bottom: 14px;
  color: rgba(1, 17, 59, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-link {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(1, 17, 59, 0.06);
  color: var(--noir);
  font-size: 0.94rem;
  line-height: 1.1;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-header
  .header-inner
  .site-nav
  .site-nav__item
  .site-nav__dropdown-group
  .site-nav__dropdown-link:first-of-type {
  border-top: 0;
}

.site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-title {
  display: block;
  margin-bottom: 6px;
  color: var(--bleu-1);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.15;
}

.site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-text {
  display: block;
  color: rgba(32, 32, 32, 0.72);
  font-size: 0.84rem;
  line-height: 1.35;
}

.site-header
  .header-inner
  .site-nav
  .site-nav__item
  .site-nav__dropdown-link:hover
  .site-nav__dropdown-title,
.site-header
  .header-inner
  .site-nav
  .site-nav__item
  .site-nav__dropdown-link:focus-visible
  .site-nav__dropdown-title {
  color: var(--orange-1);
}

.site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
.site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
.site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
.site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link {
  color: var(--noir);
}

.site-header .header-inner .site-nav .site-nav__item:hover .site-nav__chevron,
.site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.site-header .header-inner .site-nav .site-nav__item:hover .site-nav__dropdown,
.site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header .header-inner .site-nav .site-nav__item--dropdown:hover::after,
.site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown:focus-within::after {
  opacity: 1;
  visibility: visible;
}

.site-header .header-inner .site-nav .site-nav__link:hover {
  color: var(--noir);
}

.site-header .header-inner .nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--orange-2);
  color: var(--orange-1);
  font-size: clamp(1rem, 0.82rem + 0.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  border: 0;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.08);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-header .header-inner .nav-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease,
    background-position 0.08s linear;
  pointer-events: none;
}

.site-header .header-inner .nav-cta::after {
  content: none;
}

.site-header .header-inner .nav-cta:hover,
.site-header .header-inner .nav-cta:focus-visible {
  background: var(--orange-1);
  color: var(--orange-2);
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.16);
  transform: translateY(-1px);
}

.site-header .header-inner .nav-cta:hover::before,
.site-header .header-inner .nav-cta:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-header .header-inner .nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.14);
}

.site-header .header-inner .nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--noir);
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-header .header-inner .nav-burger:hover,
.site-header .header-inner .nav-burger:focus-visible {
  background: transparent;
  color: var(--bleu-1);
}

.site-header .header-inner .nav-burger:focus-visible {
  outline: 2px solid var(--bleu-1);
  outline-offset: 3px;
}

.site-header .header-inner .nav-burger__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .header-inner .nav-burger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-nav-open .header-inner .nav-burger__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .header-inner .nav-burger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Research page: header on bleu-1, nav text bleu-2 */
body.page-research .site-header .header-inner {
  background: var(--bleu-1);
  box-shadow: 0 12px 30px rgba(1, 17, 59, 0.25);
}

body.page-research .site-header.is-at-top:not(.is-nav-open) .header-inner {
  background: transparent;
  box-shadow: none;
}

body.page-document-ai .site-header.is-at-top:not(.is-nav-open) .header-inner,
body.page-voice-ai .site-header.is-at-top:not(.is-nav-open) .header-inner,
body.page-agent-ai .site-header.is-at-top:not(.is-nav-open) .header-inner,
body.page-edge-ai .site-header.is-at-top:not(.is-nav-open) .header-inner {
  background: transparent;
  box-shadow: none;
}

body.page-research .site-header .header-inner .brand .brand-logo {
  filter: brightness(0) invert(1);
}

body.page-research .site-header .header-inner .site-nav .site-nav__link {
  color: var(--bleu-2);
}

body.page-research .site-header .header-inner .site-nav .site-nav__trigger {
  color: var(--bleu-2);
}

body.page-research .site-header .header-inner .site-nav .site-nav__item .site-nav__chevron {
  border-right-color: var(--bleu-2);
  border-bottom-color: var(--bleu-2);
}

body.page-research
  .site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown::after {
  background: var(--bleu-1);
  border-top-color: rgba(217, 231, 255, 0.22);
  border-left-color: rgba(217, 231, 255, 0.22);
}

body.page-research .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
body.page-research
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
body.page-research .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
body.page-research
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link {
  color: var(--bleu-2);
}

body.page-research .site-header .header-inner .site-nav .site-nav__link:hover {
  color: var(--bleu-2);
}

/* Document AI + Voice AI + Agent AI + Edge AI + Alpha models: header sur bleu-1 (même logique que Research) */
body.page-document-ai .site-header .header-inner,
body.page-voice-ai .site-header .header-inner,
body.page-agent-ai .site-header .header-inner,
body.page-edge-ai .site-header .header-inner,
body.page-alpha-model .site-header .header-inner {
  background: var(--bleu-1);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--bleu-1) 25%, transparent);
}

body.page-document-ai .site-header .header-inner .brand .brand-logo,
body.page-voice-ai .site-header .header-inner .brand .brand-logo,
body.page-agent-ai .site-header .header-inner .brand .brand-logo,
body.page-edge-ai .site-header .header-inner .brand .brand-logo,
body.page-alpha-model .site-header .header-inner .brand .brand-logo {
  filter: brightness(0) invert(1);
}

body.page-document-ai .site-header .header-inner .site-nav .site-nav__link,
body.page-voice-ai .site-header .header-inner .site-nav .site-nav__link,
body.page-agent-ai .site-header .header-inner .site-nav .site-nav__link,
body.page-edge-ai .site-header .header-inner .site-nav .site-nav__link,
body.page-alpha-model .site-header .header-inner .site-nav .site-nav__link {
  color: var(--bleu-2);
}

body.page-document-ai .site-header .header-inner .site-nav .site-nav__trigger,
body.page-voice-ai .site-header .header-inner .site-nav .site-nav__trigger,
body.page-agent-ai .site-header .header-inner .site-nav .site-nav__trigger,
body.page-edge-ai .site-header .header-inner .site-nav .site-nav__trigger,
body.page-alpha-model .site-header .header-inner .site-nav .site-nav__trigger {
  color: var(--bleu-2);
}

body.page-document-ai .site-header .header-inner .site-nav .site-nav__item .site-nav__chevron,
body.page-voice-ai .site-header .header-inner .site-nav .site-nav__item .site-nav__chevron,
body.page-agent-ai .site-header .header-inner .site-nav .site-nav__item .site-nav__chevron,
body.page-edge-ai .site-header .header-inner .site-nav .site-nav__item .site-nav__chevron,
body.page-alpha-model .site-header .header-inner .site-nav .site-nav__item .site-nav__chevron {
  border-right-color: var(--bleu-2);
  border-bottom-color: var(--bleu-2);
}

body.page-document-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown::after,
body.page-voice-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown::after,
body.page-agent-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown::after,
body.page-edge-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown::after,
body.page-alpha-model
  .site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown::after {
  background: var(--bleu-1);
  border-top-color: color-mix(in srgb, var(--bleu-2) 22%, transparent);
  border-left-color: color-mix(in srgb, var(--bleu-2) 22%, transparent);
}

body.page-document-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
body.page-document-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
body.page-document-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
body.page-document-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link,
body.page-voice-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
body.page-voice-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
body.page-voice-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
body.page-voice-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link,
body.page-agent-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
body.page-agent-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
body.page-agent-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
body.page-agent-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link,
body.page-edge-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
body.page-edge-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
body.page-edge-ai .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
body.page-edge-ai
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link,
body.page-alpha-model .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
body.page-alpha-model
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
body.page-alpha-model .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
body.page-alpha-model
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link {
  color: var(--bleu-2);
}

body.page-document-ai .site-header .header-inner .site-nav .site-nav__link:hover,
body.page-voice-ai .site-header .header-inner .site-nav .site-nav__link:hover,
body.page-agent-ai .site-header .header-inner .site-nav .site-nav__link:hover,
body.page-edge-ai .site-header .header-inner .site-nav .site-nav__link:hover,
body.page-alpha-model .site-header .header-inner .site-nav .site-nav__link:hover {
  color: var(--bleu-2);
}

/* Contact page: header aligné sur le hero (bleu-1) */
body.page-contact .site-header .header-inner {
  background: var(--bleu-1);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--bleu-1) 35%, transparent);
}

body.page-contact .site-header .header-inner .brand .brand-logo {
  filter: brightness(0) invert(1);
}

body.page-contact .site-header .header-inner .site-nav .site-nav__link {
  color: var(--bleu-2);
}

body.page-contact .site-header .header-inner .site-nav .site-nav__trigger {
  color: var(--bleu-2);
}

body.page-contact .site-header .header-inner .site-nav .site-nav__item .site-nav__chevron {
  border-right-color: var(--bleu-2);
  border-bottom-color: var(--bleu-2);
}

body.page-contact
  .site-header
  .header-inner
  .site-nav
  .site-nav__item--dropdown::after {
  background: var(--bleu-1);
  border-top-color: color-mix(in srgb, var(--bleu-2) 22%, transparent);
  border-left-color: color-mix(in srgb, var(--bleu-2) 22%, transparent);
}

body.page-contact .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__trigger,
body.page-contact
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__trigger,
body.page-contact .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__link,
body.page-contact
  .site-header
  .header-inner
  .site-nav
  .site-nav__item:focus-within
  .site-nav__link {
  color: var(--bleu-2);
}

body.page-contact .site-header .header-inner .site-nav .site-nav__link:hover {
  color: var(--bleu-2);
}

/* Contact hero */
.site-main .contact-page .contact-page__section--hero {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: calc(100vh - var(--nav-bar-total-height));
  min-height: calc(100dvh - var(--nav-bar-total-height));
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 8vh, 88px);
  background: var(--bleu-1);
  color: var(--bleu-2);
}

.site-main .contact-page .contact-page__hero-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(62vh, 560px);
  perspective: 520px;
  perspective-origin: 50% 100%;
  pointer-events: none;
  z-index: 0;
}

.site-main .contact-page .contact-page__hero-grid {
  position: absolute;
  left: -18%;
  right: -18%;
  top: 0;
  bottom: -45%;
  transform-origin: 50% 0%;
  transform: rotateX(66deg);
  background-image:
    linear-gradient(
      to right,
      color-mix(in srgb, var(--bleu-2) 20%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--bleu-2) 16%, transparent) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(
    to top,
    color-mix(in srgb, var(--noir) 92%, transparent) 0%,
    transparent 72%
  );
  mask-image: linear-gradient(
    to top,
    color-mix(in srgb, var(--noir) 92%, transparent) 0%,
    transparent 72%
  );
}

.site-main .contact-page .contact-page__container--hero {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(40px, 5vw, 72px);
}

.site-main .contact-page .contact-page__hero-title {
  margin: 0 0 clamp(18px, 2.5vw, 28px);
  font-size: clamp(1.98rem, 1.32rem + 1.4vw, 3.05rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--bleu-2);
  text-align: center;
}

.site-main .contact-page .contact-page__hero-lead {
  margin: auto;
  max-width: 45ch;
  font-size: clamp(1.05rem, 0.96rem + 0.22vw, 1.22rem) !important;
  font-weight: 400;
  line-height: 1.55 !important;
  color: color-mix(in srgb, var(--bleu-2) 92%, transparent) !important;
  text-align: center;
}

.site-main .contact-page .contact-page__hero-columns {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  align-items: start;
  gap: clamp(32px, 4.5vw, 64px);
  width: 100%;
}

.site-main .contact-page .contact-page__hero-aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
  padding-inline-end: clamp(24px, 3.2vw, 44px);
  border-inline-end: 1px solid color-mix(in srgb, var(--bleu-2) 26%, transparent);
}

.site-main .contact-page .contact-page__hero-aside-block {
  padding-block-end: clamp(22px, 3vw, 30px);
  border-block-end: 1px solid color-mix(in srgb, var(--bleu-2) 18%, transparent);
}

.site-main .contact-page .contact-page__hero-aside-block:last-child {
  padding-block-end: 0;
  border-block-end: 0;
}

.site-main .contact-page .contact-page__hero-aside-block-heading {
  margin: 0 0 clamp(10px, 1.5vw, 14px);
  font-size: clamp(1.04rem, 0.94rem + 0.32vw, 1.24rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--bleu-2);
}

.site-main .contact-page .contact-page__hero-aside-block-text {
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  max-width: 52ch;
  font-size: clamp(0.82rem, 0.78rem + 0.1vw, 0.9rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--bleu-2) 88%, transparent);
}

.site-main .contact-page .contact-page__hero-aside-block-text:last-child {
  margin-bottom: 0;
}

.site-main .contact-page .contact-page__hero-aside-block-list {
  margin: clamp(6px, 1vw, 10px) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-main .contact-page .contact-page__hero-aside-block-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35em;
  row-gap: 0.15em;
}

.site-main .contact-page .contact-page__hero-aside-link {
  margin-left: clamp(8px, 1.1vw, 14px);
  font-size: clamp(0.98rem, 0.9rem + 0.24vw, 1.12rem);
  color: var(--bleu-2);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.site-main .contact-page .contact-page__hero-aside-link:hover {
  color: color-mix(in srgb, var(--bleu-2) 82%, var(--gris) 18%);
}

.site-main .contact-page .contact-page__hero-aside-link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bleu-2) 55%, transparent);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-main .contact-page .contact-page__hero-aside-link-desc {
  font-size: clamp(0.78rem, 0.74rem + 0.08vw, 0.85rem);
  color: color-mix(in srgb, var(--bleu-2) 72%, transparent);
}

.site-main .contact-page .contact-page__hero-form-wrap {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  padding-inline-start: clamp(8px, 1.2vw, 16px);
}

.site-main .contact-page .contact-page__hero-form-title {
  margin-bottom: 24px;
}
.site-main .contact-page .contact-page__hero-aside-title {
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-2) 26%, transparent);
  padding-bottom: 12px;
}

.site-main .contact-page .contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.site-main .contact-page .contact-page__name-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 20px);
  width: 100%;
}

@media (max-width: 520px) {
  .site-main .contact-page .contact-page__name-row {
    grid-template-columns: 1fr;
  }
}

.site-main .contact-page .contact-page__input,
.site-main .contact-page .contact-page__textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-2) 48%, transparent);
  padding: 12px 8px 10px 2px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--bleu-2);
  background: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-main .contact-page .contact-page__input::placeholder,
.site-main .contact-page .contact-page__textarea::placeholder {
  color: color-mix(in srgb, var(--bleu-2) 40%, transparent);
}

.site-main .contact-page .contact-page__textarea {
  min-height: 148px;
  resize: vertical;
}

.site-main .contact-page .contact-page__input:focus-visible,
.site-main .contact-page .contact-page__textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--bleu-2);
}

.site-main .contact-page .contact-page__input:-webkit-autofill,
.site-main .contact-page .contact-page__input:-webkit-autofill:hover,
.site-main .contact-page .contact-page__input:-webkit-autofill:focus,
.site-main .contact-page .contact-page__textarea:-webkit-autofill,
.site-main .contact-page .contact-page__textarea:-webkit-autofill:hover,
.site-main .contact-page .contact-page__textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--bleu-2);
  caret-color: var(--bleu-2);
  transition: background-color 99999s ease-out;
  box-shadow: 0 0 0 1000px var(--bleu-1) inset;
}

.site-main .contact-page .contact-page__form-actions {
  display: flex;
  justify-content: right;
  margin-top: 6px;
}

.site-main .contact-page .contact-page__submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--bleu-2);
  color: var(--bleu-1);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--bleu-1) 10%, transparent);
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.site-main .contact-page .contact-page__submit::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    color-mix(in srgb, var(--bleu-1) 18%, transparent) 0%,
    color-mix(in srgb, var(--bleu-1) 8%, transparent) 20%,
    transparent 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
  z-index: 0;
}

.site-main .contact-page .contact-page__submit::after {
  content: none;
}

.site-main .contact-page .contact-page__submit:hover,
.site-main .contact-page .contact-page__submit:focus-visible {
  background: color-mix(in srgb, var(--bleu-2) 78%, var(--gris) 22%);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--bleu-1) 16%, transparent);
  transform: translateY(-1px);
}

.site-main .contact-page .contact-page__submit:hover::before,
.site-main .contact-page .contact-page__submit:focus-visible::before {
  opacity: 0.82;
  filter: blur(9px);
}

.site-main .contact-page .contact-page__submit:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bleu-1) 35%, transparent);
  outline-offset: 3px;
}

.site-main .contact-page .contact-page__submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--bleu-1) 10%, transparent);
}

@media (max-width: 900px) {
  .site-main .contact-page .contact-page__container--hero {
    gap: 40px;
  }

  .site-main .contact-page .contact-page__hero-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-main .contact-page .contact-page__hero-aside {
    border-inline-end: none;
    padding-inline-end: 0;
    padding-block-end: clamp(28px, 4vw, 40px);
    border-block-end: 1px solid color-mix(in srgb, var(--bleu-2) 22%, transparent);
  }

  .site-main .contact-page .contact-page__hero-aside-block-text {
    max-width: none;
  }

  .site-main .contact-page .contact-page__hero-form-wrap {
    padding-inline-start: 0;
    justify-self: stretch;
    max-width: none;
  }

  .site-main .contact-page .contact-page__hero-lead {
    max-width: none;
  }

  .site-main .contact-page .contact-page__partners-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-main .contact-page .contact-page__partners-copy {
    align-items: flex-start;
    text-align: left;
  }

  .site-main .contact-page .contact-page__partners-lead {
    max-width: none;
  }

  .site-main .contact-page .contact-page__four-pieces-art {
    margin-left: 0;
  }

  .site-main .contact-page .contact-page__partners-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Contact — Business partners */
.site-main .contact-page .contact-page__section--buisness_partners {
  padding: 88px 0 0;
  background: var(--gris);
  color: var(--noir);
}

.site-main .contact-page .contact-page__container--partners {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 11vw, 30px);
}

.site-main .contact-page .contact-page__partners-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(36px, 5vw, 56px);
}

.site-main .contact-page .contact-page__partners-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-main .contact-page .contact-page__four-pieces-art {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-right: clamp(12px, 2vw, 28px);
}

.site-main .contact-page .contact-page__partners-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  text-align: right;
}

.site-main .contact-page .contact-page__partners-title {
  margin: 0;
  color: var(--bleu-1);
  font-size: clamp(1.85rem, 1.35rem + 1.1vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.site-main .contact-page .contact-page__partners-lead {
  margin: 0 !important;
  max-width: 52ch;
  font-size: clamp(1.05rem, 0.96rem + 0.22vw, 1.18rem) !important;
  line-height: 1.55 !important;
  color: var(--noir) !important;
}

.site-main .contact-page .contact-page__partners-why-heading {
  margin: 0 0 clamp(48px, 6.5vw, 72px);
  color: var(--bleu-1);
  font-size: clamp(1.65rem, 1.2rem + 0.95vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.site-main .contact-page .contact-page__partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.site-main .contact-page .contact-page__partners-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.site-main .contact-page .contact-page__partners-card-icon {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.site-main .contact-page .contact-page__partners-card-rule {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--bleu-1) 22%, transparent);
}

.site-main .contact-page .contact-page__partners-card-title {
  margin: 0;
  color: var(--bleu-1);
  font-size: clamp(1.12rem, 1rem + 0.35vw, 1.28rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.site-main .contact-page .contact-page__partners-card-text {
  margin: 0 !important;
  font-size: clamp(0.98rem, 0.92rem + 0.14vw, 1.06rem) !important;
  line-height: 1.52 !important;
  color: var(--noir) !important;
}

.site-main .contact-page .contact-page__partners-cta {
  margin: 0;
  text-align: center;
}

.site-main .contact-page .contact-page__partners-cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 42px;
  border-radius: 999px;
  border: 0;
  background: var(--bleu-1);
  color: var(--gris);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--bleu-1) 22%, transparent);
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.site-main .contact-page .contact-page__partners-cta-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    color-mix(in srgb, var(--bleu-2) 42%, transparent) 0%,
    color-mix(in srgb, var(--bleu-2) 18%, transparent) 20%,
    color-mix(in srgb, var(--bleu-2) 0%, transparent) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
  z-index: 0;
}

.site-main .contact-page .contact-page__partners-cta-btn::after {
  content: none;
}

.site-main .contact-page .contact-page__partners-cta-btn:hover,
.site-main .contact-page .contact-page__partners-cta-btn:focus-visible {
  background: color-mix(in srgb, var(--bleu-1) 88%, var(--noir) 12%);
  color: var(--gris);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--bleu-1) 28%, transparent);
}

.site-main .contact-page .contact-page__partners-cta-btn:hover::before,
.site-main .contact-page .contact-page__partners-cta-btn:focus-visible::before {
  opacity: 0.82;
  filter: blur(9px);
}

.site-main .contact-page .contact-page__partners-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--bleu-1) 22%, transparent);
}

.site-main .contact-page .contact-page__partners-cta-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bleu-1) 45%, transparent);
  outline-offset: 3px;
}

.site-main
  .contact-page
  .contact-page__section--buisness_partners
  .home-page__pieces-svg {
  overflow: visible;
}

.site-main
  .contact-page
  .contact-page__section--buisness_partners
  .home-page__pieces-svg
  .piece-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 920ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 280ms ease;
}

.site-main
  .contact-page
  .contact-page__section--buisness_partners
  .home-page__pieces-svg.is-piece-active
  .piece-dot {
  opacity: 1;
}

.site-main
  .contact-page
  .contact-page__section--buisness_partners
  .home-page__pieces-svg
  .piece-dot.is-active-piece-dot {
  opacity: 1;
  transform: translate(var(--burst-x, 0px), var(--burst-y, 0px));
}

.site-main
  .contact-page
  .contact-page__section--buisness_partners
  .home-page__pieces-svg
  .piece-cursor-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--bleu-1);
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.site-main
  .contact-page
  .contact-page__section--buisness_partners
  .home-page__pieces-svg.is-piece-active
  .piece-cursor-label {
  opacity: 1;
  transform: scale(1.03);
}

.site-main
  .contact-page
  .contact-page__section--buisness_partners
  .home-page__pieces-svg
  .piece-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

/* Contact + Document AI + Agent AI + Edge AI + AlphaOCR + AlphaASR — Q&A (accordéon) */
.site-main .contact-page .contact-page__section--qa,
.site-main .document_ai-page .contact-page__section--qa,
.site-main .agent_ai-page .contact-page__section--qa,
.site-main .edge_ai-page .contact-page__section--qa {
  padding: 88px 0 100px;
  background: var(--gris);
  color: var(--bleu-1);
}

.site-main .alpha-ocr-page .contact-page__section--qa,
.site-main .alpha-asr-page .contact-page__section--qa {
  padding: 88px 0 100px;
  background: var(--gris);
  color: var(--bleu-1);
}

.site-main .contact-page .contact-page__container--qa,
.site-main .document_ai-page .contact-page__container--qa,
.site-main .agent_ai-page .contact-page__container--qa,
.site-main .edge_ai-page .contact-page__container--qa,
.site-main .alpha-ocr-page .contact-page__container--qa,
.site-main .alpha-asr-page .contact-page__container--qa {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
}

.site-main .contact-page .contact-page__qa-title,
.site-main .document_ai-page .contact-page__qa-title,
.site-main .agent_ai-page .contact-page__qa-title,
.site-main .edge_ai-page .contact-page__qa-title,
.site-main .alpha-ocr-page .contact-page__qa-title,
.site-main .alpha-asr-page .contact-page__qa-title {
  margin: 0 0 clamp(36px, 5vw, 52px);
  font-size: clamp(1.85rem, 1.35rem + 1.1vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--bleu-1);
}

.site-main .contact-page .contact-page__faq,
.site-main .document_ai-page .contact-page__faq,
.site-main .agent_ai-page .contact-page__faq,
.site-main .edge_ai-page .contact-page__faq,
.site-main .alpha-ocr-page .contact-page__faq,
.site-main .alpha-asr-page .contact-page__faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid color-mix(in srgb, var(--bleu-1) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-1) 14%, transparent);
}

.site-main .contact-page .contact-page__faq-item,
.site-main .document_ai-page .contact-page__faq-item,
.site-main .agent_ai-page .contact-page__faq-item,
.site-main .edge_ai-page .contact-page__faq-item,
.site-main .alpha-ocr-page .contact-page__faq-item,
.site-main .alpha-asr-page .contact-page__faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-1) 12%, transparent);
}

.site-main .contact-page .contact-page__faq-item:last-child,
.site-main .document_ai-page .contact-page__faq-item:last-child,
.site-main .agent_ai-page .contact-page__faq-item:last-child,
.site-main .edge_ai-page .contact-page__faq-item:last-child,
.site-main .alpha-ocr-page .contact-page__faq-item:last-child,
.site-main .alpha-asr-page .contact-page__faq-item:last-child {
  border-bottom: 0;
}

.site-main .contact-page .contact-page__faq-trigger,
.site-main .document_ai-page .contact-page__faq-trigger,
.site-main .agent_ai-page .contact-page__faq-trigger,
.site-main .edge_ai-page .contact-page__faq-trigger,
.site-main .alpha-ocr-page .contact-page__faq-trigger,
.site-main .alpha-asr-page .contact-page__faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 2.8vw, 26px) clamp(4px, 1vw, 8px);
  margin: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--bleu-1);
  border-radius: 10px;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-radius 0.22s ease;
}

.site-main .contact-page .contact-page__faq-trigger:hover,
.site-main .document_ai-page .contact-page__faq-trigger:hover,
.site-main .agent_ai-page .contact-page__faq-trigger:hover,
.site-main .edge_ai-page .contact-page__faq-trigger:hover,
.site-main .alpha-ocr-page .contact-page__faq-trigger:hover,
.site-main .alpha-asr-page .contact-page__faq-trigger:hover {
  background: color-mix(in srgb, var(--bleu-1) 6%, transparent);
  border-radius: 0;
}

.site-main .contact-page .contact-page__faq-item.is-open .contact-page__faq-trigger,
.site-main .document_ai-page .contact-page__faq-item.is-open .contact-page__faq-trigger,
.site-main .agent_ai-page .contact-page__faq-item.is-open .contact-page__faq-trigger,
.site-main .edge_ai-page .contact-page__faq-item.is-open .contact-page__faq-trigger,
.site-main .alpha-ocr-page .contact-page__faq-item.is-open .contact-page__faq-trigger,
.site-main .alpha-asr-page .contact-page__faq-item.is-open .contact-page__faq-trigger {
  background: transparent;
}

.site-main .contact-page .contact-page__faq-item.is-open .contact-page__faq-trigger:hover,
.site-main .document_ai-page .contact-page__faq-item.is-open .contact-page__faq-trigger:hover,
.site-main .agent_ai-page .contact-page__faq-item.is-open .contact-page__faq-trigger:hover,
.site-main .edge_ai-page .contact-page__faq-item.is-open .contact-page__faq-trigger:hover,
.site-main .alpha-ocr-page .contact-page__faq-item.is-open .contact-page__faq-trigger:hover,
.site-main .alpha-asr-page .contact-page__faq-item.is-open .contact-page__faq-trigger:hover {
  background: color-mix(in srgb, var(--bleu-1) 6%, transparent);
  border-radius: 0;
}

.site-main .contact-page .contact-page__faq-trigger:focus-visible,
.site-main .document_ai-page .contact-page__faq-trigger:focus-visible,
.site-main .agent_ai-page .contact-page__faq-trigger:focus-visible,
.site-main .edge_ai-page .contact-page__faq-trigger:focus-visible,
.site-main .alpha-ocr-page .contact-page__faq-trigger:focus-visible,
.site-main .alpha-asr-page .contact-page__faq-trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bleu-1) 45%, transparent);
  outline-offset: 3px;
}

.site-main .contact-page .contact-page__faq-question,
.site-main .document_ai-page .contact-page__faq-question,
.site-main .agent_ai-page .contact-page__faq-question,
.site-main .edge_ai-page .contact-page__faq-question,
.site-main .alpha-ocr-page .contact-page__faq-question,
.site-main .alpha-asr-page .contact-page__faq-question {
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(1.05rem, 0.95rem + 0.28vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.site-main .contact-page .contact-page__faq-chevron,
.site-main .document_ai-page .contact-page__faq-chevron,
.site-main .agent_ai-page .contact-page__faq-chevron,
.site-main .edge_ai-page .contact-page__faq-chevron,
.site-main .alpha-ocr-page .contact-page__faq-chevron,
.site-main .alpha-asr-page .contact-page__faq-chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--bleu-1);
  border-bottom: 1.5px solid var(--bleu-1);
  transform: translateX(-5px) rotate(45deg) translateY(-2px);
  transform-origin: 50% 50%;
  transition: transform 0.28s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.site-main .contact-page .contact-page__faq-item.is-open .contact-page__faq-chevron,
.site-main .document_ai-page .contact-page__faq-item.is-open .contact-page__faq-chevron,
.site-main .agent_ai-page .contact-page__faq-item.is-open .contact-page__faq-chevron,
.site-main .edge_ai-page .contact-page__faq-item.is-open .contact-page__faq-chevron,
.site-main .alpha-ocr-page .contact-page__faq-item.is-open .contact-page__faq-chevron,
.site-main .alpha-asr-page .contact-page__faq-item.is-open .contact-page__faq-chevron {
  transform: translateX(-5px) rotate(-135deg) translateY(2px);
}

.site-main .contact-page .contact-page__faq-panel,
.site-main .document_ai-page .contact-page__faq-panel,
.site-main .agent_ai-page .contact-page__faq-panel,
.site-main .edge_ai-page .contact-page__faq-panel,
.site-main .alpha-ocr-page .contact-page__faq-panel,
.site-main .alpha-asr-page .contact-page__faq-panel {
  box-sizing: border-box;
  padding: 0 clamp(4px, 1vw, 8px);
}

.site-main .contact-page .contact-page__faq-panel[hidden],
.site-main .document_ai-page .contact-page__faq-panel[hidden],
.site-main .agent_ai-page .contact-page__faq-panel[hidden],
.site-main .edge_ai-page .contact-page__faq-panel[hidden],
.site-main .alpha-ocr-page .contact-page__faq-panel[hidden],
.site-main .alpha-asr-page .contact-page__faq-panel[hidden] {
  display: none;
}

.site-main .contact-page .contact-page__faq-answer,
.site-main .document_ai-page .contact-page__faq-answer,
.site-main .agent_ai-page .contact-page__faq-answer,
.site-main .edge_ai-page .contact-page__faq-answer,
.site-main .alpha-ocr-page .contact-page__faq-answer,
.site-main .alpha-asr-page .contact-page__faq-answer {
  max-width: 72ch;
  padding-top: 4px;
  padding-bottom: clamp(22px, 3vw, 28px);
}

.site-main .contact-page .contact-page__faq-answer p,
.site-main .document_ai-page .contact-page__faq-answer p,
.site-main .agent_ai-page .contact-page__faq-answer p,
.site-main .edge_ai-page .contact-page__faq-answer p,
.site-main .alpha-ocr-page .contact-page__faq-answer p,
.site-main .alpha-asr-page .contact-page__faq-answer p {
  margin: 0 !important;
  font-size: clamp(0.98rem, 0.92rem + 0.16vw, 1.08rem) !important;
  font-weight: 400;
  line-height: 1.65 !important;
  color: color-mix(in srgb, var(--bleu-1) 78%, var(--noir) 22%) !important;
}

@media (max-width: 600px) {
  .site-main .contact-page .contact-page__faq-trigger,
  .site-main .document_ai-page .contact-page__faq-trigger,
  .site-main .agent_ai-page .contact-page__faq-trigger,
  .site-main .edge_ai-page .contact-page__faq-trigger,
  .site-main .alpha-ocr-page .contact-page__faq-trigger,
  .site-main .alpha-asr-page .contact-page__faq-trigger {
    align-items: flex-start;
  }

  .site-main .contact-page .contact-page__faq-chevron,
  .site-main .document_ai-page .contact-page__faq-chevron,
  .site-main .agent_ai-page .contact-page__faq-chevron,
  .site-main .edge_ai-page .contact-page__faq-chevron,
  .site-main .alpha-ocr-page .contact-page__faq-chevron,
  .site-main .alpha-asr-page .contact-page__faq-chevron {
    margin-top: 6px;
  }
}

body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero.research-page__section--hero {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-bar-total-height));
  min-height: 102vh;
  min-height: 102dvh;
  background: var(--bleu-1);
  color: var(--bleu-2);
}

body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero.research-page__section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(1, 17, 59, 0.72);
  pointer-events: none;
}

body.page-research
  .site-main
  .research-page.home-page
  .research-page__hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero.research-page__section--hero
  .home-page__container--hero {
  position: relative;
  z-index: 2;
  padding: 31vh 0 0 0;
}

body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero
  .home-page__hero-title,
body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-strong,
body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-soft {
  color: var(--bleu-2);
}

body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero
  .home-page__hero-title-soft {
  white-space: normal;
  max-width: 22ch;
}

body.page-research
  .site-main
  .research-page.home-page
  .home-page__section--hero
  .home-page__hero-text {
  color: rgba(217, 231, 255, 0.92);
}

body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero.agent_ai-page__section--hero,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero.edge_ai-page__section--hero {
  box-sizing: border-box;
  margin-top: calc(-1 * var(--nav-bar-total-height));
  min-height: 102vh;
  min-height: 102dvh;
  background-color: var(--bleu-1);
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--bleu-1) 82%, transparent),
      color-mix(in srgb, var(--bleu-1) 90%, transparent)
    ),
    url("../img/uc_doc.820e98a62166.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--bleu-2);
}

body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero {
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--bleu-1) 82%, transparent),
      color-mix(in srgb, var(--bleu-1) 90%, transparent)
    ),
    url("../img/uc_doc.820e98a62166.jpg");
}

body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero {
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--bleu-1) 82%, transparent),
      color-mix(in srgb, var(--bleu-1) 90%, transparent)
    ),
    url("../img/uc_voice.9afd4de3e0e4.jpg");
}

body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero.agent_ai-page__section--hero {
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--bleu-1) 82%, transparent),
      color-mix(in srgb, var(--bleu-1) 90%, transparent)
    ),
    url("../img/uc_agent.c09232654a3b.jpg");
}

body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero.edge_ai-page__section--hero {
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--bleu-1) 82%, transparent),
      color-mix(in srgb, var(--bleu-1) 90%, transparent)
    ),
    url("../img/uc_edge.96d698d063b3.png");
}

/* Solutions — hero : grille une colonne, texte et CTA centrés */
body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__container--hero,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__container--hero,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero.agent_ai-page__section--hero
  .home-page__container--hero,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero.edge_ai-page__section--hero
  .home-page__container--hero {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  padding: 31vh 0 0 0;
}

body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-content,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-content,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero.agent_ai-page__section--hero
  .home-page__hero-content,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero.edge_ai-page__section--hero
  .home-page__hero-content {
  align-items: center;
  text-align: center;
}

body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-copy,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-copy,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero.agent_ai-page__section--hero
  .home-page__hero-copy,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero.edge_ai-page__section--hero
  .home-page__hero-copy,
body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-heading,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-heading,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero.agent_ai-page__section--hero
  .home-page__hero-heading,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero.edge_ai-page__section--hero
  .home-page__hero-heading {
  align-items: center;
}

body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-actions,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero.document_ai-page__section--hero
  .home-page__hero-actions,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero.agent_ai-page__section--hero
  .home-page__hero-actions,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero.edge_ai-page__section--hero
  .home-page__hero-actions {
  justify-content: center;
}

body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title,
body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-strong,
body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-soft,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-strong,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-soft,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-strong,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-soft,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-strong,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-soft {
  color: var(--bleu-2);
}

body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-soft,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-soft,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-soft,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-soft {
  white-space: normal;
  max-width: min(36ch, 100%);
}

/* Voice AI + Agent AI + Edge AI — hero : deux h1 (rendu proche de strong / soft Document AI) */
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-heading
  .home-page__hero-title:first-of-type,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-heading
  .home-page__hero-title:first-of-type,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-heading
  .home-page__hero-title:first-of-type {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-heading
  .home-page__hero-title + .home-page__hero-title,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-heading
  .home-page__hero-title + .home-page__hero-title,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-heading
  .home-page__hero-title + .home-page__hero-title {
  display: block;
  font-weight: 400;
  white-space: normal;
  max-width: min(36ch, 100%);
}

/* Solutions — accroche sous le titre hero */
body.page-document-ai
  .site-main
  .document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-text,
body.page-voice-ai
  .site-main
  .voice_ai-page.document_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-text,
body.page-agent-ai
  .site-main
  .agent_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-text,
body.page-edge-ai
  .site-main
  .edge_ai-page.home-page
  .home-page__section--hero
  .home-page__hero-title-text {
  margin: clamp(60px, 2.4vw, 26px) 0 0;
  padding: 0;
  max-width: min(42rem, 100%);
  font-size: var(--fs-home-body-md);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.012em;
  color: color-mix(in srgb, var(--bleu-2) 86%, transparent);
}

/* Document AI + Agent AI + Edge AI — The challenge */
.site-main .document_ai-page .document_ai-page__section--challenge,
.site-main .agent_ai-page .agent_ai-page__section--challenge,
.site-main .edge_ai-page .edge_ai-page__section--challenge {
  padding: 88px 0 96px;
  background: var(--gris);
  color: var(--noir);
}

.site-main .document_ai-page .document_ai-page__container--narrow,
.site-main .agent_ai-page .agent_ai-page__container--narrow,
.site-main .edge_ai-page .edge_ai-page__container--narrow {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.site-main .document_ai-page .document_ai-page__challenge-heading,
.site-main .agent_ai-page .agent_ai-page__challenge-heading,
.site-main .edge_ai-page .edge_ai-page__challenge-heading {
  margin: 0;
  color: var(--bleu-1);
  font-size: clamp(1.85rem, 1.35rem + 1.1vw, 2.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
}

.site-main .document_ai-page .document_ai-page__challenge-intro,
.site-main .agent_ai-page .agent_ai-page__challenge-intro,
.site-main .edge_ai-page .edge_ai-page__challenge-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 52px);
  /* align-items: center; */
}

.site-main .document_ai-page .document_ai-page__challenge-visual,
.site-main .agent_ai-page .agent_ai-page__challenge-visual,
.site-main .edge_ai-page .edge_ai-page__challenge-visual {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 35vw;
  transform: translateY(-10vh);
}

.site-main .document_ai-page .document_ai-page__challenge-visual {
  align-self: start;
  align-items: flex-start;
}

.site-main .document_ai-page .document_ai-page__four-pieces-art,
.site-main .agent_ai-page .agent_ai-page__four-pieces-art,
.site-main .edge_ai-page .edge_ai-page__four-pieces-art {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-left: clamp(12px, 2vw, 28px);
}

.site-main .document_ai-page .document_ai-page__challenge-copy,
.site-main .agent_ai-page .agent_ai-page__challenge-copy,
.site-main .edge_ai-page .edge_ai-page__challenge-copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.site-main .document_ai-page .document_ai-page__challenge-copy p,
.site-main .agent_ai-page .agent_ai-page__challenge-copy p,
.site-main .edge_ai-page .edge_ai-page__challenge-copy p {
  margin-top: 6vh;
  max-width: 46ch;
  color: var(--noir);
  line-height: 1.55;
  text-align: left;
}

.site-main .document_ai-page .document_ai-page__challenge-benchmark-wrap,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-wrap,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-wrap {
  margin: clamp(36px, 5vw, 56px) 0 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Voice AI : écart tuiles ↔ CTA ; pas de padding-bas (géré par .section--benefits) */
.site-main .voice_ai-page .document_ai-page__section--challenge {
  --voice-benchmark-rhythm: clamp(40px, 5vw, 56px);
  --voice-tiles-cta-extra: clamp(20px, 3vw, 44px);
  /* padding-bottom: 0; */
}

.site-main .voice_ai-page .document_ai-page__container--narrow {
  gap: var(--voice-benchmark-rhythm);
}

.site-main .voice_ai-page .document_ai-page__challenge-benchmark-wrap {
  margin-top: var(--voice-tiles-cta-extra);
}

/* Annule le margin-top global (48–104px) qui gonflait la bande claire sous le CTA */
.site-main .voice_ai-page .document_ai-page__section--benefits {
  margin-top: 0;
}

/* Agent AI + Edge AI — même gabarit challenge / tuiles / CTA que Voice ; bande verte : 2 pions (Agent), 3 pions (Edge, comme Document) */
.site-main .agent_ai-page .agent_ai-page__section--challenge,
.site-main .edge_ai-page .edge_ai-page__section--challenge {
  --voice-benchmark-rhythm: clamp(40px, 5vw, 56px);
  --voice-tiles-cta-extra: clamp(20px, 3vw, 44px);
  /* padding-bottom: 0; */
}

.site-main .agent_ai-page .agent_ai-page__container--narrow,
.site-main .edge_ai-page .edge_ai-page__container--narrow {
  gap: var(--voice-benchmark-rhythm);
}

.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-wrap,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-wrap {
  margin-top: var(--voice-tiles-cta-extra);
}

.site-main .agent_ai-page .agent_ai-page__section--benefits,
.site-main .edge_ai-page .edge_ai-page__section--benefits {
  margin-top: 0;
}

/* Agent AI — grille + tuiles challenge = mêmes dimensions que Voice AI (352px) */
.site-main .agent_ai-page .agent_ai-page__feature-grid,
.site-main .edge_ai-page .edge_ai-page__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 352px));
  justify-content: center;
  justify-items: stretch;
  align-items: stretch;
  gap: clamp(44px, 5.5vw, 68px);
  width: 100%;
  /* margin-top: clamp(48px, 7vw, 104px); */
}

.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background: var(--vert-1);
  color: var(--vert-2);
  box-shadow: none;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn::before,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn::before,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    color-mix(in srgb, var(--vert-2) 42%, transparent) 0%,
    color-mix(in srgb, var(--vert-2) 18%, transparent) 20%,
    color-mix(in srgb, var(--vert-2) 0%, transparent) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn:hover::before,
.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn:focus-visible::before,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn:hover::before,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn:hover::before,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn:focus-visible::before,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn:hover,
.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn:focus-visible,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn:hover,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn:hover,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn:focus-visible,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn:focus-visible {
  transform: translateY(-1px);
  color: var(--vert-2);
  background: color-mix(in srgb, var(--vert-1) 92%, var(--noir) 8%);
}

.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn:focus-visible,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn:focus-visible,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--vert-1) 45%, var(--noir));
  outline-offset: 3px;
}

.site-main .document_ai-page .document_ai-page__challenge-benchmark-btn:active,
.site-main .agent_ai-page .agent_ai-page__challenge-benchmark-btn:active,
.site-main .edge_ai-page .edge_ai-page__challenge-benchmark-btn:active {
  transform: translateY(0);
}

.site-main .document_ai-page .document_ai-page__feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.6fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  justify-content: center;
  justify-items: stretch;
  gap: clamp(36px, 5.5vw, 56px);
  /* margin-top: clamp(40px, 6vw, 72px); */
}

/* Voice AI — 3 tuiles challenge */
.site-main .voice_ai-page .document_ai-page__feature-grid {
  grid-template-columns: repeat(3, minmax(0, 0.5fr));
  gap: clamp(24px, 5vw, 25px);
}

.site-main .agent_ai-page .agent_ai-page__feature-grid,
.site-main .edge_ai-page .edge_ai-page__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 0.5fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  justify-content: center;
  justify-items: stretch;
  gap: clamp(24px, 5vw, 25px);
  width: 100%;
  margin-inline: auto;
  /* margin-top: clamp(40px, 6vw, 72px); */
}

.site-main .voice_ai-page .document_ai-page__feature-tile {
  max-width: none;
}

.site-main .voice_ai-page .document_ai-page__feature-tile-overlay {
  height: auto;
  min-height: 0;
  padding: clamp(20px, 2.8vw, 28px) clamp(20px, 2.6vw, 28px) clamp(22px, 3vw, 30px);
}

.site-main .voice_ai-page .document_ai-page__feature-tile-overlay h3 {
  margin-bottom: clamp(12px, 1.8vw, 18px);
  font-size: clamp(1.18rem, 1.04rem + 0.48vw, 1.52rem);
}

.site-main .voice_ai-page .document_ai-page__feature-tile-overlay p {
  font-size: clamp(1.06rem, 0.98rem + 0.32vw, 1.28rem) !important;
  line-height: 1.48 !important;
}

.site-main .document_ai-page .document_ai-page__feature-tile {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--bleu-2) 14%, transparent);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--bleu-1) 14%, transparent);
  background: var(--bleu-1);
  color: var(--bleu-2);
}

.site-main .document_ai-page .document_ai-page__feature-stack-slot {
  display: flex;
  min-height: 0;
}

.site-main .document_ai-page .document_ai-page__feature-stack-slot > article {
  flex: 1 1 auto;
}

.site-main .agent_ai-page .agent_ai-page__feature-tile,
.site-main .edge_ai-page .edge_ai-page__feature-tile {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--bleu-2) 14%, transparent);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--bleu-1) 14%, transparent);
  background: var(--bleu-1);
  color: var(--bleu-2);
}

.site-main .agent_ai-page .agent_ai-page__feature-stack-slot,
.site-main .edge_ai-page .edge_ai-page__feature-stack-slot {
  display: flex;
  width: 100%;
  min-height: 0;
  align-self: stretch;
}

.site-main .agent_ai-page .agent_ai-page__feature-stack-slot > article,
.site-main .edge_ai-page .edge_ai-page__feature-stack-slot > article {
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.site-main .document_ai-page .document_ai-page__feature-tile-bg,
.site-main .agent_ai-page .agent_ai-page__feature-tile-bg,
.site-main .edge_ai-page .edge_ai-page__feature-tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: color-mix(in srgb, var(--bleu-2) 12%, var(--bleu-1));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-main .document_ai-page .document_ai-page__feature-tile-scrim,
.site-main .agent_ai-page .agent_ai-page__feature-tile-scrim,
.site-main .edge_ai-page .edge_ai-page__feature-tile-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--bleu-1) 35%, transparent) 0%,
    color-mix(in srgb, var(--bleu-1) 55%, transparent) 35%,
    color-mix(in srgb, var(--bleu-1) 88%, transparent) 100%
  );
}

.site-main .document_ai-page .document_ai-page__feature-tile-overlay {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: auto;
  min-height: 0;
  padding: clamp(20px, 2.8vw, 28px) clamp(20px, 2.6vw, 28px) clamp(22px, 3vw, 30px);
}

.site-main .document_ai-page .document_ai-page__feature-tile-overlay h3 {
  flex: 0 0 auto;
  margin: 0 0 clamp(12px, 1.8vw, 18px);
  color: var(--bleu-2);
  font-size: clamp(1.18rem, 1.04rem + 0.48vw, 1.52rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-shadow: 0 1px 14px color-mix(in srgb, var(--bleu-1) 68%, transparent);
}

.site-main .document_ai-page .document_ai-page__feature-tile-overlay p {
  flex: 0 0 auto;
  margin: 0 !important;
  min-height: 0;
  font-size: clamp(1.06rem, 0.98rem + 0.32vw, 1.28rem) !important;
  line-height: 1.48 !important;
  font-weight: 500;
  color: var(--bleu-2) !important;
  text-shadow: 0 1px 12px color-mix(in srgb, var(--bleu-1) 72%, transparent);
  overflow: visible;
}

/* Agent AI — overlay tuiles = même gabarit typographique que Voice AI */
.site-main .agent_ai-page .agent_ai-page__feature-tile-overlay,
.site-main .edge_ai-page .edge_ai-page__feature-tile-overlay {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: auto;
  min-height: 0;
  padding: clamp(20px, 2.8vw, 28px) clamp(20px, 2.6vw, 28px) clamp(22px, 3vw, 30px);
}

.site-main .agent_ai-page .agent_ai-page__feature-tile-overlay h3,
.site-main .edge_ai-page .edge_ai-page__feature-tile-overlay h3 {
  flex: 0 0 auto;
  margin: 0 0 clamp(12px, 1.8vw, 18px);
  color: var(--bleu-2);
  font-size: clamp(1.18rem, 1.04rem + 0.48vw, 1.52rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-shadow: 0 1px 14px color-mix(in srgb, var(--bleu-1) 68%, transparent);
}

.site-main .agent_ai-page .agent_ai-page__feature-tile-overlay p,
.site-main .edge_ai-page .edge_ai-page__feature-tile-overlay p {
  flex: 0 0 auto;
  margin: 0 !important;
  min-height: 0;
  font-size: clamp(1.06rem, 0.98rem + 0.32vw, 1.28rem) !important;
  line-height: 1.48 !important;
  font-weight: 500;
  color: var(--bleu-2) !important;
  text-shadow: 0 1px 12px color-mix(in srgb, var(--bleu-1) 72%, transparent);
  overflow: visible;
}

.site-main
  .document_ai-page
  .document_ai-page__section--challenge
  .home-page__pieces-svg,
.site-main
  .agent_ai-page
  .agent_ai-page__section--challenge
  .home-page__pieces-svg,
.site-main
  .edge_ai-page
  .edge_ai-page__section--challenge
  .home-page__pieces-svg {
  overflow: visible;
}

.site-main
  .document_ai-page
  .document_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-dot,
.site-main
  .agent_ai-page
  .agent_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-dot,
.site-main
  .edge_ai-page
  .edge_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 920ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 280ms ease;
}

.site-main
  .document_ai-page
  .document_ai-page__section--challenge
  .home-page__pieces-svg.is-piece-active
  .piece-dot,
.site-main
  .agent_ai-page
  .agent_ai-page__section--challenge
  .home-page__pieces-svg.is-piece-active
  .piece-dot,
.site-main
  .edge_ai-page
  .edge_ai-page__section--challenge
  .home-page__pieces-svg.is-piece-active
  .piece-dot {
  opacity: 1;
}

.site-main
  .document_ai-page
  .document_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-dot.is-active-piece-dot,
.site-main
  .agent_ai-page
  .agent_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-dot.is-active-piece-dot,
.site-main
  .edge_ai-page
  .edge_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-dot.is-active-piece-dot {
  opacity: 1;
  transform: translate(var(--burst-x, 0px), var(--burst-y, 0px));
}

.site-main
  .document_ai-page
  .document_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-cursor-label,
.site-main
  .agent_ai-page
  .agent_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-cursor-label,
.site-main
  .edge_ai-page
  .edge_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-cursor-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--bleu-1);
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.site-main
  .document_ai-page
  .document_ai-page__section--challenge
  .home-page__pieces-svg.is-piece-active
  .piece-cursor-label,
.site-main
  .agent_ai-page
  .agent_ai-page__section--challenge
  .home-page__pieces-svg.is-piece-active
  .piece-cursor-label,
.site-main
  .edge_ai-page
  .edge_ai-page__section--challenge
  .home-page__pieces-svg.is-piece-active
  .piece-cursor-label {
  opacity: 1;
  transform: scale(1.03);
}

.site-main
  .document_ai-page
  .document_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-hotspot,
.site-main
  .agent_ai-page
  .agent_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-hotspot,
.site-main
  .edge_ai-page
  .edge_ai-page__section--challenge
  .home-page__pieces-svg
  .piece-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

@media (max-width: 900px) {
  .site-main .document_ai-page .document_ai-page__challenge-intro,
  .site-main .agent_ai-page .agent_ai-page__challenge-intro,
.site-main .edge_ai-page .edge_ai-page__challenge-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-main .document_ai-page .document_ai-page__challenge-visual,
  .site-main .agent_ai-page .agent_ai-page__challenge-visual,
.site-main .edge_ai-page .edge_ai-page__challenge-visual {
    grid-column: auto;
    grid-row: 2;
    justify-content: center;
  }

  .site-main .document_ai-page .document_ai-page__four-pieces-art,
  .site-main .agent_ai-page .agent_ai-page__four-pieces-art,
.site-main .edge_ai-page .edge_ai-page__four-pieces-art {
    margin-right: 0;
  }

  .site-main .document_ai-page .document_ai-page__challenge-copy,
  .site-main .agent_ai-page .agent_ai-page__challenge-copy,
.site-main .edge_ai-page .edge_ai-page__challenge-copy {
    grid-column: auto;
    grid-row: 1;
    justify-self: stretch;
    align-items: stretch;
  }

  .site-main .document_ai-page .document_ai-page__challenge-copy p,
  .site-main .agent_ai-page .agent_ai-page__challenge-copy p,
  .site-main .edge_ai-page .edge_ai-page__challenge-copy p {
    text-align: left;
    max-width: none;
  }

  .site-main .document_ai-page .document_ai-page__benefits-grid,
  .site-main .edge_ai-page .edge_ai-page__benefits-grid {
    grid-template-columns: 1fr;
  }

  .site-main .agent_ai-page .agent_ai-page__benefits-grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 520px);
    justify-items: stretch;
  }

}

/* Use-case & modèles Alpha — téléphone : pas de SVG quatre pièces dans le challenge / highlights */
@media (max-width: 767px) {
  .site-main .document_ai-page .document_ai-page__challenge-visual,
  .site-main .agent_ai-page .agent_ai-page__challenge-visual,
  .site-main .edge_ai-page .edge_ai-page__challenge-visual {
    display: none !important;
  }

  .site-main .document_ai-page .document_ai-page__challenge-copy p,
  .site-main .agent_ai-page .agent_ai-page__challenge-copy p,
  .site-main .edge_ai-page .edge_ai-page__challenge-copy p {
    margin-top: 0;
  }

  body.page-alpha-model .site-main .alpha-model-highlight__art {
    display: none !important;
  }

  .site-main .elm-page.home-page .elm-page__hero-four-pieces-wrap {
    display: none !important;
  }

  /* Tuiles « The challenge » (Voice 3 col, etc.) : une colonne, pleine largeur */
  .site-main .voice_ai-page .document_ai-page__feature-grid,
  .site-main .document_ai-page .document_ai-page__feature-grid,
  .site-main .agent_ai-page .agent_ai-page__feature-grid,
  .site-main .edge_ai-page .edge_ai-page__feature-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
    justify-items: stretch;
  }

  /* Bande verte métriques (WER, vélocité, TCO…) : une colonne + pion au-dessus du texte */
  .site-main .document_ai-page .document_ai-page__benefits-grid,
  .site-main .edge_ai-page .edge_ai-page__benefits-grid,
  .site-main .agent_ai-page .agent_ai-page__benefits-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
    gap: clamp(22px, 5vw, 36px);
  }

  .site-main .document_ai-page .document_ai-page__benefit,
  .site-main .agent_ai-page .agent_ai-page__benefit,
  .site-main .edge_ai-page .edge_ai-page__benefit {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 3vw, 18px);
    width: 100%;
    max-width: min(100%, 32rem);
    margin-inline: auto;
    text-align: center;
  }

  .site-main .document_ai-page .document_ai-page__benefit-text,
  .site-main .agent_ai-page .agent_ai-page__benefit-text,
  .site-main .edge_ai-page .edge_ai-page__benefit-text {
    text-align: center;
    max-width: 100%;
  }
}

/* Document AI + Agent AI + Edge AI — benefits (metrics) */
.site-main .document_ai-page .document_ai-page__section--benefits,
.site-main .agent_ai-page .agent_ai-page__section--benefits,
.site-main .edge_ai-page .edge_ai-page__section--benefits {
  position: relative;
  z-index: 1;
  /* margin-top: 100px; */
  padding: clamp(48px, 6vw, 72px) 0 clamp(44px, 5.5vw, 60px);
  background: var(--vert-2);
  color: var(--noir);
}

.site-main .document_ai-page .document_ai-page__container--benefits,
.site-main .edge_ai-page .edge_ai-page__container--benefits {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.site-main .agent_ai-page .agent_ai-page__container--benefits {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.site-main .document_ai-page .document_ai-page__benefits-grid,
.site-main .edge_ai-page .edge_ai-page__benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

/* Agent AI — 2 métriques (pions) : bloc centré dans la bande verte, comme l’équilibre visuel des autres pages */
.site-main .agent_ai-page .agent_ai-page__benefits-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: min(100%, 920px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  justify-items: stretch;
}

.site-main .document_ai-page .document_ai-page__benefit,
.site-main .agent_ai-page .agent_ai-page__benefit,
.site-main .edge_ai-page .edge_ai-page__benefit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  min-width: 0;
}

.site-main .document_ai-page .document_ai-page__benefit-icon,
.site-main .agent_ai-page .agent_ai-page__benefit-icon,
.site-main .edge_ai-page .edge_ai-page__benefit-icon {
  flex-shrink: 0;
  width: clamp(102px, 12vw, 120px);
  height: clamp(102px, 12vw, 120px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1.5px solid var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.site-main .document_ai-page .document_ai-page__benefit-icon-img,
.site-main .agent_ai-page .agent_ai-page__benefit-icon-img,
.site-main .edge_ai-page .edge_ai-page__benefit-icon-img {
  display: block;
  width: 58%;
  height: auto;
  max-height: 82%;
  object-fit: contain;
  object-position: 50% 100%;
}

.site-main .document_ai-page .document_ai-page__benefit-text,
.site-main .agent_ai-page .agent_ai-page__benefit-text,
.site-main .edge_ai-page .edge_ai-page__benefit-text {
  margin: 0;
  font-size: clamp(0.98rem, 0.9rem + 0.28vw, 1.1rem);
  font-weight: 500;
  line-height: 1.38;
  color: var(--noir);
}

.site-main .document_ai-page .document_ai-page__benefits-cta-wrap,
.site-main .agent_ai-page .agent_ai-page__benefits-cta-wrap,
.site-main .edge_ai-page .edge_ai-page__benefits-cta-wrap {
  margin: clamp(40px, 5.5vw, 56px) 0 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-main .document_ai-page .document_ai-page__cta-between,
.site-main .agent_ai-page .agent_ai-page__cta-between,
.site-main .edge_ai-page .edge_ai-page__cta-between {
  position: relative;
  z-index: 2;
  height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.site-main .document_ai-page .document_ai-page__cta-between-inner,
.site-main .agent_ai-page .agent_ai-page__cta-between-inner,
.site-main .edge_ai-page .edge_ai-page__cta-between-inner {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: min(var(--content-width), var(--container-width));
  margin: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.site-main .document_ai-page .document_ai-page__cta-between-inner .document_ai-page__cta-api,
.site-main .agent_ai-page .agent_ai-page__cta-between-inner .agent_ai-page__cta-api,
.site-main .edge_ai-page .edge_ai-page__cta-between-inner .edge_ai-page__cta-api {
  pointer-events: auto;
}

.site-main .document_ai-page .document_ai-page__cta-api,
.site-main .agent_ai-page .agent_ai-page__cta-api,
.site-main .edge_ai-page .edge_ai-page__cta-api {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--gris);
  background: var(--vert-1);
  box-shadow: none;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.site-main .document_ai-page .document_ai-page__cta-api::before,
.site-main .agent_ai-page .agent_ai-page__cta-api::before,
.site-main .edge_ai-page .edge_ai-page__cta-api::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    color-mix(in srgb, var(--vert-2) 42%, transparent) 0%,
    color-mix(in srgb, var(--vert-2) 18%, transparent) 20%,
    color-mix(in srgb, var(--vert-2) 0%, transparent) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .document_ai-page .document_ai-page__cta-api:hover::before,
.site-main .document_ai-page .document_ai-page__cta-api:focus-visible::before,
.site-main .agent_ai-page .agent_ai-page__cta-api:hover::before,
.site-main .edge_ai-page .edge_ai-page__cta-api:hover::before,
.site-main .agent_ai-page .agent_ai-page__cta-api:focus-visible::before,
.site-main .edge_ai-page .edge_ai-page__cta-api:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .document_ai-page .document_ai-page__cta-api:hover,
.site-main .agent_ai-page .agent_ai-page__cta-api:hover,
.site-main .edge_ai-page .edge_ai-page__cta-api:hover {
  transform: translateY(-1px);
  color: #fff;
}

.site-main .document_ai-page .document_ai-page__cta-api:focus-visible,
.site-main .agent_ai-page .agent_ai-page__cta-api:focus-visible,
.site-main .edge_ai-page .edge_ai-page__cta-api:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  outline: 2px solid color-mix(in srgb, var(--vert-1) 45%, var(--noir));
  outline-offset: 3px;
}

/* Document AI + Agent AI — pipeline (terrain, bleu-2) */
.site-main .document_ai-page .document_ai-page__section--pipeline,
.site-main .agent_ai-page .agent_ai-page__section--pipeline,
.site-main .edge_ai-page .edge_ai-page__section--pipeline {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  min-height: 100vh;
  padding: 0;
  background: var(--bleu-2);
  color: var(--bleu-1);
}

.site-main .document_ai-page .document_ai-page__container--pipeline,
.site-main .agent_ai-page .agent_ai-page__container--pipeline,
.site-main .edge_ai-page .edge_ai-page__container--pipeline {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  box-sizing: border-box;
}

/* Solutions — contact (Document / Voice / Agent / Edge) : fond bleu-1, blocs type Defense */
.site-main .document_ai-page .document_ai-page__section--contact-form,
.site-main .agent_ai-page .agent_ai-page__section--contact-form,
.site-main .edge_ai-page .edge_ai-page__section--contact-form {
  padding: clamp(72px, 9vw, 112px) 0 clamp(88px, 11vw, 120px);
  background: var(--bleu-1);
  color: var(--bleu-2);
}

/* Lisibilité des blocs defense-page__* sur fond bleu-1 (Document / Voice / Agent / Edge) */
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__contact-copy,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__contact-copy,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__contact-copy {
  border-inline-end-color: color-mix(in srgb, var(--bleu-2) 28%, transparent);
}

.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__contact-heading,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__contact-heading,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__contact-heading {
  color: var(--bleu-2);
}

.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__contact-lead,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__contact-lead,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__contact-lead {
  color: color-mix(in srgb, var(--bleu-2) 88%, var(--gris) 12%) !important;
}

.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__contact-subheading,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__contact-subheading,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__contact-subheading {
  color: var(--bleu-2);
}

/* Champs = même traitement que .contact-page__input / __textarea (fond transparent sur bleu-1) */
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__input,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__textarea,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__input,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__textarea,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__input,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__textarea {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-2) 48%, transparent);
  padding: 12px 8px 10px 2px;
  color: var(--bleu-2);
  background: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__input::placeholder,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__textarea::placeholder,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__input::placeholder,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__textarea::placeholder,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__input::placeholder,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__textarea::placeholder {
  color: color-mix(in srgb, var(--bleu-2) 40%, transparent);
}

.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__input:focus-visible,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__textarea:focus-visible,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__input:focus-visible,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__textarea:focus-visible,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__input:focus-visible,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--bleu-2);
}

.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__input:-webkit-autofill,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__input:-webkit-autofill:hover,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__input:-webkit-autofill:focus,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill:hover,
.site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill:focus,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__input:-webkit-autofill,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__input:-webkit-autofill:hover,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__input:-webkit-autofill:focus,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill:hover,
.site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill:focus,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__input:-webkit-autofill,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__input:-webkit-autofill:hover,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__input:-webkit-autofill:focus,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill:hover,
.site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--bleu-2);
  caret-color: var(--bleu-2);
  transition: background-color 99999s ease-out;
  box-shadow: 0 0 0 1000px var(--bleu-1) inset;
}

@media (max-width: 900px) {
  .site-main .document_ai-page .document_ai-page__section--contact-form .defense-page__contact-copy,
  .site-main .agent_ai-page .agent_ai-page__section--contact-form .defense-page__contact-copy,
  .site-main .edge_ai-page .edge_ai-page__section--contact-form .defense-page__contact-copy {
    border-block-end-color: color-mix(in srgb, var(--bleu-2) 22%, transparent);
  }
}

.site-main .document_ai-page .document_ai-page__container--contact-form,
.site-main .agent_ai-page .agent_ai-page__container--contact-form,
.site-main .edge_ai-page .edge_ai-page__container--contact-form {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  box-sizing: border-box;
}

.site-main .research-page .research-page__section--scienfitic_collective {
  padding: 88px 0;
  background: var(--gris);
}

.site-main .research-page .research-page__section--scienfitic_collective .research-page__container {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.site-main .research-page .research-page__intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.site-main .research-page .research-page__intro-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-main .research-page .research-page__four-pieces-art {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-left: clamp(20px, 4.5vw, 52px);
}

@media (min-width: 901px) {
  .site-main .research-page .research-page__intro-visual {
    padding-left: clamp(8px, 1.2vw, 20px);
  }
}

.site-main .research-page .research-page__intro-copy {
  justify-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.site-main .research-page .research-page__intro-copy p {
  color: var(--noir);
  line-height: 1.45;
  max-width: 50ch;
  margin: 0;
  text-align: left;
}

.site-main .research-page .research-page__collective-row {
  margin-top: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.site-main .research-page .research-page__collective-copy {
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 68ch;
}

.site-main .research-page .research-page__collective-copy h1 {
  color: var(--noir);
  text-align: left;
  line-height: 1.08;
}

.site-main .research-page .research-page__collective-copy p {
  margin: 0;
  color: var(--noir);
  line-height: 1.45;
  text-align: left;
}

.site-main .research-page .research-page__collective-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-main .research-page .research-page__collective-placeholder {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 1;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  margin-right: clamp(20px, 4vw, 56px);
}

@media (max-width: 900px) {
  .site-main .research-page .research-page__intro-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-main .research-page .research-page__intro-visual {
    justify-content: center;
    padding-left: 0;
  }

  .site-main .research-page .research-page__four-pieces-art {
    margin-left: 0;
  }

  .site-main .research-page .research-page__intro-copy {
    justify-self: stretch;
    align-items: stretch;
  }

  .site-main .research-page .research-page__intro-copy p {
    text-align: left;
    max-width: none;
  }

  .site-main .research-page .research-page__collective-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-main .research-page .research-page__collective-visual {
    justify-content: center;
  }

  .site-main .research-page .research-page__collective-placeholder {
    max-width: min(100%, 320px);
    margin-right: 0;
  }
}

/* CTA « Join our team » : centré sur la jonction gris (collective) / bleu-2 (ecosystem) */
.site-main .research-page .research-page__join-team-bridge {
  position: relative;
  height: 0;
  z-index: 6;
  pointer-events: none;
}

.site-main .research-page .research-page__join-team-bridge .research-page__join-team-cta {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: clamp(1rem, 0.82rem + 0.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: var(--orange-2);
  color: var(--orange-1);
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.1);
  transform: translate(-50%, -50%);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .research-page .research-page__join-team-bridge .research-page__join-team-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .research-page .research-page__join-team-bridge .research-page__join-team-cta:hover,
.site-main .research-page .research-page__join-team-bridge .research-page__join-team-cta:focus-visible {
  background: var(--orange-1);
  color: var(--orange-2);
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.18);
  transform: translate(-50%, calc(-50% - 1px));
}

.site-main .research-page .research-page__join-team-bridge .research-page__join-team-cta:hover::before,
.site-main .research-page .research-page__join-team-bridge .research-page__join-team-cta:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .research-page .research-page__join-team-bridge .research-page__join-team-cta:active {
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.14);
}

.site-main .research-page .research-page__section--ecosystem {
  position: relative;
  z-index: 0;
  padding: 88px 0;
  background: var(--bleu-2);
  color: var(--bleu-1);
}

.site-main .research-page .research-page__section--ecosystem .research-page__container {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-main .research-page .research-page__ecosystem-title {
  margin: 0;
  color: var(--bleu-1);
  text-align: left;
  line-height: 1.08;
  font-weight: 700;
}

.site-main .research-page .research-page__ecosystem-timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: clamp(8px, 1.5vw, 18px);
  min-height: 0;
}

.site-main .research-page .research-page__ecosystem-viewport-shell {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: min(460px, 72vh);
  z-index: 0;
}

.site-main .research-page .research-page__ecosystem-viewport-shell::before,
.site-main .research-page .research-page__ecosystem-viewport-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.site-main .research-page .research-page__ecosystem-viewport-shell::before {
  left: 0;
  background: linear-gradient(to right, var(--bleu-2) 0%, rgba(217, 231, 255, 0) 100%);
}

.site-main .research-page .research-page__ecosystem-viewport-shell::after {
  right: 0;
  background: linear-gradient(to left, var(--bleu-2) 0%, rgba(217, 231, 255, 0) 100%);
}

.site-main .research-page .research-page__ecosystem-viewport-shell.is-at-start::before {
  opacity: 0;
}

.site-main .research-page .research-page__ecosystem-viewport-shell.is-at-end::after {
  opacity: 0;
}

.site-main .research-page .research-page__ecosystem-viewport {
  height: 100%;
  min-height: min(460px, 72vh);
  overflow-x: hidden;
  overflow-y: hidden;
  touch-action: pan-y;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
}

.site-main .research-page .research-page__ecosystem-viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.site-main .research-page .research-page__ecosystem-viewport:focus-visible {
  box-shadow: 0 0 0 2px var(--bleu-1);
}

.site-main .research-page .research-page__ecosystem-track {
  list-style: none;
  margin: 0;
  padding: 32px 20px;
  display: flex;
  flex-direction: row;
  gap: clamp(6px, 1vw, 14px);
  width: max-content;
  min-height: 440px;
  align-items: stretch;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
}

.site-main .research-page .research-page__ecosystem-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(1, 17, 59, 0.18);
  z-index: 0;
  pointer-events: none;
}

.site-main .research-page .research-page__ecosystem-item {
  flex: 0 0 auto;
  width: min(68vw, 260px);
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.site-main .research-page .research-page__ecosystem-item-inner {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: stretch;
  min-height: 440px;
  height: 100%;
  overflow: visible;
}

.site-main .research-page .research-page__ecosystem-half--top {
  grid-row: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.site-main .research-page .research-page__ecosystem-half--bottom {
  grid-row: 3;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-half--top {
  justify-content: flex-end;
}

.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-half--bottom {
  justify-content: flex-start;
}

.site-main .research-page .research-page__ecosystem-axis-node {
  grid-row: 2;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 14px;
  margin: 0;
}

.site-main .research-page .research-page__ecosystem-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bleu-1);
  border: 2px solid var(--bleu-2);
  box-shadow: 0 0 0 1px rgba(1, 17, 59, 0.15);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-main .research-page .research-page__ecosystem-item:has(.research-page__ecosystem-partner:hover) .research-page__ecosystem-dot,
.site-main .research-page .research-page__ecosystem-item:has(.research-page__ecosystem-partner:focus-within) .research-page__ecosystem-dot {
  transform: scale(1.12);
  box-shadow:
    0 0 0 1px rgba(1, 17, 59, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.95),
    0 0 0 6px rgba(1, 17, 59, 0.18);
}

.site-main .research-page .research-page__ecosystem-stem {
  width: 2px;
  min-height: 32px;
  flex: 0 0 auto;
  background: rgba(1, 17, 59, 0.22);
  border-radius: 1px;
  position: relative;
}

.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-stem::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid rgba(1, 17, 59, 0.35);
}

.site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-stem::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(1, 17, 59, 0.35);
}

.site-main .research-page .research-page__ecosystem-partner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.site-main .research-page .research-page__ecosystem-item:has(.research-page__ecosystem-partner:hover),
.site-main .research-page .research-page__ecosystem-item:has(.research-page__ecosystem-partner:focus-within) {
  z-index: 12;
}

/* Demi-colonne opposée au logo : infobulle sous l’axe (logo haut) ou au-dessus (logo bas) */
.site-main .research-page .research-page__ecosystem-half--opposite {
  position: relative;
}

.site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-half--bottom.research-page__ecosystem-half--opposite {
  justify-content: flex-start;
}

.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-half--top.research-page__ecosystem-half--opposite {
  justify-content: flex-end;
}

/* Nœud timeline : tige depuis l’axe + flèche + panneau + point (comme la maquette) */
.site-main .research-page .research-page__ecosystem-tooltip {
  position: absolute;
  left: 50%;
  z-index: 4;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(288px, calc(100vw - 40px));
  padding: 0;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

/* Logo sous l’axe : infobulle dans la demi-haut — texte loin de l’axe, tige+flèche vers l’axe */
.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-half--opposite .research-page__ecosystem-tooltip {
  flex-direction: column-reverse;
}

.site-main .research-page .research-page__ecosystem-tooltip-line {
  position: relative;
  flex: 0 0 auto;
  width: 2px;
  height: 28px;
  background: rgba(1, 17, 59, 0.22);
}

.site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-tooltip-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid rgba(1, 17, 59, 0.35);
}

.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-tooltip-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(1, 17, 59, 0.35);
}

.site-main .research-page .research-page__ecosystem-tooltip-body {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px 16px;
  border-radius: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--bleu-1);
  text-align: center;
  text-wrap: balance;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(1, 17, 59, 0.2);
  box-shadow: 0 2px 12px rgba(1, 17, 59, 0.06);
}

.site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-tooltip-body {
  padding-bottom: 18px;
}

.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-tooltip-body {
  padding-top: 18px;
}

.site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-tooltip-body::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bleu-1);
  border: 2px solid var(--bleu-2);
  box-shadow: 0 0 0 1px rgba(1, 17, 59, 0.15);
}

.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-tooltip-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bleu-1);
  border: 2px solid var(--bleu-2);
  box-shadow: 0 0 0 1px rgba(1, 17, 59, 0.15);
}

.site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-half--opposite .research-page__ecosystem-tooltip {
  top: 8px;
  bottom: auto;
  transform: translateX(-50%) translateY(-4px);
}

.site-main .research-page .research-page__ecosystem-item--above:has(.research-page__ecosystem-partner:hover) .research-page__ecosystem-tooltip,
.site-main .research-page .research-page__ecosystem-item--above:has(.research-page__ecosystem-partner:focus-within) .research-page__ecosystem-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-half--opposite .research-page__ecosystem-tooltip {
  bottom: 8px;
  top: auto;
  transform: translateX(-50%) translateY(4px);
}

.site-main .research-page .research-page__ecosystem-item--below:has(.research-page__ecosystem-partner:hover) .research-page__ecosystem-tooltip,
.site-main .research-page .research-page__ecosystem-item--below:has(.research-page__ecosystem-partner:focus-within) .research-page__ecosystem-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-main .research-page .research-page__ecosystem-tooltip {
    transition:
      opacity 0.12s ease,
      visibility 0.12s ease;
  }

  .site-main .research-page .research-page__ecosystem-item--above .research-page__ecosystem-half--opposite .research-page__ecosystem-tooltip,
  .site-main .research-page .research-page__ecosystem-item--below .research-page__ecosystem-half--opposite .research-page__ecosystem-tooltip {
    transform: translateX(-50%);
  }

  .site-main .research-page .research-page__ecosystem-item--above:has(.research-page__ecosystem-partner:hover) .research-page__ecosystem-tooltip,
  .site-main .research-page .research-page__ecosystem-item--above:has(.research-page__ecosystem-partner:focus-within) .research-page__ecosystem-tooltip,
  .site-main .research-page .research-page__ecosystem-item--below:has(.research-page__ecosystem-partner:hover) .research-page__ecosystem-tooltip,
  .site-main .research-page .research-page__ecosystem-item--below:has(.research-page__ecosystem-partner:focus-within) .research-page__ecosystem-tooltip {
    transform: translateX(-50%);
  }

  .site-main .research-page .research-page__ecosystem-dot {
    transition: none;
  }
}

.site-main .research-page .research-page__ecosystem-partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 14px 10px;
  margin: 0;
  text-decoration: none;
  color: inherit;
  outline: none;
  box-sizing: border-box;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-main .research-page .research-page__ecosystem-partner-link:hover {
  opacity: 0.88;
  transform: scale(1.04);
}

.site-main .research-page .research-page__ecosystem-partner-link:focus-visible {
  opacity: 1;
  outline: 2px solid var(--bleu-1);
  outline-offset: 6px;
}

.site-main .research-page .research-page__ecosystem-logo {
  display: block;
  flex-shrink: 0;
  width: min(240px, 100%);
  height: 96px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.04) brightness(0.97);
  transition: filter 0.2s ease;
}

.site-main .research-page .research-page__ecosystem-partner-link:hover .research-page__ecosystem-logo,
.site-main .research-page .research-page__ecosystem-partner-link:focus-visible .research-page__ecosystem-logo {
  filter: saturate(1.05) contrast(1.03) brightness(1.01);
}

.site-main .research-page .research-page__ecosystem-nav {
  flex: 0 0 auto;
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(1, 17, 59, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(1, 17, 59, 0.1);
  cursor: pointer;
  position: relative;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.site-main .research-page .research-page__ecosystem-nav:hover:not(:disabled) {
  background: var(--bleu-1);
  border-color: var(--bleu-1);
}

.site-main .research-page .research-page__ecosystem-nav span {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  pointer-events: none;
}

.site-main .research-page .research-page__ecosystem-nav--prev span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 6l-6 6 6 6' fill='none' stroke='%2301113b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.site-main .research-page .research-page__ecosystem-nav--next span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6l6 6-6 6' fill='none' stroke='%2301113b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.site-main .research-page .research-page__ecosystem-nav:hover:not(:disabled) span {
  filter: brightness(0) invert(1);
}

.site-main .research-page .research-page__ecosystem-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 640px) {
  .site-main .research-page .research-page__ecosystem-nav {
    display: none;
  }

  .site-main .research-page .research-page__ecosystem-timeline {
    gap: 0;
  }
}

/* Research — publications (refonte : carte, lignes douces, hiérarchie claire) */
.site-main .research-page .research-page__section--articles {
  padding: 96px 0 112px;
  background: var(--gris);
  color: var(--bleu-1);
}

.site-main .research-page .research-page__container--articles {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
}

.site-main .research-page .research-page__articles-title {
  margin: 0 0 16px;
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--bleu-1);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.site-main .research-page .research-page__articles-lead {
  margin: 0 0 40px;
  max-width: 52ch;
  font-size: clamp(1.04rem, 0.98rem + 0.2vw, 1.14rem);
  line-height: 1.62;
  color: rgba(1, 17, 59, 0.68);
}

.site-main .research-page .research-page__articles-coming-soon {
  margin: 0;
  max-width: 36rem;
  padding: 28px 32px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(1, 17, 59, 0.06);
}

.site-main .research-page .research-page__articles-coming-soon-title {
  margin: 0 0 10px;
  font-size: clamp(1.12rem, 1.02rem + 0.35vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bleu-1);
}

.site-main .research-page .research-page__articles-coming-soon-text {
  margin: 0;
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.06rem);
  line-height: 1.55;
  color: rgba(1, 17, 59, 0.65);
}

.site-main .research-page .research-page__pub-coming-soon-shell {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 3.5vw, 44px) 0;
  box-sizing: border-box;
}

.site-main .research-page [data-research-publications] .research-page__articles-coming-soon {
  width: 100%;
  max-width: min(36rem, 100%);
}

.site-main .research-page [data-research-publications] {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-main .research-page .research-page__pub-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  border: none;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
}

.site-main .research-page .research-page__pub-toolbar {
  margin-bottom: 28px;
}

.site-main .research-page .research-page__pub-search-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(1, 17, 59, 0.4);
}

.site-main .research-page .research-page__pub-search {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 52px;
  padding: 14px 20px 14px 22px;
  margin: 0;
  border: 1px solid rgba(1, 17, 59, 0.1);
  border-radius: 0;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--bleu-1);
  background: #fff;
  box-shadow: 0 2px 14px rgba(1, 17, 59, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-main .research-page .research-page__pub-search::placeholder {
  color: rgba(1, 17, 59, 0.35);
}

.site-main .research-page .research-page__pub-search:hover {
  border-color: rgba(1, 17, 59, 0.16);
}

.site-main .research-page .research-page__pub-search:focus {
  outline: none;
  border-color: rgba(35, 56, 7, 0.35);
  box-shadow:
    0 2px 18px rgba(1, 17, 59, 0.08),
    0 0 0 3px rgba(231, 255, 222, 0.75);
}

.site-main .research-page .research-page__pub-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin: 32px auto 0;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
  align-self: center;
}

.site-main .research-page .research-page__pub-page-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  min-height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bleu-1);
  background: var(--bleu-2);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(1, 17, 59, 0.1);
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.site-main .research-page .research-page__pub-page-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.site-main .research-page .research-page__pub-page-btn:hover:not(:disabled) {
  background: var(--bleu-1);
  color: var(--bleu-2);
  box-shadow: 0 8px 22px rgba(1, 17, 59, 0.22);
  transform: translateY(-1px);
}

.site-main .research-page .research-page__pub-page-btn:hover:not(:disabled)::before {
  opacity: 0.75;
}

.site-main .research-page .research-page__pub-page-btn:focus-visible {
  outline: 2px solid var(--bleu-1);
  outline-offset: 3px;
}

.site-main .research-page .research-page__pub-page-btn:focus-visible:not(:disabled) {
  background: var(--bleu-1);
  color: var(--bleu-2);
}

.site-main .research-page .research-page__pub-page-btn:focus-visible:not(:disabled)::before {
  opacity: 0.75;
}

.site-main .research-page .research-page__pub-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: rgba(217, 231, 255, 0.5);
  color: rgba(1, 17, 59, 0.4);
}

.site-main .research-page .research-page__pub-page-status {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(1, 17, 59, 0.62);
  font-variant-numeric: tabular-nums;
  min-width: 7.5rem;
  letter-spacing: 0.02em;
}

.site-main .research-page .research-page__pub-tab-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  min-width: 0;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: clamp(0.88rem, 0.84rem + 0.12vw, 0.98rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--vert-2);
  color: var(--vert-1);
  box-shadow: 0 2px 8px rgba(35, 56, 7, 0.1);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .research-page .research-page__pub-tab-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.12) 28%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
}

.site-main .research-page .research-page__pub-tab-btn--active {
  background: var(--vert-1);
  color: var(--vert-2);
  box-shadow: 0 6px 18px rgba(35, 56, 7, 0.28);
}

.site-main .research-page .research-page__pub-tab-btn--active:hover::before,
.site-main .research-page .research-page__pub-tab-btn--active:focus-visible::before {
  opacity: 0.85;
  filter: blur(8px);
}

.site-main .research-page .research-page__pub-tab-btn:hover:not(.research-page__pub-tab-btn--active),
.site-main .research-page .research-page__pub-tab-btn:focus-visible {
  background: var(--vert-1);
  color: var(--vert-2);
  box-shadow: 0 8px 22px rgba(35, 56, 7, 0.22);
  transform: translateY(-1px);
}

.site-main .research-page .research-page__pub-tab-btn:hover:not(.research-page__pub-tab-btn--active)::before,
.site-main .research-page .research-page__pub-tab-btn:focus-visible::before {
  opacity: 0.85;
}

.site-main .research-page .research-page__pub-tab-btn:focus-visible {
  outline: 2px solid var(--vert-1);
  outline-offset: 3px;
}

.site-main .research-page .research-page__pub-tab-btn--active:hover,
.site-main .research-page .research-page__pub-tab-btn--active:focus-visible {
  box-shadow: 0 10px 26px rgba(35, 56, 7, 0.32);
  transform: translateY(-1px);
}

.site-main .research-page .research-page__pub-blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}

.site-main .research-page .research-page__pub-block {
  margin: 0;
  padding: 0;
  border-top: none;
}

.site-main .research-page .research-page__pub-block:first-child {
  padding-top: 0;
}

.site-main .research-page .research-page__pub-block--empty {
  display: none;
}

.site-main .research-page .research-page__pub-block-title {
  position: relative;
  margin: 0 0 22px;
  padding: 0 0 14px;
  font-size: clamp(0.72rem, 0.68rem + 0.1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bleu-1);
  line-height: 1.2;
  border-bottom: 1px solid rgba(1, 17, 59, 0.1);
}

.site-main .research-page .research-page__pub-block-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 52px;
  height: 2px;
  border-radius: 0;
  background: var(--vert-1);
}

.site-main .research-page .research-page__pub-panel {
  margin-top: 0;
  padding: 28px 0 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
  box-shadow: none;
}

.site-main .research-page .research-page__pub-no-results {
  margin: 8px 0 0;
  padding: 40px 24px 20px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(1, 17, 59, 0.5);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(1, 17, 59, 0.12);
}

.site-main .research-page .research-page__pub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: none;
}

.site-main .research-page .research-page__pub-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  column-gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: start;
  padding: 22px 24px 22px 26px;
  margin: 0;
  border: 1px solid rgba(1, 17, 59, 0.09);
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 16px rgba(1, 17, 59, 0.045);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-main .research-page .research-page__pub-row:hover {
  border-color: rgba(1, 17, 59, 0.14);
  box-shadow: 0 12px 36px rgba(1, 17, 59, 0.1);
  transform: translateY(-2px);
}

.site-main .research-page .research-page__pub-row:focus-within {
  border-color: rgba(35, 56, 7, 0.28);
  box-shadow:
    0 12px 36px rgba(1, 17, 59, 0.1),
    0 0 0 2px rgba(231, 255, 222, 0.75);
}

.site-main .research-page .research-page__pub-date-cell {
  padding-top: 4px;
}

.site-main .research-page .research-page__pub-date-cell time {
  display: block;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--vert-1);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.site-main .research-page .research-page__pub-main-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.site-main .research-page .research-page__pub-main-cell > .research-page__pub-kind {
  flex-shrink: 0;
}

.site-main .research-page .research-page__pub-kind {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 7px 14px;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--vert-1);
  background: var(--vert-2);
  box-shadow: 0 1px 0 rgba(35, 56, 7, 0.08);
}

.site-main .research-page .research-page__pub-entry[data-pub-kind="study"] .research-page__pub-kind {
  color: var(--bleu-1);
  background: var(--bleu-2);
  box-shadow: 0 1px 0 rgba(1, 17, 59, 0.06);
}

.site-main .research-page .research-page__pub-entry[data-pub-kind="paper"] .research-page__pub-kind {
  color: var(--vert-1);
  background: var(--vert-2);
  box-shadow: 0 1px 0 rgba(35, 56, 7, 0.08);
}

.site-main .research-page .research-page__pub-item,
.site-main .research-page .research-page__paper-card {
  background: transparent;
}

/* L’attribut hidden doit gagner sur display:grid des cartes (sinon les entrées « filtrées » restent visibles). */
.site-main .research-page .research-page__pub-entry[hidden] {
  display: none !important;
}

.site-main .research-page .research-page__pub-item-title,
.site-main .research-page .research-page__paper-title {
  margin: 0;
  font-size: clamp(1.12rem, 1.02rem + 0.32vw, 1.32rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--bleu-1);
}

.site-main .research-page .research-page__pub-item-meta {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(1, 17, 59, 0.55);
}

.site-main .research-page .research-page__pub-item-source {
  font-style: normal;
  font-size: inherit;
  font-weight: 600;
  color: rgba(1, 17, 59, 0.48);
}

.site-main .research-page .research-page__pub-item-excerpt {
  margin: 0;
  font-size: clamp(0.88rem, 0.82rem + 0.14vw, 0.95rem);
  line-height: 1.58;
  color: rgba(1, 17, 59, 0.58);
  max-width: 62ch;
}

.site-main .research-page .research-page__paper-venue {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(1, 17, 59, 0.5);
}

.site-main .research-page .research-page__paper-authors {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.52;
  color: rgba(1, 17, 59, 0.55);
}

.site-main .research-page .research-page__paper-authors-label {
  font-weight: 700;
  color: var(--bleu-1);
}

.site-main .research-page .research-page__paper-links {
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.site-main .research-page .research-page__paper-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--vert-1);
  background: var(--vert-2);
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(35, 56, 7, 0.12);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.site-main .research-page .research-page__paper-link:hover,
.site-main .research-page .research-page__paper-link:focus-visible {
  background: var(--vert-1);
  color: var(--vert-2);
  box-shadow: 0 6px 18px rgba(35, 56, 7, 0.28);
  transform: translateY(-1px);
}

.site-main .research-page .research-page__paper-link:focus-visible {
  outline: 2px solid var(--vert-1);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .site-main .research-page .research-page__pub-row:hover,
  .site-main .research-page .research-page__pub-row:focus-within {
    transform: none;
  }

  .site-main .research-page .research-page__paper-link:hover,
  .site-main .research-page .research-page__paper-link:focus-visible {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-main .research-page .research-page__section--articles {
    padding: 72px 0 88px;
  }

  .site-main .research-page .research-page__pub-tablist {
    max-width: none;
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .site-main .research-page .research-page__pub-tab-btn {
    flex: 1 1 auto;
    min-height: 42px;
    padding: 0 12px;
  }

  .site-main .research-page .research-page__pub-panel {
    padding: 20px 0 28px;
    border-radius: 0;
  }

  .site-main .research-page .research-page__pub-row {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 20px 18px 20px 20px;
    border-radius: 0;
  }

  .site-main .research-page .research-page__pub-date-cell {
    padding-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .site-main .research-page .research-page__pub-pagination {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

/* --- Resources page --- */
.site-main .resources-page .resources-page__section--intro {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--nav-bar-total-height));
  min-height: calc(100dvh - var(--nav-bar-total-height));
  padding: 88px 0 96px;
  background: var(--gris);
  color: var(--noir);
}

.site-main .resources-page .resources-page__container {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.site-main .resources-page .resources-page__intro-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
  align-items: start;
  gap: 48px 52px;
}

.site-main .resources-page .resources-page__intro-title {
  margin: 0;
  color: var(--bleu-1);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.site-main .resources-page .resources-page__intro-text {
  margin: 0;
  color: var(--noir);
  line-height: 1.52;
  max-width: 32ch;
  justify-self: end;
}

.site-main .resources-page .resources-page__video-row {
  margin-top: auto;
  padding-top: clamp(40px, 7vh, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}

.site-main .resources-page .resources-page__video {
  min-width: 0;
}

.site-main .resources-page .resources-page__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(1, 17, 59, 0.1);
  box-shadow: 0 14px 36px rgba(1, 17, 59, 0.08);
  background: var(--noir);
}

.site-main .resources-page .resources-page__video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .site-main .resources-page .resources-page__video-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-main .resources-page .resources-page__section--intro {
    padding: 72px 0 80px;
  }

  .site-main .resources-page .resources-page__intro-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-main .resources-page .resources-page__intro-text {
    justify-self: start;
    max-width: none;
  }

  .site-main .resources-page .resources-page__video-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-main .resources-page .resources-page__economics-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-main .resources-page .resources-page__economics-text {
    justify-self: start;
    max-width: none;
  }
}

.site-main .resources-page .resources-page__section--economics_ai {
  padding: 88px 0 96px;
  background: var(--bleu-2);
  color: var(--bleu-1);
}

.site-main .resources-page .resources-page__section--economics_ai .resources-page__container {
  gap: 48px;
}

.site-main .resources-page .resources-page__economics-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 48px 52px;
}

.site-main .resources-page .resources-page__economics-title {
  margin: 0;
  color: var(--bleu-1);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.site-main .resources-page .resources-page__economics-text {
  margin: 0;
  max-width: 52ch;
  justify-self: end;
  line-height: 1.52;
  color: rgba(1, 17, 59, 0.88);
}

.site-main .legal-page {
  position: relative;
  overflow: hidden;
  background: var(--gris);
}

.site-main .legal-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: rgba(1, 17, 59, 0.12);
  pointer-events: none;
}

.site-main .legal-page::after {
  content: "";
  position: absolute;
  top: clamp(90px, 12vw, 150px);
  right: max(52px, 8vw);
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(1, 17, 59, 0.12);
  background: var(--bleu-1);
  box-shadow: 24px 24px 0 rgba(217, 231, 255, 0.68);
  transform: rotate(8deg);
  pointer-events: none;
}

.site-main .legal-page .legal-page__section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 128px) 52px clamp(92px, 10vw, 148px);
}

.site-main .legal-page .legal-page__container {
  width: min(var(--content-width), 1160px);
  margin-inline: auto;
}

.site-main .legal-page .legal-page__header {
  max-width: min(780px, 72%);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.site-main .legal-page .legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 18px !important;
  padding: 10px 16px;
  border: 1px solid rgba(184, 52, 0, 0.18);
  background: var(--gris);
  font-size: 0.92rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-1);
}

.site-main .legal-page .legal-page__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange-1);
}

.site-main .legal-page .legal-page__header h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.9;
  color: var(--bleu-1);
  text-wrap: balance;
}

.site-main .legal-page .legal-page__lead {
  max-width: 68ch;
  margin: 28px 0 0 !important;
  font-size: var(--fs-home-body-lg) !important;
  font-weight: 600;
  line-height: 1.48;
  color: rgba(1, 17, 59, 0.72);
}

.site-main .legal-page .legal-page__content {
  display: grid;
  gap: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(1, 17, 59, 0.1);
  background: var(--blanc);
  box-shadow: 12px 12px 0 rgba(217, 231, 255, 0.7);
  counter-reset: legal-section;
}

.site-main .legal-page .legal-page__content section {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid rgba(1, 17, 59, 0.1);
  background: transparent;
  box-shadow: none;
}

.site-main .legal-page .legal-page__content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.site-main .legal-page .legal-page__content section:last-child {
  padding-bottom: 0;
}

.site-main .legal-page .legal-page__content section::before {
  content: "";
  position: absolute;
  inset: clamp(24px, 3vw, 36px) auto auto 0;
  width: 40px;
  height: 4px;
  /* background: var(--orange-1); */
}

.site-main .legal-page .legal-page__content section::after {
  content: none;
}

.site-main .legal-page .legal-page__content section:first-child::before {
  top: 0;
}

.site-main .legal-page .legal-page__content h2,
.site-main .legal-page .legal-page__content h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--bleu-1);
}

.site-main .legal-page .legal-page__content h2 {
  max-width: 920px;
  font-size: clamp(1.45rem, 1.1rem + 0.9vw, 2.18rem);
  letter-spacing: -0.03em;
}

.site-main .legal-page .legal-page__content h3 {
  margin-top: 8px;
  font-size: var(--fs-subtitle-xs);
  color: rgba(1, 17, 59, 0.82);
}

.site-main .legal-page .legal-page__content p,
.site-main .legal-page .legal-page__content li,
.site-main .legal-page .legal-page__address,
.site-main .legal-page .legal-page__table {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  line-height: 1.62;
  color: rgba(32, 32, 32, 0.74);
}

.site-main .legal-page .legal-page__content ul,
.site-main .legal-page .legal-page__content ol {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.35rem;
}

.site-main .legal-page .legal-page__content a {
  color: var(--orange-1);
  font-weight: 700;
}

.site-main .legal-page .legal-page__content a:hover,
.site-main .legal-page .legal-page__content a:focus-visible {
  text-decoration: underline;
}

.site-main .legal-page .legal-page__address {
  font-style: normal;
}

.site-main .legal-page .legal-page__table-wrap {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  box-shadow: inset 0 0 0 1px rgba(1, 17, 59, 0.1);
}

.site-main .legal-page .legal-page__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: var(--fs-home-body-sm);
}

.site-main .legal-page .legal-page__table th,
.site-main .legal-page .legal-page__table td {
  padding: 14px 16px;
  border: 1px solid rgba(1, 17, 59, 0.12);
  text-align: left;
  vertical-align: top;
}

.site-main .legal-page .legal-page__table th {
  color: var(--bleu-1);
  background: rgba(217, 231, 255, 0.72);
}

@media (max-width: 900px) {
  .site-main .legal-page::after {
    opacity: 0.22;
    right: -70px;
  }

  .site-main .legal-page .legal-page__section {
    padding-inline: 28px;
  }

  .site-main .legal-page .legal-page__header {
    max-width: 100%;
  }

  .site-main .legal-page .legal-page__header h1 {
    font-size: clamp(2.6rem, 11vw, 4.8rem);
  }
}

.site-footer {
  background: var(--bleu-1);
  color: white;
  padding: 20px 52px;
}

.site-footer .footer-inner {
  display: flex;
  align-items: center;
  min-height: 104px;
}

.site-footer .footer-inner .footer-brand,
.site-footer .footer-inner .footer-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.site-footer .footer-inner .footer-brand {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer .footer-inner .footer-brand .brand-logo--footer {
  height: 30px;
  filter: brightness(0) invert(1);
}

.site-footer .footer-inner .footer-social {
  margin-left: 28px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer .footer-inner .footer-social .footer-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-footer .footer-inner .footer-social .social-link {
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-inner .footer-social .social-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.16) 24%,
    rgba(255, 255, 255, 0) 62%
  );
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-footer .footer-inner .footer-social .social-link .social-link__icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer .footer-inner .footer-social .social-link--hugging-face .social-link__icon {
  width: 24px;
  height: 24px;
  filter: none;
}

.site-footer .footer-inner .footer-social .social-link:hover,
.site-footer .footer-inner .footer-social .social-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 20px rgba(217, 231, 255, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.site-footer .footer-inner .footer-social .social-link:hover::before,
.site-footer .footer-inner .footer-social .social-link:focus-visible::before {
  opacity: 0.94;
  filter: blur(8px);
}

.site-footer .footer-inner .footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex: 1 1 auto;
  margin-left: 28px;
}

.site-footer .footer-inner .footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-footer .footer-inner .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-inner .footer-links a:hover,
.site-footer .footer-inner .footer-links a:focus-visible {
  color: white;
}

.site-footer .footer-inner .footer-links a:hover::after,
.site-footer .footer-inner .footer-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-main .home-page .home-page__section--hero {
  --hero-text-width: 46rem;
  position: relative;
  overflow: hidden;
  min-height: calc(102vh - 112px);
  background: var(--gris);
}

/* Motif centré : largeur > 100 % du hero pour agrandir ; translateX(-50 %) reste le centre horizontal. */
.site-main .home-page .home-page__section--hero .home-page__hero-quadrillage {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: 128%;
  aspect-ratio: 1440 / 318;
  max-width: none;
  pointer-events: none;
  line-height: 0;
  transform: translateX(-50%) translateY(148px);
  transform-origin: center bottom;
}

.site-main .home-page .home-page__section--hero .home-page__hero-quadrillage img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
}

.site-main .home-page .home-page__section--hero .home-page__hero-pieces-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Accueil (deux pièces sur quadrillage) : le conteneur hero recouvre toute la section ;
   sans cela le titre capture le survol là où la pièce est visible derrière. */
.site-main
  .home-page
  .home-page__section--hero:has(.home-page__hero-pieces-layer)
  .home-page__container--hero {
  pointer-events: none;
}

.site-main
  .home-page
  .home-page__section--hero:has(.home-page__hero-pieces-layer)
  .home-page__hero-actions,
.site-main
  .home-page
  .home-page__section--hero:has(.home-page__hero-pieces-layer)
  .home-page__hero-actions * {
  pointer-events: auto;
}

.site-main .home-page .home-page__section--hero .home-page__hero-pieces-grid {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 128%;
  aspect-ratio: 1440 / 318;
  pointer-events: none;
  transform: translateX(-50%) translateY(148px);
  transform-origin: center bottom;
}

.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__hero-pieces-grid
  .home-page__piece-svg-mount,
.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__hero-pieces-grid
  .home-page__hero-piece-dots-svg,
.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__piece-svg-mount,
.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__hero-piece-dots-svg {
  position: absolute;
  flex: none;
  line-height: 0;
  pointer-events: auto;
  left: calc((var(--piece-grid-x) / 1440) * 100%);
  bottom: calc(((318 - var(--piece-grid-y)) / 318) * 100%);
  transform: translateX(-50%);
}

.site-main .home-page .home-page__section--hero .home-page__container--hero {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), var(--container-width));
  padding: 15vh 0 0 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(720px, 1.15fr) minmax(260px, 0.85fr);
  align-items: start;
  gap: 48px;
}

.site-main .research-page .home-page__section--hero .home-page__hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
}

.site-main .home-page .home-page__section--hero .home-page__hero-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: var(--fs-home-body-md);
  width: 100%;
}

.site-main .home-page .home-page__section--hero .home-page__hero-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-main .home-page .home-page__section--hero .home-page__hero-title {
  font-size: var(--fs-hero-h1);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-title
  .home-page__hero-title-soft {
  display: block;
  font-weight: 400;
  white-space: nowrap;
}

.site-main .home-page .home-page__section--hero .home-page__hero-text {
  width: 100%;
  color: var(--noir);
  font-size: var(--fs-home-body-lg);
  font-weight: 400;
  line-height: 1.35;
}

.site-main .home-page .home-page__section--hero .home-page__hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6vh;
}

.site-main .home-page .home-page__section--hero .cta-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .home-page .home-page__section--hero .cta-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .home-page .home-page__section--hero .cta-button--primary {
  background: var(--orange-1);
  color: var(--orange-2);
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
}

.site-main .home-page .home-page__section--hero .cta-button--primary:hover,
.site-main
  .home-page
  .home-page__section--hero
  .cta-button--primary:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main .home-page .home-page__section--hero .cta-button--secondary {
  background: var(--orange-2);
  color: var(--orange-1);
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.08);
}

.site-main .home-page .home-page__section--hero .cta-button--secondary:hover,
.site-main
  .home-page
  .home-page__section--hero
  .cta-button--secondary:focus-visible {
  background: var(--orange-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.12);
}

.site-main .home-page .home-page__section--hero .cta-button:hover::before,
.site-main
  .home-page
  .home-page__section--hero
  .cta-button:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .home-page .home-page__section--hero .home-page__hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  min-height: 420px;
  transform: translateY(-120px);
}

.site-main .home-page .home-page__section--hero .solution-page__hero-visual {
  align-items: center;
  justify-content: center;
  min-height: 360px;
  transform: translateY(-72px);
}

.site-main .home-page .home-page__section--hero .solution-page__hero-image-frame {
  width: clamp(230px, 27vw, 360px);
  aspect-ratio: 1;
  padding: clamp(8px, 1vw, 12px);
  border: clamp(5px, 0.7vw, 8px) solid rgba(184, 52, 0, 0.92);
  border-radius: 50%;
  background: rgba(255, 249, 244, 0.88);
  box-shadow:
    0 24px 58px rgba(1, 17, 59, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.58) inset;
  overflow: hidden;
}

.site-main .home-page .home-page__section--hero .solution-page__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.site-main .home-page .home-page__section--hero .home-page__hero-pair-pieces {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(8px, 1.2vw, 14px);
  width: 100%;
  max-width: min(100%, 152px);
}

.site-main .home-page .home-page__section--hero .home-page__piece-svg-mount {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50px;
}

.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__hero-pieces-grid
  .home-page__piece-svg-mount--roi,
.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__piece-svg-mount--roi {
  /* Centre de la base du roi dans le SVG quadrillage (viewBox 1440x318). */
  --piece-grid-x: 990;
  --piece-grid-y: 98;
  position: absolute;
  width: 6%;
  max-width: none;
}

.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__hero-pieces-grid
  .home-page__piece-svg-mount--dame,
.site-main
  .home-page
  .home-page__section--hero
  .home-page__hero-pieces-layer
  .home-page__piece-svg-mount--dame {
  /* Centre de la base de la dame dans le SVG quadrillage (viewBox 1440x318). */
  --piece-grid-x: 1085;
  --piece-grid-y: 35;
  position: absolute;
  width: 5.2%;
  max-width: none;
}

.site-main .home-page .home-page__section--hero .home-page__pieces-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  cursor: crosshair;
}

.site-main .home-page .home-page__section--hero .home-page__pieces-svg .piece-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 920ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 280ms ease;
  pointer-events: none;
}

.site-main .home-page .home-page__section--hero .home-page__pieces-svg.is-piece-active .piece-dot {
  opacity: 1;
}

.site-main .home-page .home-page__section--hero .home-page__pieces-svg .piece-dot.is-active-piece-dot {
  opacity: 1;
  will-change: transform;
}

.site-main .home-page .home-page__section--hero .home-page__pieces-svg .piece-cursor-label {
  font-size: clamp(11px, 2.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--noir);
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.site-main .home-page .home-page__section--hero .home-page__pieces-svg.is-piece-active .piece-cursor-label {
  opacity: 1;
  transform: scale(1.03);
}

.site-main .home-page .home-page__section--hero .home-page__pieces-svg .piece-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

/* Company — ligne 1 regular + une ligne, ligne 2 gras (soft puis strong) */
.site-main
  .company-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  > .home-page__hero-title-soft:first-of-type {
  margin-bottom: 6px;
}

.site-main
  .company-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  > .home-page__hero-title-strong:last-of-type {
  margin-bottom: 0;
}

/* Company — hero : texte contenu dans la largeur (nowrap + grille → débordement mobile) */
@media (max-width: 991px) {
  .site-main
    .company-page.home-page
    .home-page__section--hero
    .home-page__container--hero {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(16px, 4vw, 28px);
    box-sizing: border-box;
  }

  .site-main
    .company-page.home-page
    .home-page__section--hero
    .home-page__hero-content,
  .site-main
    .company-page.home-page
    .home-page__section--hero
    .home-page__hero-copy,
  .site-main
    .company-page.home-page
    .home-page__section--hero
    .home-page__hero-heading {
    min-width: 0;
    max-width: 100%;
  }

  .site-main
    .company-page.home-page
    .home-page__section--hero
    .home-page__hero-title
    .home-page__hero-title-soft,
  .site-main
    .company-page.home-page
    .home-page__section--hero
    .home-page__hero-title
    .home-page__hero-title-strong {
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-main
    .company-page.home-page
    .home-page__section--hero
    .home-page__hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

/* Custom ELM — titre : ligne 1 regular, ligne 2 gras (classes strong/soft inversées dans le HTML) */
body.page-custom-elm
  .site-main
  .elm-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  > .home-page__hero-title-soft:first-of-type {
  margin-bottom: 6px;
}

body.page-custom-elm
  .site-main
  .elm-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  > .home-page__hero-title-strong {
  margin-bottom: 0;
}

/* Custom ELM — colonne gauche plus large (texte stable) + SVG + explosion JS */
.site-main .elm-page.home-page .home-page__section--hero {
  padding-bottom: clamp(28px, 5vw, 72px);
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__container--hero {
  align-items: start;
  padding-bottom: clamp(32px, 5.5vw, 80px);
  /* Colonne droite plus large : sinon min(100%,680px) = largeur de colonne (~300px) → aucun effet */
  grid-template-columns: minmax(640px, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(40px, 4.5vw, 56px);
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__hero-content {
  min-width: 0;
  max-width: 100%;
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__hero-visual.elm-page__hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: min(520px, 58vh);
  padding: clamp(48px, 10vw, 120px) 0 clamp(8px, 1.5vw, 20px) clamp(2px, 1vw, 10px);
  box-sizing: border-box;
  overflow: visible;
}

/* CTA hero ELM : un cran au-dessus du défaut (texte long = bouton plus lisible) */
.site-main .elm-page.home-page .home-page__section--hero .home-page__hero-actions .cta-button {
  min-width: min(100%, 220px);
  min-height: 56px;
  padding: 0 clamp(22px, 2.5vw, 32px);
  font-size: clamp(1.02rem, 0.96rem + 0.22vw, 1.14rem);
}

.site-main .elm-page.home-page .home-page__section--hero .elm-page__hero-four-pieces-wrap {
  width: 100%;
  max-width: min(760px, 100%);
  margin-top: auto;
}

.site-main .elm-page.home-page .home-page__section--hero .elm-page__four-pieces-art {
  display: block;
  width: 100%;
  height: auto;
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__pieces-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  cursor: crosshair;
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__pieces-svg .piece-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 920ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 280ms ease;
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__pieces-svg.is-piece-active .piece-dot {
  opacity: 1;
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__pieces-svg .piece-dot.is-active-piece-dot {
  opacity: 1;
  transform: translate(var(--burst-x, 0px), var(--burst-y, 0px));
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__pieces-svg .piece-cursor-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--bleu-1);
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__pieces-svg.is-piece-active .piece-cursor-label {
  opacity: 1;
  transform: scale(1.03);
}

.site-main .elm-page.home-page .home-page__section--hero .home-page__pieces-svg .piece-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

.site-main
  .elm-page.home-page
  .home-page__section--partnership
  .elm-page__partnership-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 1.2vw, 14px);
  width: 100%;
}

.site-main
  .elm-page.home-page
  .home-page__section--partnership
  .elm-page__partnership-subtitle {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  color: rgba(217, 231, 255, 0.9);
  letter-spacing: 0.02em;
}

/* Bespoke ELM — case study (section 3) */
.site-main .elm-page__section--case_study {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--gris);
  color: var(--noir);
}

.site-main .elm-page__section--case_study .elm-page__container--case-study {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 20px);
}

.site-main .elm-page__section--case_study .elm-page__case-study-kicker {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.08;
  color: var(--bleu-1);
  text-align: left;
  width: 100%;
}

.site-main .elm-page__section--case_study .elm-page__case-study-title {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.06;
  color: var(--noir);
  text-align: left;
  width: 100%;
}

.site-main .elm-page__section--case_study .elm-page__case-study-lead {
  margin: 0;
  font-size: var(--fs-home-body-md) !important;
  font-weight: 700;
  line-height: 1.45;
  color: var(--bleu-1);
  text-align: left;
  width: 100%;
}

.site-main .elm-page__section--case_study .elm-page__case-study-bubbles {
  margin-top: clamp(20px, 4vw, 40px);
  align-self: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 48px);
}

.site-main .elm-page__section--case_study .elm-page__case-study-bubble {
  flex-shrink: 0;
  width: clamp(176px, 22vw, 248px);
  height: clamp(176px, 22vw, 248px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--bleu-2);
  color: var(--bleu-1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
  font-size: clamp(1.08rem, 1rem + 0.32vw, 1.28rem);
  font-weight: 600;
  line-height: 1.28;
}

/* Bespoke ELM — stats (bleu-2) + CTA sur la jonction + certifications (grille type partnership) */
.site-main .elm-page__stats-cert-stack {
  position: relative;
}

.site-main .elm-page__stats-cert-top {
  position: relative;
  z-index: 1;
  background: var(--bleu-2);
}

.site-main .elm-page__section--stats {
  background: transparent;
  color: var(--bleu-1);
  padding: clamp(64px, 9vw, 104px) 0 clamp(52px, 8vw, 72px);
}

.site-main .elm-page__container--stats {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
}

.site-main .elm-page__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(14px, 2.2vw, 22px);
  min-width: 0;
}

.site-main .elm-page__stat-icon {
  width: clamp(76px, 11vw, 108px);
  height: clamp(76px, 11vw, 108px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-main .elm-page__stat-svg {
  display: block;
  width: 72%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
}

.site-main .elm-page__stat-label {
  margin: 0;
  font-size: var(--fs-home-body-md);
  font-weight: 700;
  line-height: 1.25;
  color: var(--bleu-1);
}

.site-main .elm-page__stats-cert-cta-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.site-main .elm-page__stats-cert-cta-wrap .elm-page__more-use-cases-cta {
  pointer-events: auto;
}

.site-main .elm-page__more-use-cases-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 0;
  background: var(--orange-1);
  color: var(--orange-2);
  font-family: inherit;
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 26px rgba(184, 52, 0, 0.24);
  cursor: pointer;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .elm-page__more-use-cases-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .elm-page__more-use-cases-cta:hover,
.site-main .elm-page__more-use-cases-cta:focus-visible {
  box-shadow: 0 14px 32px rgba(184, 52, 0, 0.28);
  transform: translateY(-1px);
}

.site-main .elm-page__more-use-cases-cta:hover::before,
.site-main .elm-page__more-use-cases-cta:focus-visible::before {
  opacity: 0.78;
  filter: blur(9px);
}

.site-main .elm-page__more-use-cases-cta:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--orange-2) 70%, white);
  outline-offset: 3px;
}

.site-main .elm-page__section--certifications {
  position: relative;
  z-index: 0;
  background: var(--bleu-1);
  color: rgba(217, 231, 255, 0.9);
  padding: calc(clamp(64px, 10vw, 96px) + clamp(24px, 4vw, 36px)) 0 88px;
}

.site-main .elm-page__container--certifications {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 40px);
}

.site-main .elm-page__certifications-title {
  margin: 0;
  max-width: 20ch;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.site-main .elm-page__cert-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(217, 231, 255, 0.28);
  background: rgba(0, 0, 0, 0.12);
}

.site-main .elm-page__cert-rail-item {
  margin: 0;
  padding: clamp(22px, 3.5vw, 34px) clamp(12px, 2vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(217, 231, 255, 0.2);
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.site-main .elm-page__cert-rail-item:last-child {
  border-right: 0;
}

.site-main .elm-page__cert-rail-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.site-main .elm-page__cert-rail-name {
  display: block;
  margin: 0;
  font-size: clamp(1.02rem, 0.92rem + 0.32vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-2);
}

.site-main .elm-page__cert-asterisk {
  font-size: 0.65em;
  font-weight: 700;
  line-height: 0;
  vertical-align: super;
  margin-left: 0.06em;
}

.site-main .elm-page__certifications-footnote {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(0.82rem, 0.76rem + 0.2vw, 0.92rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(217, 231, 255, 0.72);
}

.site-main .elm-page__certifications-footnote sup {
  margin-right: 0.25em;
  font-size: 0.85em;
  font-weight: 600;
  color: rgba(217, 231, 255, 0.88);
}

@media (max-width: 900px) {
  .site-main .elm-page__container--stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-main .elm-page__cert-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-main .elm-page__cert-rail-item {
    border-bottom: 0;
    border-right: 1px solid rgba(217, 231, 255, 0.2);
  }

  .site-main .elm-page__cert-rail-item:last-child {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .site-main .elm-page__container--stats {
    grid-template-columns: 1fr;
  }

  .site-main .elm-page__cert-rail {
    grid-template-columns: 1fr;
  }

  .site-main .elm-page__cert-rail-item {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 231, 255, 0.2);
  }

  .site-main .elm-page__cert-rail-item:last-child {
    border-bottom: 0;
  }
}

.site-main .company-page .company-page__section--manifesto {
  min-height: calc(80vh - 120px);
  padding: 72px 0 88px;
  background: var(--bleu-2);
}

.site-main .company-page .company-page__section--manifesto .company-page__container {
  width: min(var(--content-width), var(--container-width));
  min-height: calc(90vh - 220px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  text-align: left;
}

.site-main .company-page .company-page__section--manifesto .company-page__container > h1 {
  color: var(--bleu-1);
  line-height: 1.04;
  align-self: center;
}

.site-main .company-page .company-page__section--manifesto .company-page__container > section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.site-main .company-page .company-page__section--manifesto .company-page__container > section p {
  max-width: 72ch;
  color: rgba(1, 17, 59, 0.82);
  text-align: left;
  line-height: 1.45;
}

.site-main .company-page .company-page__section--manifesto .use_cases_btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange-1);
  color: var(--orange-2);
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main
  .company-page
  .company-page__section--manifesto
  .use_cases_btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .company-page .company-page__section--manifesto .use_cases_btn:hover,
.site-main
  .company-page
  .company-page__section--manifesto
  .use_cases_btn:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main
  .company-page
  .company-page__section--manifesto
  .use_cases_btn:hover::before,
.site-main
  .company-page
  .company-page__section--manifesto
  .use_cases_btn:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

/*
 * Core advantages : empilement sticky des cartes (effet « qui monte »).
 * Titre en flux normal, non sticky — seul le bloc des cartes joue le jeu sticky ; DA plate sur --gris.
 */
.site-main .company-page .company-page__section--core_advantages {
  padding: 88px 0 96px;
  background: var(--gris);
}

.site-main .company-page .company-page__section--core_advantages .company-page__container {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-main .company-page .company-page__section--core_advantages .company-page__core-heading {
  position: relative;
  z-index: 0;
  margin: 0;
  color: var(--noir);
  font-weight: 700;
  line-height: 1.06;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  .company-page__core-heading
  .company-page__core-title-inner {
  display: block;
  max-width: 16ch;
}

.site-main .company-page .company-page__section--core_advantages #grid_of_cards.company-page__core-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card {
  position: sticky;
  top: calc(var(--nav-bar-total-height) + 20px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 44px;
  min-height: min(78vh, 860px);
  margin: 0;
  padding: 34px 0;
  box-sizing: border-box;
  background: var(--gris);
  border-radius: 0;
  box-shadow: none;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card:nth-child(1) {
  z-index: 1;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card:nth-child(2) {
  z-index: 2;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card:nth-child(3) {
  z-index: 3;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card:nth-child(4) {
  z-index: 4;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card:nth-child(5) {
  z-index: 5;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card:nth-child(6) {
  z-index: 6;
}

.site-main .company-page .company-page__section--core_advantages .content_p {
  max-width: 62ch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-main .company-page .company-page__section--core_advantages .content_p h4 {
  margin: 0;
  color: var(--noir);
  line-height: 1.16;
  font-weight: 650;
}

.site-main .company-page .company-page__section--core_advantages .content_p h2 {
  color: var(--noir);
  line-height: 1.16;
}

.site-main .company-page .company-page__section--core_advantages .content_p p {
  margin: 0;
  color: rgba(32, 32, 32, 0.86);
  line-height: 1.5;
  text-align: left;
}

.site-main .company-page .company-page__section--core_advantages .content_circle {
  justify-self: center;
  align-self: center;
  width: min(448px, 100%);
  max-width: 100%;
  aspect-ratio: 1;
  height: auto;
  flex: 0 1 auto;
  border-radius: 50%;
  padding: clamp(20px, 2.8vw, 30px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 10px);
  text-align: center;
  background: rgba(153, 221, 136, 0.18);
  min-width: 0;
}

.site-main .company-page .company-page__section--core_advantages .content_circle > * {
  min-width: 0;
  max-width: 100%;
}

.site-main .company-page .company-page__section--core_advantages .content_circle h2,
.site-main .company-page .company-page__section--core_advantages .content_circle h4 {
  margin: 0;
  color: var(--noir);
  font-size: clamp(0.92rem, 0.82rem + 0.35vw, 1.06rem);
  font-weight: 650;
  line-height: 1.22;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.site-main .company-page .company-page__section--core_advantages .content_circle p {
  margin: 0;
  color: rgba(32, 32, 32, 0.86);
  font-size: clamp(0.72rem, 0.66rem + 0.22vw, 0.84rem);
  line-height: 1.32;
  text-align: center;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  #grid_of_cards.company-page__core-stack
  > .company-page__core-card:nth-child(even)
  .content_circle {
  background: rgba(151, 186, 240, 0.2);
}

@media (max-width: 900px) {
  .site-main
    .company-page
    .company-page__section--core_advantages
    #grid_of_cards.company-page__core-stack
    > .company-page__core-card {
    grid-template-columns: 1fr;
    min-height: min(78vh, 860px);
    justify-items: stretch;
    padding: 34px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-main
    .company-page
    .company-page__section--core_advantages
    #grid_of_cards.company-page__core-stack {
    isolation: auto;
    z-index: auto;
  }

  .site-main
    .company-page
    .company-page__section--core_advantages
    #grid_of_cards.company-page__core-stack
    > .company-page__core-card {
    position: relative;
    top: auto;
    min-height: 0;
    z-index: auto;
    padding: 34px 0;
  }

  .site-main .document_ai-page .document_ai-page__feature-grid,
  .site-main .agent_ai-page .agent_ai-page__feature-grid,
  .site-main .edge_ai-page .edge_ai-page__feature-grid {
    grid-template-rows: auto;
    grid-auto-rows: auto;
    isolation: auto;
    z-index: auto;
  }

  .site-main .document_ai-page .document_ai-page__feature-stack-slot,
  .site-main .agent_ai-page .agent_ai-page__feature-stack-slot,
  .site-main .edge_ai-page .edge_ai-page__feature-stack-slot {
    grid-row: auto;
    min-height: 0;
  }

  .site-main .document_ai-page .document_ai-page__feature-stack-slot > article,
  .site-main .agent_ai-page .agent_ai-page__feature-stack-slot > article,
  .site-main .edge_ai-page .edge_ai-page__feature-stack-slot > article {
    position: relative;
    top: auto;
    z-index: auto;
  }
}

.site-main .company-page .company-page__section--core_advantages .our_benchmarks_btn {
  align-self: center;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--orange-1);
  color: var(--orange-2);
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main
  .company-page
  .company-page__section--core_advantages
  .our_benchmarks_btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .company-page .company-page__section--core_advantages .our_benchmarks_btn:hover,
.site-main
  .company-page
  .company-page__section--core_advantages
  .our_benchmarks_btn:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main
  .company-page
  .company-page__section--core_advantages
  .our_benchmarks_btn:hover::before,
.site-main
  .company-page
  .company-page__section--core_advantages
  .our_benchmarks_btn:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .company-page .company-page__section--research_buisness {
  background: var(--bleu-1);
  padding: 94px 0 100px;
  border-top: 1px solid rgba(1, 17, 59, 0.14);
  border-bottom: 1px solid rgba(1, 17, 59, 0.14);
  background-image: linear-gradient(
    180deg,
    rgba(1, 17, 59, 0.015) 0%,
    rgba(1, 17, 59, 0.04) 100%
  );
}

.site-main .company-page .company-page__section--research_buisness,
.site-main .company-page .company-page__section--research_buisness h1,
.site-main .company-page .company-page__section--research_buisness h2,
.site-main .company-page .company-page__section--research_buisness h3,
.site-main .company-page .company-page__section--research_buisness h4,
.site-main .company-page .company-page__section--research_buisness h5,
.site-main .company-page .company-page__section--research_buisness h6,
.site-main .company-page .company-page__section--research_buisness p,
.site-main .company-page .company-page__section--research_buisness span,
.site-main .company-page .company-page__section--research_buisness strong,
.site-main .company-page .company-page__section--research_buisness a {
  color: var(--bleu-2) !important;
}

.site-main .company-page .company-page__section--research_buisness .company-page__container {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.site-main .company-page .company-page__section--research_buisness .company-page__research-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 52px;
}

.site-main .company-page .company-page__section--research_buisness .company-page__research-title {
  color: var(--bleu-2);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
}

.site-main .company-page .company-page__section--research_buisness .company-page__research-head > p {
  margin: 0;
  justify-self: end;
  margin-left: auto;
  color: var(--bleu-2);
  text-align: right;
  line-height: 1.52;
  max-width: 40ch;
  background: rgba(1, 17, 59, 0.05);
}

.site-main .company-page .company-page__section--research_buisness .company-page__research-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: clamp(20px, 3vw, 32px);
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(1, 17, 59, 0.12);
  border-color: rgba(1, 17, 59, 0.28);
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-media {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  overflow: hidden;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  border: 1px solid rgba(1, 17, 59, 0.22);
  filter: none;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-arrow {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 0;
  background: rgba(1, 17, 59, 0.84);
  box-shadow:
    0 0 0 2px rgba(1, 17, 59, 0.32),
    0 8px 18px rgba(1, 17, 59, 0.26);
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  z-index: 4;
  animation: companyTeamArrowPulse 1.8s ease-in-out infinite;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 9.2L7 4.8l4.5 4.4' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: translate(-50%, -50%);
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-bio {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(102%);
  padding: 18px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(1, 17, 59, 0.98) 0%,
    rgba(1, 17, 59, 0.95) 70%,
    rgba(1, 17, 59, 0.86) 100%
  );
  z-index: 3;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.22, 0.84, 0.28, 1);
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-bio p {
  margin: 0;
  color: var(--bleu-2) !important;
  font-size: clamp(0.95rem, 1.12vw, 1.1rem);
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 1px 1px rgba(1, 17, 59, 0.45);
}

.site-main
  .company-page
  .company-page__section--research_buisness
  .company-page__team-media.is-bio-open
  .company-page__team-bio,
.site-main
  .company-page
  .company-page__section--research_buisness
  .company-page__team-media.is-bio-open
  .company-page__team-bio {
  transform: translateY(0);
  pointer-events: auto;
}

.site-main
  .company-page
  .company-page__section--research_buisness
  .company-page__team-media.is-bio-open
  .company-page__team-arrow,
.site-main
  .company-page
  .company-page__section--research_buisness
  .company-page__team-media.is-bio-open
  .company-page__team-arrow {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  animation: none;
}

@keyframes companyTeamArrowPulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  color: var(--bleu-2);
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--bleu-2);
  text-align: center;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta strong {
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  font-weight: 700;
  line-height: 1.18;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta span {
  font-size: clamp(0.88rem, 0.98vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.9;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta .social-link {
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  color: white !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta .social-link:hover,
.site-main .company-page .company-page__section--research_buisness .company-page__team-meta .social-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: white !important;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 20px rgba(1, 17, 59, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta .social-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.16) 24%,
    rgba(255, 255, 255, 0) 62%
  );
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta .social-link:hover::before,
.site-main
  .company-page
  .company-page__section--research_buisness
  .company-page__team-meta
  .social-link:focus-visible::before {
  opacity: 0.94;
  filter: blur(8px);
}

.site-main .company-page .company-page__section--research_buisness .company-page__team-meta .social-link .social-link__icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
  .site-main .company-page .company-page__section--research_buisness .company-page__research-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-main .company-page .company-page__section--research_buisness .company-page__research-head > p {
    justify-self: start;
    margin-left: 0;
    text-align: left;
    max-width: none;
  }

  .site-main .company-page .company-page__section--research_buisness .company-page__research-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }
}

@media (max-width: 740px) {
  .site-main .company-page .company-page__section--research_buisness {
    padding: 72px 0 80px;
  }

  .site-main .company-page .company-page__section--research_buisness .company-page__research-team {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-main .company-page .company-page__section--research_buisness .company-page__research-title {
    max-width: none;
  }
}

.site-main .company-page .company-page__section--value_chain {
  background: var(--gris);
  padding: 86px 0 110px;
}

.site-main .company-page .company-page__section--value_chain .company-page__container {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-main .company-page .company-page__section--value_chain .company-page__container > h2 {
  max-width: 12ch;
  color: var(--noir);
  line-height: 1.06;
}

.site-main .company-page .company-page__section--value_chain #cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
}

.site-main .company-page .company-page__section--value_chain .company-page__value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.site-main .company-page .company-page__section--value_chain .company-page__value-icon {
  width: auto;
  height: clamp(64px, 10vw, 88px);
  max-width: min(100%, 96px);
  object-fit: contain;
  display: block;
  filter: none;
  shape-rendering: geometricPrecision;
}

.site-main .company-page .company-page__section--value_chain .company-page__value-icon * {
  shape-rendering: geometricPrecision;
}

.site-main .company-page .company-page__section--value_chain .company-page__value-card h2 {
  width: 100%;
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 2px solid rgba(1, 17, 59, 0.18);
  color: var(--noir);
  font-size: var(--fs-h4);
  line-height: 1.2;
}

.site-main .company-page .company-page__section--value_chain .company-page__value-card p {
  margin: 0;
  color: rgba(32, 32, 32, 0.92);
  line-height: 1.38;
  max-width: 28ch;
}

.site-main .company-page .company-page__section--value_chain .company-page__value-chain-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  align-self: center;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange-1);
  color: var(--orange-2);
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main
  .company-page
  .company-page__section--value_chain
  .company-page__value-chain-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .company-page .company-page__section--value_chain .company-page__value-chain-cta:hover,
.site-main
  .company-page
  .company-page__section--value_chain
  .company-page__value-chain-cta:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main
  .company-page
  .company-page__section--value_chain
  .company-page__value-chain-cta:hover::before,
.site-main
  .company-page
  .company-page__section--value_chain
  .company-page__value-chain-cta:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

@media (max-width: 1100px) {
  .site-main .company-page .company-page__section--value_chain #cards {
    gap: 28px;
  }
}

@media (max-width: 840px) {
  .site-main .company-page .company-page__section--value_chain #cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-main .company-page .company-page__section--value_chain .company-page__container > h2 {
    max-width: none;
  }
}

.site-main .home-page .home-page__section--trusted_by {
  min-height: calc(100vh - 120px);
  padding: 56px 0 96px 0;
  background: var(--bleu-2);
  color: var(--bleu-1);
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__container--trusted-by {
  width: min(var(--content-width), var(--container-width));
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-title {
  width: 100%;
  text-align: center;
  color: var(--bleu-1);
  font-weight: 600;
  line-height: 1.02;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-marquee::before,
.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16%;
  pointer-events: none;
  z-index: 3;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bleu-2) 0%,
    rgba(217, 231, 255, 0.99) 34%,
    rgba(217, 231, 255, 0.84) 58%,
    rgba(217, 231, 255, 0.36) 80%,
    rgba(217, 231, 255, 0) 100%
  );
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bleu-2) 0%,
    rgba(217, 231, 255, 0.99) 34%,
    rgba(217, 231, 255, 0.84) 58%,
    rgba(217, 231, 255, 0.36) 80%,
    rgba(217, 231, 255, 0) 100%
  );
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-track {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  will-change: transform;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-group {
  display: flex;
  align-items: center;
  gap: 96px;
  flex: 0 0 auto;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 110px;
  padding: 0;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
  cursor: pointer;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-logo {
  display: block;
  width: auto;
  height: 76px;
  max-width: 280px;
  max-height: 76px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.9) contrast(1.02) brightness(0.98);
  transform: scale(var(--trusted-logo-scale, 1));
  transform-origin: center;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-logo--atos {
  --trusted-logo-scale: 0.48;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-logo--wilo {
  --trusted-logo-scale: 1.82;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-logo--eglo {
  --trusted-logo-scale: 2.85;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-logo--vallonieres {
  --trusted-logo-scale: 1.72;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-marquee:hover
  .home-page__trusted-by-item:not(:hover) {
  opacity: 0.54;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-item:hover,
.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-item:focus-visible {
  opacity: 1;
  transform: translateY(-4px) scale(1.045);
  z-index: 4;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-item:hover
  .home-page__trusted-by-logo,
.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-item:focus-visible
  .home-page__trusted-by-logo {
  filter: saturate(1.14) contrast(1.08) brightness(1.04);
  transform: scale(calc(var(--trusted-logo-scale, 1) * 1.04));
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-item:focus-visible {
  outline: 2px solid rgba(1, 17, 59, 0.28);
  outline-offset: 8px;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-copy {
  width: min(100%, 1600px);
  align-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 520px);
  align-items: center;
  gap: 44px;
  margin: 0 auto;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-copy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  justify-self: start;
  width: 100%;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-copy
  h3 {
  color: var(--bleu-1);
  line-height: 1.04;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-copy
  p {
  color: rgba(1, 17, 59, 0.76);
  font-size: var(--fs-home-body-lg);
  line-height: 1.42;
  max-width: 44ch;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-copy-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__trusted-by-copy-art {
  display: block;
  width: min(100%, 630px);
  height: auto;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__pieces-svg {
  overflow: visible;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__pieces-svg
  .piece-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 920ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 280ms ease;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__pieces-svg.is-piece-active
  .piece-dot {
  opacity: 1;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__pieces-svg
  .piece-dot.is-active-piece-dot {
  opacity: 1;
  transform: translate(var(--burst-x, 0px), var(--burst-y, 0px));
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__pieces-svg
  .piece-cursor-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: #01113b;
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__pieces-svg.is-piece-active
  .piece-cursor-label {
  opacity: 1;
  transform: scale(1.03);
}

.site-main
  .home-page
  .home-page__section--trusted_by
  .home-page__pieces-svg
  .piece-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

.site-main
  .research-page
  .research-page__section--scienfitic_collective
  .home-page__pieces-svg {
  overflow: visible;
}

.site-main
  .research-page
  .research-page__section--scienfitic_collective
  .home-page__pieces-svg
  .piece-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 920ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 280ms ease;
}

.site-main
  .research-page
  .research-page__section--scienfitic_collective
  .home-page__pieces-svg.is-piece-active
  .piece-dot {
  opacity: 1;
}

.site-main
  .research-page
  .research-page__section--scienfitic_collective
  .home-page__pieces-svg
  .piece-dot.is-active-piece-dot {
  opacity: 1;
  transform: translate(var(--burst-x, 0px), var(--burst-y, 0px));
}

.site-main
  .research-page
  .research-page__section--scienfitic_collective
  .home-page__pieces-svg
  .piece-cursor-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: #01113b;
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.site-main
  .research-page
  .research-page__section--scienfitic_collective
  .home-page__pieces-svg.is-piece-active
  .piece-cursor-label {
  opacity: 1;
  transform: scale(1.03);
}

.site-main
  .research-page
  .research-page__section--scienfitic_collective
  .home-page__pieces-svg
  .piece-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

@keyframes trusted-by-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.site-main .home-page .home-page__section--what_we_do {
  padding: 96px 0;
  background: var(--gris);
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__container--what-we-do {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-card {
  min-height: 320px;
  padding: 34px 36px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: top;
  gap: 22px;
  text-align: left;
  box-shadow: none;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  align-self: flex-start;
  overflow: visible;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: #202020;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-logo {
  transform-origin: center;
  transform-box: fill-box;
  transition:
    opacity 580ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 680ms cubic-bezier(0.33, 0.86, 0.2, 1);
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-logo--dots {
  opacity: 1;
  transform: scale(1);
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-particles {
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 360ms ease 45ms,
    transform 520ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Morphables : un seul calque particules — pas de fondu entre deux SVG (supprime la pause) */
.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--morphable
  .home-page__what-we-do-particles {
  opacity: 0;
  transition: none;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--morphable[data-what-we-do-particles-hydrated]
  .home-page__what-we-do-particles {
  opacity: 1;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--particle-shape
  .home-page__what-we-do-logo--dots {
  opacity: 0;
  transform: scale(0.94);
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--particle-shape
  .home-page__what-we-do-particles {
  opacity: 1;
}

/* Remplit explicite : le <svg> a fill="none", certains moteurs héritent mal sur les cercles injectés */
.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-particles
  circle {
  fill: #202020;
  stroke: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-main
    .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-logo,
  .site-main
    .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-particles {
    transition: none;
  }

  .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-logo,
  .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-particles {
    transition: none;
  }
}

/* Repli sans .site-main : SVG / crossfade particules (mêmes valeurs, spécificité plus basse) */
.home-page .home-page__section--what_we_do .home-page__what-we-do-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: #202020;
}

.home-page .home-page__section--what_we_do .home-page__what-we-do-logo {
  transform-origin: center;
  transform-box: fill-box;
  transition:
    opacity 580ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 680ms cubic-bezier(0.33, 0.86, 0.2, 1);
}

.home-page .home-page__section--what_we_do .home-page__what-we-do-logo--dots {
  opacity: 1;
  transform: scale(1);
}

.home-page .home-page__section--what_we_do .home-page__what-we-do-particles {
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 360ms ease 45ms,
    transform 520ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-page .home-page__section--what_we_do .home-page__what-we-do-mark--morphable .home-page__what-we-do-particles {
  opacity: 0;
  transition: none;
}

.home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--morphable[data-what-we-do-particles-hydrated]
  .home-page__what-we-do-particles {
  opacity: 1;
}

.home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--particle-shape
  .home-page__what-we-do-logo--dots {
  opacity: 0;
  transform: scale(0.94);
}

.home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--particle-shape
  .home-page__what-we-do-particles {
  opacity: 1;
}

.home-page .home-page__section--what_we_do .home-page__what-we-do-particles circle {
  fill: #202020;
  stroke: none;
}

/* Zone curseur (comme piece-dot, plus léger) — --burst-x/y posés par main.js */
.home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--morphable
  .home-page__what-we-do-particles
  circle {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.2, 0.88, 0.22, 1);
}

.home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-mark--morphable
  .home-page__what-we-do-particles
  circle.is-active-what-we-do-particle {
  transform: translate(var(--burst-x, 0px), var(--burst-y, 0px));
}

@media (prefers-reduced-motion: reduce) {
  .site-main
    .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-mark--morphable
    .home-page__what-we-do-particles
    circle,
  .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-mark--morphable
    .home-page__what-we-do-particles
    circle {
    transition: none;
  }

  .site-main
    .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-mark--morphable
    .home-page__what-we-do-particles
    circle.is-active-what-we-do-particle,
  .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-mark--morphable
    .home-page__what-we-do-particles
    circle.is-active-what-we-do-particle {
    transform: none;
  }
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-card
  h3 {
  color: var(--bleu-1);
  font-size: var(--fs-home-card-title);
  line-height: 1.04;
  white-space: nowrap;
  align-self: flex-start;
  text-align: left;
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .home-page__what-we-do-card
  p {
  color: rgba(32, 32, 32, 0.78);
  font-size: var(--fs-home-body-md);
  line-height: 1.42;
  max-width: 44ch;
  text-align: left;
  align-self: flex-start;
}

.site-main .home-page .home-page__section--what_we_do .about_us_btn {
  align-self: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--orange-1);
  color: var(--orange-2);
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .home-page .home-page__section--what_we_do .about_us_btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .home-page .home-page__section--what_we_do .about_us_btn:hover,
.site-main
  .home-page
  .home-page__section--what_we_do
  .about_us_btn:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main
  .home-page
  .home-page__section--what_we_do
  .about_us_btn:hover::before,
.site-main
  .home-page
  .home-page__section--what_we_do
  .about_us_btn:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .home-page .home-page__section--partnership {
  --partnership-grid-width: 1080px;
  padding: 88px 0;
  background: var(--bleu-1);
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__container--partnership {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-title {
  color: white;
  line-height: 1.02;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, var(--partnership-grid-width));
  margin: 0 auto;
  gap: 0;
  border: 1px solid rgba(217, 231, 255, 0.3);
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card {
  aspect-ratio: 2 / 1;
  padding: 30px 34px 28px;
  border-right: 1px solid rgba(217, 231, 255, 0.3);
  border-bottom: 1px solid rgba(217, 231, 255, 0.3);
  background: transparent;
  color: rgba(217, 231, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:nth-child(2n) {
  border-right: 0;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-pion {
  flex-shrink: 0;
  width: clamp(86px, 8vw, 126px);
  height: clamp(86px, 8vw, 126px);
  aspect-ratio: 1;
  margin-left: 4px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1.5px solid var(--bleu-1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  transition:
    border-color 0.22s ease,
    opacity 0.22s ease;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-pion-img {
  display: block;
  width: 46%;
  height: auto;
  max-height: 68%;
  object-fit: contain;
  object-position: 50% 100%;
  opacity: 1;
  /* Silhouette noire → #d9e7ff (var --bleu-2) */
  filter: brightness(0) saturate(100%) invert(91%) sepia(12%) saturate(420%)
    hue-rotate(196deg) brightness(102%) contrast(101%);
  /* Ne pas animer `filter` : l’interpolation entre deux filtres donne des couleurs parasites (ex. #00f). */
  transition: none;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card
  h3 {
  margin-top: 2.5vh;
  color: white;
  font-size: var(--fs-home-card-title);
  line-height: 1.06;
  transition: color 0.22s ease;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card
  p {
  max-width: 33ch;
  color: rgba(217, 231, 255, 0.86);
  font-size: var(--fs-home-body-sm);
  line-height: 1.42;
  transition: color 0.22s ease;
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:hover,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:focus-within,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card.is-active {
  background: white;
  color: var(--bleu-1);
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:hover
  h3,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:focus-within
  h3,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card.is-active
  h3 {
  color: var(--bleu-1);
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:hover
  p,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:focus-within
  p,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card.is-active
  p {
  color: rgba(1, 17, 59, 0.76);
}

.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:hover
  .home-page__partnership-pion-img,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card:focus-within
  .home-page__partnership-pion-img,
.site-main
  .home-page
  .home-page__section--partnership
  .home-page__partnership-card.is-active
  .home-page__partnership-pion-img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(8%) sepia(52%) saturate(1990%)
    hue-rotate(215deg) brightness(88%) contrast(112%);
}

.site-main .home-page .home-page__section--partnership .contact_us_btn {
  align-self: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--orange-1);
  color: var(--orange-2);
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .home-page .home-page__section--partnership .contact_us_btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .home-page .home-page__section--partnership .contact_us_btn:hover,
.site-main
  .home-page
  .home-page__section--partnership
  .contact_us_btn:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main
  .home-page
  .home-page__section--partnership
  .contact_us_btn:hover::before,
.site-main
  .home-page
  .home-page__section--partnership
  .contact_us_btn:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .home-page .home-page__section--r\&d {
  min-height: 100vh;
  padding: 72px 0 0 0;
  background: var(--gris);
}

.site-main .home-page .home-page__section--r\&d .home-page__container--rd {
  width: min(var(--content-width), var(--container-width));
  min-height: calc(100vh - 144px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.70fr) minmax(260px, 0.77fr);
  align-items: center;
  gap: 40px;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-kicker {
  color: var(--bleu-1);
  font-size: var(--fs-home-kicker);
  font-weight: 700;
  line-height: 1.02;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-title {
  color: var(--noir);
  font-size: var(--fs-home-title);
  font-weight: 400;
  line-height: 1.06;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-text {
  max-width: 41ch;
  margin-top: 22px;
  color: rgba(32, 32, 32, 0.82);
  font-size: var(--fs-home-body-lg);
  line-height: 1.38;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-nn {
  display: block;
  width: min(100%, 680px);
  height: auto;
  transform: translate(4px, 8px);
  transform-origin: center right;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-nn__edges {
  stroke: color-mix(in srgb, var(--bleu-1) 22%, transparent);
  stroke-width: 1;
  stroke-linecap: round;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-nn__motion-path {
  fill: none;
  stroke: none;
  pointer-events: none;
  visibility: hidden;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-nn__flow-trace {
  fill: none;
  stroke: color-mix(in srgb, var(--bleu-1) 88%, #3d6cff);
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--bleu-1) 55%, transparent));
  pointer-events: none;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-nn__nodes circle {
  fill: var(--bleu-1);
  stroke: color-mix(in srgb, var(--bleu-1) 35%, #fff);
  stroke-width: 1;
}

.site-main .home-page .home-page__section--r\&d .home-page__rd-nn__packet-dot {
  fill: var(--bleu-1);
  stroke: color-mix(in srgb, #fff 88%, var(--bleu-1));
  stroke-width: 1.25;
  filter: drop-shadow(0 1px 3px rgba(1, 17, 59, 0.28));
  animation: home-page-rd-packet-dot 1.4s ease-in-out infinite;
}

@keyframes home-page-rd-packet-dot {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  14% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }

  86% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-main .home-page .home-page__section--r\&d .home-page__rd-nn__packet-dot {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.site-main .home-page .home-page__section--flagship_models {
  padding: 48px 0 72px;
  background: var(--bleu-2);
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__container--flagship-models {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-models-list {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-title {
  margin-bottom: 0;
  color: var(--bleu-1);
  line-height: 1.02;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-model {
  display: grid;
  /* Vidéo un peu plus étroite, colonne texte plus large */
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  align-content: start;
  padding-top: 100px;
  box-sizing: border-box;
  gap: clamp(64px, 6vw, 140px);
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-visual {
  position: relative;
  width: 100%;
  max-width: min(560px, 100%);
  justify-self: end;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(1, 17, 59, 0.08), rgba(1, 17, 59, 0.28)),
    radial-gradient(
      circle at 72% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 18%
    ),
    linear-gradient(135deg, #111f4d 0%, #0a163b 48%, #060d23 100%);
  box-shadow: 0 24px 48px rgba(1, 17, 59, 0.16);
}




.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-visual-mark {
  position: absolute;
  right: 11%;
  top: 12%;
  width: 28%;
  aspect-ratio: 1 / 1;
  background: url("../img/logo-mark.a9e0489b00ec.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(92%) sepia(7%) saturate(837%)
    hue-rotate(185deg) brightness(105%) contrast(102%);
  opacity: 0.9;
  z-index: 3;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-visual--digit
  .home-page__flagship-visual-mark {
  right: 17%;
  top: 24%;
  width: 24%;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-visual--audio
  .home-page__flagship-visual-mark {
  right: 13%;
  top: 20%;
  width: 24%;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  justify-self: start;
  width: 100%;
  max-width: min(100%, 580px);
  min-width: 0;
  gap: 14px;
  color: var(--bleu-1);
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-copy
  h3 {
  color: var(--bleu-1);
  font-size: var(--fs-home-subtitle);
  font-weight: 700;
  line-height: 1.02;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-subtitle {
  color: var(--bleu-1);
  font-size: var(--fs-home-card-subtitle);
  font-weight: 700;
  line-height: 1.18;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-text {
  max-width: min(100%, 48ch);
  color: rgba(1, 17, 59, 0.8);
  font-size: var(--fs-home-body-lg);
  line-height: 1.38;
}

.site-main .home-page .home-page__section--flagship_models .learn_more_btn {
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange-1);
  color: var(--orange-2);
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .learn_more_btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .learn_more_btn:hover,
.site-main
  .home-page
  .home-page__section--flagship_models
  .learn_more_btn:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .learn_more_btn:hover::before,
.site-main
  .home-page
  .home-page__section--flagship_models
  .learn_more_btn:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-model--audio {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-model--audio
  .home-page__flagship-copy {
  justify-self: end;
}

.site-main
  .home-page
  .home-page__section--flagship_models
  .home-page__flagship-model--audio
  .home-page__flagship-visual {
  justify-self: start;
}

.site-main .home-page .home-page__section--deployment {
  min-height: auto;
  padding: 72px 0 40px;
  background: var(--gris);
}

.site-main .home-page .home-page__section--deployment .home-page__container--deployment {
  width: min(var(--content-width), var(--container-width));
  min-height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-title {
  color: var(--bleu-1);
  line-height: 1.02;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-subtitle {
  color: var(--noir);
  font-size: var(--fs-home-subtitle);
  font-weight: 400;
  line-height: 1.06;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-lead {
  margin: 0;
  max-width: 62ch;
  color: rgba(32, 32, 32, 0.78);
  font-size: var(--fs-home-body-md);
  line-height: 1.45;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-carousel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-carousel-viewport {
  width: 100%;
  margin-top: 55px;
  border: 1px solid rgba(32, 32, 32, 0.22);
  background: rgba(255, 255, 255, 0.16);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-grid {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-grid::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-main .home-page .home-page__section--deployment .home-page__deployment-grid {
    scroll-behavior: auto;
  }
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-card {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: auto;
  padding: clamp(16px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-card + .home-page__deployment-card {
  border-left: 0;
  border-top: 0;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px clamp(16px, 2.5vw, 28px) clamp(16px, 2.5vw, 28px);
  flex: 0 0 auto;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-carousel--single .home-page__deployment-carousel-controls {
  display: none;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 12px;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-arrow {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--bleu-1);
  font-size: 26px;
  line-height: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-arrow:hover,
.site-main .home-page .home-page__section--deployment .home-page__deployment-arrow:focus-visible {
  color: rgba(1, 17, 59, 0.72);
  transform: scale(1.08);
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-dot-btn {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(1, 17, 59, 0.22);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-dot-btn:hover,
.site-main .home-page .home-page__section--deployment .home-page__deployment-dot-btn:focus-visible {
  background: rgba(1, 17, 59, 0.45);
  transform: scale(1.15);
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-dot-btn.is-active {
  background: var(--bleu-1);
  transform: scale(1.2);
}

/* On-Cloud / On-Premise / On-Device flow SVG (section déploiement) */
.site-main .home-page .home-page__section--deployment .oncloud-flow-wrapper {
  width: 100%;
  min-width: 0;
  margin: 12px 0 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  overflow-x: auto;
  box-sizing: border-box;
}

.site-main .home-page .home-page__section--deployment .oncloud-flow-svg {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 auto;
}

.site-main .home-page .home-page__section--deployment .ocf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--gris-texte);
  text-anchor: middle;
}

.site-main .home-page .home-page__section--deployment .ocf-phase-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: var(--gris-texte);
  opacity: 0.6;
  text-anchor: middle;
}

.site-main .home-page .home-page__section--deployment .ocf-card-bg {
  fill: var(--blanc);
  stroke: var(--gris-bordure);
  stroke-width: 1;
  transition: filter 0.25s ease;
}

.site-main .home-page .home-page__section--deployment .ocf-card:hover .ocf-card-bg {
  filter: brightness(0.97);
}

.site-main .home-page .home-page__section--deployment .ocf-card-bg-out {
  fill: var(--blanc);
  stroke: var(--gris-bordure);
}

.site-main .home-page .home-page__section--deployment .ocf-card-title {
  font-size: 12px;
  font-weight: 600;
  fill: var(--noir);
}

.site-main .home-page .home-page__section--deployment .ocf-card-sub {
  font-size: 10px;
  fill: var(--gris-texte);
}

.site-main .home-page .home-page__section--deployment .ocf-card-doc,
.site-main .home-page .home-page__section--deployment .ocf-card-img,
.site-main .home-page .home-page__section--deployment .ocf-card-audio {
  color: var(--bleu-1);
}

.site-main .home-page .home-page__section--deployment .ocf-arrow-line {
  stroke: url(#ocf-grad-orange);
  stroke-width: 2;
  stroke-dasharray: 6 4;
  opacity: 0.5;
}

.site-main .home-page .home-page__section--deployment .ocf-arrow-out {
  stroke: url(#ocf-grad-green);
}

.site-main .home-page .home-page__section--deployment .ocf-dc-bg {
  fill: url(#ocf-grad-blue);
  opacity: 0.95;
}

.site-main .home-page .home-page__section--deployment .ocf-dc-pulse {
  stroke: #01123c;
  stroke-width: 2;
  opacity: 0;
  animation: ocf-pulse 3s ease-in-out infinite;
}

@keyframes ocf-pulse {
  0%,
  100% {
    opacity: 0;
    stroke-width: 2;
  }
  50% {
    opacity: 0.25;
    stroke-width: 4;
  }
}

.site-main .home-page .home-page__section--deployment .ocf-dc-cloud {
  stroke: rgba(255, 255, 255, 0.6);
}

.site-main .home-page .home-page__section--deployment .ocf-dc-title {
  font-size: 16px;
  font-weight: 700;
  fill: #ffffff;
  text-anchor: middle;
}

.site-main .home-page .home-page__section--deployment .ocf-dc-sub {
  font-size: 10.5px;
  fill: rgba(255, 255, 255, 0.7);
  text-anchor: middle;
  letter-spacing: 0.04em;
}

.site-main .home-page .home-page__section--deployment .ocf-rack {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.site-main .home-page .home-page__section--deployment .ocf-rack-line {
  stroke: rgba(255, 255, 255, 0.18);
}

.site-main .home-page .home-page__section--deployment .ocf-rack-led {
  fill: #34d399;
}

.site-main .home-page .home-page__section--deployment .ocf-led-1 {
  animation: ocf-blink 1.5s ease-in-out infinite;
}

.site-main .home-page .home-page__section--deployment .ocf-led-2 {
  animation: ocf-blink 2s ease-in-out infinite 0.4s;
}

.site-main .home-page .home-page__section--deployment .ocf-led-3 {
  animation: ocf-blink 1.8s ease-in-out infinite 0.8s;
}

@keyframes ocf-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.site-main .home-page .home-page__section--deployment .ocf-json-brace {
  font-family: monospace;
  font-size: 13px;
  fill: var(--gris-texte);
}

.site-main .home-page .home-page__section--deployment .ocf-json-key {
  font-family: monospace;
  font-size: 10.5px;
  fill: #b83400;
}

.site-main .home-page .home-page__section--deployment .ocf-json-colon {
  font-family: monospace;
  font-size: 10.5px;
  fill: var(--gris-texte);
}

.site-main .home-page .home-page__section--deployment .ocf-json-val {
  font-family: monospace;
  font-size: 10.5px;
  fill: #0f8548;
}

.site-main .home-page .home-page__section--deployment .ocf-inputs,
.site-main .home-page .home-page__section--deployment .ocf-datacenter,
.site-main .home-page .home-page__section--deployment .ocf-outputs {
  animation: ocf-fadein 0.8s ease both;
}

.site-main .home-page .home-page__section--deployment .ocf-datacenter {
  animation-delay: 0.15s;
}

.site-main .home-page .home-page__section--deployment .ocf-outputs {
  animation-delay: 0.3s;
}

@keyframes ocf-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-heading {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--noir);
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-dot {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(1, 17, 59, 0.66);
  border-radius: 50%;
  flex: 0 0 auto;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bleu-1);
  transform: translate(-50%, -50%);
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-heading h4 {
  color: var(--noir);
  font-size: var(--fs-home-card-title);
  font-weight: 700;
  line-height: 1.15;
}

.site-main .home-page .home-page__section--deployment .home-page__deployment-card p {
  max-width: none;
  margin-left: 24px;
  margin-right: 24px;
  color: rgba(32, 32, 32, 0.82);
  font-size: var(--fs-home-body-md);
  line-height: 1.46;
  text-align: justify;
}

.site-main .home-page .home-page__section--deployment .contact_us_btn {
  align-self: center;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange-1);
  color: var(--orange-2);
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .home-page .home-page__section--deployment .contact_us_btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.14) 20%,
    rgba(255, 255, 255, 0) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .home-page .home-page__section--deployment .contact_us_btn:hover,
.site-main .home-page .home-page__section--deployment .contact_us_btn:focus-visible {
  box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
  transform: translateY(-1px);
}

.site-main .home-page .home-page__section--deployment .contact_us_btn:hover::before,
.site-main .home-page .home-page__section--deployment .contact_us_btn:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

/* Bespoke ELM — deployment : titres alignés à gauche (T1 tout gras, T2 regular) */
.site-main
  .elm-page.home-page
  .home-page__section--deployment.elm-page__deployment-section
  .home-page__container--deployment {
  align-items: flex-start;
  text-align: left;
}

.site-main
  .elm-page.home-page
  .home-page__section--deployment.elm-page__deployment-section
  .home-page__deployment-title.elm-page__deployment-title {
  align-self: stretch;
  max-width: none;
  width: 100%;
  font-weight: 700;
  text-align: left;
}

.site-main
  .elm-page.home-page
  .home-page__section--deployment.elm-page__deployment-section
  .home-page__deployment-subtitle {
  align-self: stretch;
  max-width: none;
  width: 100%;
  font-weight: 400;
  text-align: left;
}

.site-main
  .elm-page.home-page
  .home-page__section--deployment.elm-page__deployment-section
  .home-page__deployment-lead {
  align-self: stretch;
  max-width: none;
  width: 100%;
  text-align: left;
}

.site-main
  .elm-page.home-page
  .home-page__section--deployment.elm-page__deployment-section
  .home-page__deployment-card {
  text-align: left;
}

.site-main
  .elm-page.home-page
  .home-page__section--deployment.elm-page__deployment-section
  .home-page__deployment-heading {
  justify-content: flex-start;
}

/* Bespoke ELM — témoignages */
.site-main .elm-page__section--testimonies {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--bleu-1);
  color: #ffffff;
}

.site-main .elm-page__container--testimonies {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1.5vw, 16px);
}

.site-main .elm-page__testimonies-heading {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: left;
  width: 100%;
}

.site-main .elm-page__testimonies-subheading {
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  width: 100%;
  max-width: 38ch;
}

.site-main .elm-page__testimony-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(217, 231, 255, 0.28);
  box-sizing: border-box;
}

.site-main .elm-page__testimony-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #050d24;
  background-image: var(--elm-testimony-bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-main .elm-page__testimony-card-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(1, 17, 59, 0.94) 0%,
    rgba(1, 17, 59, 0.78) 48%,
    rgba(1, 17, 59, 0.55) 72%,
    rgba(1, 17, 59, 0.7) 100%
  );
  pointer-events: none;
}

.site-main .elm-page__testimony-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-sizing: border-box;
}

.site-main .elm-page__testimony-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.site-main .elm-page__testimony-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* Pas de width: 100% — sinon 3× flex-basis 100% se compriment dans une seule « page ». */
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .site-main .elm-page__testimony-track {
    transition: none;
  }
}

.site-main .elm-page__testimony-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  /* Largeur en px appliquée par JS (viewport) pour un slide fiable sur tous les navigateurs. */
}

.site-main .elm-page__testimony-slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 300px);
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px)
    clamp(12px, 2vw, 20px);
  box-sizing: border-box;
}

.site-main .elm-page__testimony-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 4px clamp(28px, 4vw, 48px) clamp(20px, 3vw, 28px);
  margin: 0;
}

.site-main .elm-page__testimony-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.site-main .elm-page__testimony-dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.site-main .elm-page__testimony-dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

.site-main .elm-page__testimony-dot:focus-visible {
  outline: 2px solid rgba(217, 231, 255, 0.95);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .site-main .elm-page__testimony-dot {
    transition: none;
  }

  .site-main .elm-page__testimony-dot.is-active {
    transform: none;
  }
}

.site-main .elm-page__testimony-quote {
  margin: 0;
  padding: 0;
  border: 0;
  quotes: none;
}

.site-main .elm-page__testimony-quote p {
  margin: 0 !important;
  font-size: var(--fs-home-body-lg) !important;
  font-weight: 400 !important;
  line-height: 1.48 !important;
  color: rgba(255, 255, 255, 0.94) !important;
  text-align: left;
  max-width: 52ch;
}

.site-main .elm-page__testimony-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(14px, 2vw, 20px);
  min-width: 0;
}

.site-main .elm-page__testimony-photo {
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(217, 231, 255, 0.45);
  box-sizing: border-box;
  flex-shrink: 0;
}

.site-main .elm-page__testimony-name {
  margin: 0;
  font-size: var(--fs-subtitle-sm);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.site-main .elm-page__testimony-meta {
  margin: 0;
  font-size: var(--fs-home-body-sm);
  font-weight: 400;
  line-height: 1.35;
  color: rgba(217, 231, 255, 0.88);
}

@media (max-width: 900px) {
  .site-main .elm-page__testimony-slide-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-main .elm-page__testimony-quote p {
    max-width: none;
    text-align: left;
  }

  .site-main .elm-page__testimony-aside {
    order: -1;
  }
}

@media (max-width: 1200px) {
  .container {
    width: min(var(--content-width), var(--container-width));
    margin-inline: auto;
  }

  /* Header / footer : pleine largeur comme au-dessus de 1200px (évite la nav à 80% centrée) */
  .site-header .container,
  .site-footer .container {
    width: 100%;
    max-width: var(--container-width);
  }

  .site-main .home-page .home-page__section--hero .home-page__container--hero {
    width: min(var(--content-width), var(--container-width));
    grid-template-columns: minmax(620px, 1.1fr) minmax(220px, 0.9fr);
    gap: 32px;
  }

  .site-main .elm-page.home-page .home-page__section--hero .home-page__container--hero {
    grid-template-columns: minmax(480px, 1.12fr) minmax(340px, 0.88fr);
    gap: 32px;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__container--trusted-by {
    gap: 44px;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__trusted-by-copy {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    gap: 32px;
  }

  .site-main
    .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-card {
    min-height: 290px;
    padding: 30px;
  }

  .site-main
    .home-page
    .home-page__section--partnership
    .home-page__partnership-card {
    aspect-ratio: 1 / 1;
    padding: 28px 24px 32px;
  }

  .site-main .home-page .home-page__section--r\&d .home-page__container--rd {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
    gap: 32px;
  }

  .site-main .home-page .home-page__section--r\&d .home-page__rd-nn {
    width: min(100%, 600px);
  }

}

@media (max-width: 991px) {
  /* Header bord à bord : pas de .container étroit ni barre aux coins arrondis */
  .site-header .container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .site-header .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    min-height: auto;
    border-radius: 0;
  }

  .site-header .header-inner .brand {
    flex: 0 1 auto;
    min-width: 0;
    margin-right: auto;
  }

  .site-header .header-inner .nav-cta {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .site-header .header-inner .nav-burger {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: 0;
  }

  /* Header bleu-1 : barres du burger lisibles (sinon currentColor ≈ noir sur fond #01113b) */
  :is(
      body.page-research,
      body.page-document-ai,
      body.page-voice-ai,
      body.page-agent-ai,
      body.page-edge-ai,
      body.page-alpha-model,
      body.page-contact
    )
    .site-header
    .header-inner
    .nav-burger {
    color: var(--bleu-2);
  }

  :is(
      body.page-research,
      body.page-document-ai,
      body.page-voice-ai,
      body.page-agent-ai,
      body.page-edge-ai,
      body.page-alpha-model,
      body.page-contact
    )
    .site-header
    .header-inner
    .nav-burger:hover,
  :is(
      body.page-research,
      body.page-document-ai,
      body.page-voice-ai,
      body.page-agent-ai,
      body.page-edge-ai,
      body.page-alpha-model,
      body.page-contact
    )
    .site-header
    .header-inner
    .nav-burger:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    outline: 2px solid rgba(217, 231, 255, 0.45);
    outline-offset: 2px;
  }

  .site-header .header-inner .site-nav {
    display: none;
    flex: 1 1 100%;
    order: 5;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: none;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid rgba(1, 17, 59, 0.1);
  }

  .site-header.is-nav-open .header-inner .site-nav {
    display: flex;
  }

  .site-header .header-inner .site-nav > .site-nav__link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(1, 17, 59, 0.08);
  }

  .site-header .header-inner .site-nav .site-nav__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(1, 17, 59, 0.08);
  }

  .site-header .header-inner .site-nav .site-nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    text-align: left;
  }

  .site-header .header-inner .site-nav .site-nav__item.is-submenu-open .site-nav__chevron {
    transform: rotate(225deg) translateY(-1px);
  }

  .site-header .header-inner .site-nav .site-nav__item--dropdown::after {
    display: none;
  }

  /* Desktop : :hover / :focus-within → translateX(-50 %). En colonne ça casse le panneau : on annule ici. */
  .site-header .header-inner .site-nav .site-nav__item:hover .site-nav__dropdown,
  .site-header .header-inner .site-nav .site-nav__item:focus-within .site-nav__dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    max-width: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  /* Même gabarit visuel que le mega-menu desktop : une colonne, gris, ombre légère, filets discrets */
  .site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    min-width: 0;
    width: 100%;
    max-width: none;
    margin: 6px 0 12px;
    padding: 0;
    border: 1px solid rgba(1, 17, 59, 0.1);
    background: var(--gris);
    box-shadow: 0 18px 40px rgba(1, 17, 59, 0.07);
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: visible;
  }

  .site-header
    .header-inner
    .site-nav
    .site-nav__item.is-submenu-open
    .site-nav__dropdown {
    display: grid;
  }

  .site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-group {
    padding: 20px 20px 22px;
    box-sizing: border-box;
  }

  .site-header
    .header-inner
    .site-nav
    .site-nav__item
    .site-nav__dropdown-group
    + .site-nav__dropdown-group {
    border-left: 0;
    border-top: 1px solid rgba(1, 17, 59, 0.08);
  }

  .site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-label {
    margin-bottom: 14px;
    color: rgba(1, 17, 59, 0.5);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-link {
    display: block;
    padding: 14px 0;
    border-top: 1px solid rgba(1, 17, 59, 0.06);
    color: var(--noir);
    font-size: 0.94rem;
    line-height: 1.1;
    text-decoration: none;
    transition:
      color 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-header
    .header-inner
    .site-nav
    .site-nav__item
    .site-nav__dropdown-group
    .site-nav__dropdown-link:first-of-type {
    border-top: 0;
  }

  .site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-title {
    display: block;
    margin-bottom: 6px;
    color: var(--bleu-1);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.15;
  }

  .site-header .header-inner .site-nav .site-nav__item .site-nav__dropdown-text {
    display: block;
    color: rgba(32, 32, 32, 0.72);
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .site-main .home-page .home-page__section--hero {
    min-height: auto;
    padding: 56px 0 40px;
  }

  .site-main .home-page .home-page__section--hero .home-page__container--hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    /* Desktop : 15vh — sur téléphone le titre part trop bas */
    padding: 5vh 0 0 0;
  }

  /* Accueil (body.page-home) : hero centré sur tablette / téléphone — body pour battre le media 767px */
  body.page-home .site-main .home-page .home-page__section--hero .home-page__container--hero {
    justify-items: center;
    padding-inline: clamp(16px, 4vw, 24px);
    box-sizing: border-box;
  }

  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-content {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: min(36rem, 100%);
    margin-inline: auto;
  }

  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-copy {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-heading {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-title {
    text-align: center;
  }

  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-title-soft {
    white-space: normal;
  }

  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-text {
    text-align: center;
    margin-inline: auto;
  }

  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-actions {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }

  body.page-document-ai
    .site-main
    .document_ai-page.home-page
    .home-page__section--hero.document_ai-page__section--hero
    .home-page__container--hero,
  body.page-voice-ai
    .site-main
    .voice_ai-page.document_ai-page.home-page
    .home-page__section--hero.document_ai-page__section--hero
    .home-page__container--hero,
  body.page-agent-ai
    .site-main
    .agent_ai-page.home-page
    .home-page__section--hero.agent_ai-page__section--hero
    .home-page__container--hero,
  body.page-edge-ai
    .site-main
    .edge_ai-page.home-page
    .home-page__section--hero.edge_ai-page__section--hero
    .home-page__container--hero {
    padding-top: 5vh;
  }

  .site-main .home-page .home-page__section--hero .home-page__hero-title,
  .site-main .home-page .home-page__section--hero .home-page__hero-text {
    max-width: none;
  }

  .site-main .home-page .home-page__section--hero .home-page__hero-visual {
    display: none;
  }

  .site-main .elm-page.home-page .home-page__section--hero .home-page__hero-visual.elm-page__hero-visual {
    display: flex;
    align-self: stretch;
    align-items: flex-end;
    justify-content: center;
    min-height: 0;
    padding: 24px 0 clamp(20px, 6vw, 48px);
  }

  .site-main .home-page .home-page__section--hero .solution-page__hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 8px 0 28px;
    transform: none;
  }

  .site-main .home-page .home-page__section--hero .solution-page__hero-image-frame {
    width: clamp(190px, 62vw, 280px);
    border-width: 6px;
  }

  .site-main .elm-page.home-page .home-page__section--hero .elm-page__hero-four-pieces-wrap {
    width: 100%;
    max-width: min(580px, 100%);
  }

  .site-main .home-page .home-page__section--trusted_by {
    min-height: auto;
    padding: 56px 0;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__container--trusted-by {
    min-height: auto;
    gap: 32px;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__trusted-by-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__trusted-by-copy-text {
    align-items: center;
    text-align: center;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__trusted-by-copy
    p {
    max-width: 100%;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__trusted-by-copy-visual {
    justify-content: center;
  }

  .site-main
    .home-page
    .home-page__section--trusted_by
    .home-page__trusted-by-item {
    min-width: 154px;
    min-height: 62px;
    padding: 0 22px;
  }

  .site-main .home-page .home-page__section--what_we_do {
    padding: 64px 0;
  }

  .site-main
    .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-main
    .home-page
    .home-page__section--what_we_do
    .home-page__what-we-do-card {
    min-height: auto;
    padding: 26px 24px;
  }

  .site-main .home-page .home-page__section--partnership {
    padding: 64px 0;
  }

  .site-main
    .home-page
    .home-page__section--partnership
    .home-page__partnership-grid {
    grid-template-columns: 1fr;
  }

  .site-main
    .home-page
    .home-page__section--partnership
    .home-page__partnership-card {
    aspect-ratio: auto;
    border-right: 0;
  }

  .site-main
    .home-page
    .home-page__section--partnership
    .home-page__partnership-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(217, 231, 255, 0.3);
  }

  .site-main
    .home-page
    .home-page__section--partnership
    .home-page__partnership-card:last-child {
    border-bottom: 0;
  }

  .site-main .home-page .home-page__section--r\&d {
    min-height: auto;
    padding: 64px 0;
  }

  .site-main .home-page .home-page__section--r\&d .home-page__container--rd {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-main .home-page .home-page__section--r\&d .home-page__rd-text {
    max-width: none;
  }

  .site-main .home-page .home-page__section--r\&d .home-page__rd-visual {
    justify-content: flex-start;
  }

  .site-main .home-page .home-page__section--deployment {
    min-height: auto;
    padding: 64px 0 48px;
  }

  .site-main .home-page .home-page__section--deployment .home-page__container--deployment {
    min-height: auto;
  }

  .site-main .home-page .home-page__section--deployment .home-page__deployment-carousel-viewport {
    margin-top: 36px;
  }

  .site-main .home-page .home-page__section--flagship_models {
    padding: 72px 0;
    background: var(--bleu-2);
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-models-list {
    gap: clamp(40px, 8vw, 56px);
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__container--flagship-models {
    width: min(var(--content-width), var(--container-width));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-title {
    margin-bottom: 22px;
    color: var(--bleu-1);
    line-height: 1.02;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-model {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(260px, 1.22fr);
    align-items: center;
    gap: 40px;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(1, 17, 59, 0.08), rgba(1, 17, 59, 0.28)),
      radial-gradient(
        circle at 72% 20%,
        rgba(255, 255, 255, 0.18),
        transparent 18%
      ),
      linear-gradient(135deg, #111f4d 0%, #0a163b 48%, #060d23 100%);
    box-shadow: 0 24px 48px rgba(1, 17, 59, 0.16);
  }


  

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-visual-mark {
    position: absolute;
    right: 11%;
    top: 12%;
    width: 28%;
    aspect-ratio: 1 / 1;
    background: url("../img/logo-mark.a9e0489b00ec.svg") center / contain no-repeat;
    filter: brightness(0) saturate(100%) invert(92%) sepia(7%) saturate(837%)
      hue-rotate(185deg) brightness(105%) contrast(102%);
    opacity: 0.9;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-visual--digit
    .home-page__flagship-visual-mark {
    right: 17%;
    top: 24%;
    width: 24%;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-visual--audio
    .home-page__flagship-visual-mark {
    right: 13%;
    top: 20%;
    width: 24%;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    color: var(--bleu-1);
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-copy
    h3 {
    color: var(--bleu-1);
    font-size: var(--fs-home-subtitle);
    line-height: 1.04;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-subtitle {
    color: var(--bleu-1);
    font-size: var(--fs-home-card-subtitle);
    font-weight: 700;
    line-height: 1.2;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-text {
    max-width: min(100%, 44ch);
    color: rgba(1, 17, 59, 0.8);
    font-size: var(--fs-home-body-lg);
    line-height: 1.42;
  }

  .site-main .home-page .home-page__section--flagship_models .learn_more_btn {
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    --cta-glow-x: 50%;
    --cta-glow-y: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--orange-1);
    color: var(--orange-2);
    font-size: var(--fs-home-cta);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 18px rgba(184, 52, 0, 0.16);
    transition:
      color 0.22s ease,
      background-color 0.22s ease,
      box-shadow 0.22s ease,
      transform 0.22s ease;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .learn_more_btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(
      circle at var(--cta-glow-x) var(--cta-glow-y),
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.14) 20%,
      rgba(255, 255, 255, 0) 58%
    );
    opacity: 0;
    filter: blur(7px);
    transition:
      opacity 0.22s ease,
      filter 0.22s ease;
    pointer-events: none;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .learn_more_btn:hover,
  .site-main
    .home-page
    .home-page__section--flagship_models
    .learn_more_btn:focus-visible {
    box-shadow: 0 14px 28px rgba(184, 52, 0, 0.2);
    transform: translateY(-1px);
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .learn_more_btn:hover::before,
  .site-main
    .home-page
    .home-page__section--flagship_models
    .learn_more_btn:focus-visible::before {
    opacity: 0.8;
    filter: blur(9px);
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-model--audio {
    grid-template-columns: minmax(240px, 1.22fr) minmax(220px, 0.78fr);
  }

  .site-footer .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
  }

  .site-footer .footer-inner .footer-brand,
  .site-footer .footer-inner .footer-social {
    margin: 0;
  }

  .site-footer .footer-inner .footer-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
    gap: 18px 28px;
  }

  .site-main .home-page .home-page__section--flagship_models {
    min-height: auto;
    padding: 64px 0;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-model,
  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-model--audio {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: clamp(20px, 5vw, 40px);
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-visual {
    box-sizing: border-box;
    width: min(100%, clamp(220px, 72vw, 320px));
    max-width: min(100%, clamp(220px, 72vw, 320px));
    margin-inline: auto;
    justify-self: center;
  }

  .site-main
    .home-page
    .home-page__section--flagship_models
    .home-page__flagship-model--audio
    .home-page__flagship-visual {
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--content-width), var(--container-width));
    margin-inline: auto;
  }

  /* Le header ne doit pas hériter du .container étroit : bandes blanches + barre « flottante » */
  .site-header .container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .site-header .header-inner .site-nav {
    gap: 14px 18px;
  }

  .site-header .header-inner .nav-cta {
    min-width: 98px;
    min-height: 42px;
  }

  .site-footer .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .site-footer .footer-inner .footer-brand,
  .site-footer .footer-inner .footer-social {
    justify-content: center;
    padding-right: 0;
    border-right: 0;
  }

  .site-footer .footer-inner .footer-social {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-footer .footer-inner .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-main .home-page .home-page__section--hero {
    padding: 40px 0 32px;
  }

  .site-main .home-page .home-page__section--hero .home-page__container--hero {
    width: min(var(--content-width), var(--container-width));
  }

  .site-main .home-page .home-page__section--hero .home-page__hero-content {
    gap: 22px;
  }

  .site-main .home-page .home-page__section--hero .home-page__hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-main .home-page .home-page__section--hero .cta-button {
    width: 100%;
    min-width: 0;
  }

  /* Accueil : après les règles génériques home-page — bloc CTA centré, pas collé aux bords */
  body.page-home .site-main .home-page .home-page__section--hero .home-page__hero-actions {
    align-items: center;
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
   Industry landing pages (gabarit type Defense : .industry-landing-page.home-page)
   -------------------------------------------------------------------------- */

.site-main .defense-page__container {
  width: min(var(--content-width), var(--container-width));
  margin: 0 auto;
}

/* Industry landing (Defense, Finance, Santé, Agriculture, …) — CTA hero : palette :root */
.site-main .industry-landing-page.home-page .home-page__section--hero .cta-button::before {
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    color-mix(in srgb, var(--gris) 34%, transparent) 0%,
    color-mix(in srgb, var(--gris) 14%, transparent) 20%,
    transparent 58%
  );
}

.site-main .industry-landing-page.home-page .home-page__section--hero .cta-button--primary {
  box-shadow: 0 8px 18px color-mix(in srgb, var(--orange-1) 16%, transparent);
}

/* Industry hero → section vidéo : supprime la fine bande claire (subpixel / fond body) */
.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  + .defense-page__section--video {
  margin-top: -6px;
}

/* Pages industry — titre deux lignes (sans nowrap sur longue phrase) : léger puis gras */
:is(body.page-finance-legal, body.page-health-public-sector, body.page-defense)
  .site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  > .home-page__hero-title-soft:first-of-type {
  margin-bottom: 6px;
  white-space: normal;
  max-width: 100%;
}

:is(body.page-finance-legal, body.page-health-public-sector, body.page-defense)
  .site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  > .home-page__hero-title-strong:last-of-type {
  margin-bottom: 0;
}

/* Agriculture — gras puis léger (déjà géré par .hero-title-strong / .hero-title-soft ; 2e ligne respire) */
body.page-industry-agriculture
  .site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__hero-title
  > .home-page__hero-title-soft:last-of-type {
  white-space: normal;
  max-width: 100%;
}

/* Pages industry — visuel hero centré (sans translateX défense sur une seule pièce) */
:is(
    body.page-finance-legal,
    body.page-health-public-sector,
    body.page-defense,
    body.page-industry-agriculture
  )
  .site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__hero-visual--defense
  .home-page__hero-pair-pieces--defense {
  transform: translate(0, clamp(-8px, -1.2vw, -20px));
}

@media (max-width: 991px) {
  :is(
      body.page-finance-legal,
      body.page-health-public-sector,
      body.page-defense,
      body.page-industry-agriculture
    )
    .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__hero-visual--defense
    .home-page__hero-pair-pieces--defense {
    transform: translate(0, 0);
  }
}

/* Industry — hero SVG (Defense, Finance, Santé, Agriculture) : même colonne, même sizing & responsive */
.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__hero-visual--defense {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: clamp(300px, 36vw, 440px);
  padding: clamp(20px, 3.5vw, 56px) 0 clamp(10px, 1.8vw, 28px)
    clamp(4px, 1.5vw, 20px);
  box-sizing: border-box;
  transform: translateY(clamp(-72px, -10vw, -120px));
}

.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__hero-pair-pieces--defense {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(100%, clamp(260px, 42vw, 440px));
  margin: 0 auto;
  gap: 0;
  transform: translate(
    clamp(8px, 2vw, 36px),
    clamp(-8px, -1.2vw, -20px)
  );
}

.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__piece-svg-mount--bouclier {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: min(100%, clamp(240px, 46vw, 420px));
  transform: none;
  will-change: transform;
}

@media (max-width: 1200px) {
  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__hero-visual--defense {
    min-height: clamp(260px, 40vw, 400px);
    transform: translateY(clamp(-48px, -6vw, -96px));
  }

  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__hero-pair-pieces--defense {
    max-width: min(100%, clamp(220px, 52vw, 400px));
  }

  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__piece-svg-mount--bouclier {
    max-width: min(100%, clamp(200px, 55vw, 380px));
  }
}

@media (max-width: 991px) {
  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__hero-visual--defense {
    display: flex;
    min-height: clamp(200px, 50vw, 300px);
    transform: none;
    padding: 12px 0 clamp(20px, 5vw, 40px);
  }

  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__hero-pair-pieces--defense {
    max-width: min(100%, clamp(220px, 72vw, 380px));
    transform: translate(0, 0);
  }

  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__piece-svg-mount--bouclier {
    max-width: min(100%, clamp(200px, 78vw, 360px));
  }
}

@media (max-width: 767px) {
  /* Industry / use-case : sur téléphone, pas de quadrillage ni de SVG « pièces » dans le hero */
  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__hero-quadrillage {
    display: none;
  }

  .site-main
    .industry-landing-page.home-page
    .home-page__section--hero
    .home-page__hero-visual.home-page__hero-visual--defense {
    display: none !important;
  }
}

.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__piece-svg-mount--bouclier
  .piece-cursor-label {
  display: none;
}

.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__piece-svg-mount--bouclier.home-page__pieces-svg--defense-wave:not(.is-piece-active)
  .piece-dot {
  animation: defense-dots-wave 2.6s ease-in-out infinite;
  animation-delay: var(--wave-delay, 0s);
}

.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__piece-svg-mount--bouclier.home-page__pieces-svg--defense-wave.is-piece-active
  .piece-dot,
.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .home-page__piece-svg-mount--bouclier.home-page__pieces-svg--defense-wave
  .piece-dot.is-active-piece-dot {
  animation: none;
}

@keyframes defense-dots-wave {
  0%,
  14%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  32% {
    transform: translate3d(
        calc(var(--wave-sway, 0px) * 0.8),
        calc(var(--wave-lift, 0px) * -0.95),
        0
      )
      scale(calc(1 + (var(--wave-scale, 1) - 1) * 0.5));
    opacity: 0.94;
  }
  48% {
    transform: translate3d(
        calc(var(--wave-sway, 0px) * 1.55),
        calc(var(--wave-lift, 0px) * -1.6 - 1.4px),
        0
      )
      scale(calc(1 + (var(--wave-scale, 1) - 1) * 1.08));
    opacity: 0.82;
  }
  68% {
    transform: translate3d(
        calc(var(--wave-sway, 0px) * 0.62),
        calc(var(--wave-lift, 0px) * 0.52),
        0
      )
      scale(calc(1 + (var(--wave-scale, 1) - 1) * 0.28));
    opacity: 0.95;
  }
}

.site-main .industry-landing-page.home-page .home-page__section--hero .cta-button--primary:hover,
.site-main
  .industry-landing-page.home-page
  .home-page__section--hero
  .cta-button--primary:focus-visible {
  box-shadow: 0 14px 28px color-mix(in srgb, var(--orange-1) 20%, transparent);
}

/* Section 2 — hauteur exactement un viewport (padding inclus via border-box) */
.site-main .defense-page__section--video {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  color: var(--bleu-2);
  overflow: hidden;
}

.site-main .defense-page__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--bleu-1) 92%, var(--noir)) 0%,
    color-mix(in srgb, var(--bleu-1) 78%, var(--noir)) 45%,
    color-mix(in srgb, var(--bleu-1) 62%, var(--noir)) 100%
  );
}

.site-main .defense-page__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.78) contrast(1.08) brightness(0.74);
  z-index: 1;
}

.site-main .defense-page__video-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bleu-1) 42%, transparent) 0%,
    color-mix(in srgb, var(--bleu-1) 58%, var(--noir) 12%) 50%,
    color-mix(in srgb, var(--bleu-1) 68%, var(--noir) 18%) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.site-main .defense-page__video-inner {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding-top: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(56px, 7vw, 112px);
  min-height: 0;
}

/* Même échelle typo que .document_ai-page__challenge-heading (titres de section) */
.site-main .defense-page__video-title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--bleu-2);
  font-size: clamp(1.85rem, 1.35rem + 1.1vw, 2.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
}

.site-main .defense-page__video-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 7vw, 96px);
  box-sizing: border-box;
  align-self: center;
  width: min(100%, 54rem);
  max-width: 100%;
  margin-top: clamp(56px, 8vh, 120px);
  text-align: left;
}

.site-main .defense-page__video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.5vw, 26px);
}

.site-main .defense-page__feature-icon {
  position: relative;
  color: var(--bleu-2);
  width: clamp(88px, 12vw, 112px);
  height: clamp(88px, 12vw, 112px);
  flex-shrink: 0;
}

.site-main .defense-page__clover {
  width: 100%;
  height: 100%;
  display: block;
}

/* Proche des sous-titres / cartes home (variables --fs-*) */
.site-main .defense-page__video-card-title {
  margin: 0;
  max-width: 100%;
  font-size: var(--fs-subtitle-md);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bleu-2);
  text-align: center;
}

.site-main .defense-page__video-card-text {
  margin: 0 !important;
  align-self: stretch;
  width: 100%;
  font-size: var(--fs-home-body-lg) !important;
  line-height: 1.45 !important;
  font-weight: 400;
  text-align: left;
  color: color-mix(in srgb, var(--bleu-2) 92%, var(--noir) 8%) !important;
}

/* Industry (Defense, Finance, Santé, Agriculture) — téléphone : section vidéo lisible, sans icône trèfle (4 cercles) */
@media (max-width: 767px) {
  .site-main .industry-landing-page.home-page .defense-page__section--video {
    height: auto;
    min-height: min(100dvh, 100svh);
    max-height: none;
    overflow: visible;
    align-items: stretch;
    padding-block: 0 clamp(40px, 10vw, 64px);
  }

  .site-main .industry-landing-page.home-page .defense-page__video-wrap {
    min-height: min(100dvh, 100svh);
  }

  .site-main .industry-landing-page.home-page .defense-page__video-inner {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 24px);
    padding-top: clamp(28px, 8vw, 48px);
    padding-bottom: clamp(20px, 5vw, 40px);
    gap: clamp(24px, 6vw, 40px);
    justify-content: flex-start;
  }

  .site-main .industry-landing-page.home-page .defense-page__video-title {
    text-align: left;
  }

  .site-main .industry-landing-page.home-page .defense-page__video-columns {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    gap: clamp(28px, 8vw, 44px);
  }

  .site-main .industry-landing-page.home-page .defense-page__video-card {
    align-items: stretch;
    gap: clamp(10px, 2.5vw, 16px);
  }

  .site-main .industry-landing-page.home-page .defense-page__feature-icon {
    display: none;
  }

  .site-main .industry-landing-page.home-page .defense-page__video-card-title {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-main .defense-page__video {
    display: none;
  }
}

/* Use cases + contact */
.site-main .defense-page__section--use-cases {
  padding: clamp(72px, 10vw, 120px) 0 clamp(88px, 11vw, 132px);
  background: var(--gris);
  color: var(--noir);
}

.site-main .defense-page__container--use-cases {
  text-align: left;
}

.site-main .defense-page__use-cases-heading {
  margin: 0 0 clamp(48px, 6vw, 80px);
  color: var(--noir);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
}

.site-main .defense-page__use-cases-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
  max-width: min(100%, 52rem);
}

.site-main .defense-page__use-case-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(14px, 2vw, 20px);
  row-gap: clamp(10px, 1.5vw, 14px);
  align-items: start;
}

.site-main .defense-page__use-case-icon {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 3.2vw, 34px);
  height: clamp(28px, 3.2vw, 34px);
  flex-shrink: 0;
  color: var(--noir);
  margin-top: 0.18em;
}

.site-main .defense-page__use-case-icon-svg {
  display: block;
  width: clamp(26px, 3vw, 32px);
  height: clamp(26px, 3vw, 32px);
}

.site-main .defense-page__use-case-title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--noir);
  line-height: 1.3;
}

.site-main .defense-page__use-case-text {
  grid-column: 2;
  grid-row: 2;
  margin: 0 !important;
  font-size: var(--fs-body) !important;
  font-weight: 400;
  line-height: 1.5 !important;
  color: color-mix(in srgb, var(--noir) 68%, transparent) !important;
}

/* Dernière section — fond bleu très clair ; CTA « our models » = pont entre use-cases et contact */
.site-main .defense-page__section--contact {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 32px) clamp(72px, 11vw, 120px);
  background: color-mix(in srgb, var(--bleu-2) 52%, var(--gris) 48%);
  color: var(--noir);
}

/* CTA centré sur la jonction gris / bleu (superposition des deux sections) */
.site-main .defense-page__models-cta-bridge {
  --defense-models-cta-half: clamp(22px, 3.5vw, 28px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
  min-height: calc(var(--defense-models-cta-half) * 2);
  margin-top: calc(var(--defense-models-cta-half) * -1);
  margin-bottom: calc(var(--defense-models-cta-half) * -1);
  padding: 0 clamp(20px, 4vw, 32px);
  pointer-events: none;
}

.site-main .defense-page__models-cta-bridge .cta-button {
  pointer-events: auto;
}

.site-main .defense-page__contact-layout {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
}

/* CTA section contact + pont « our models » = même composant que le hero Home (glow JS) */
.site-main .industry-landing-page.home-page .defense-page__section--contact .cta-button,
.site-main .industry-landing-page.home-page .defense-page__models-cta-bridge .cta-button,
.site-main .document_ai-page.home-page .document_ai-page__section--contact-form .cta-button,
.site-main .agent_ai-page.home-page .agent_ai-page__section--contact-form .cta-button,
.site-main .edge_ai-page.home-page .edge_ai-page__section--contact-form .cta-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .industry-landing-page.home-page .defense-page__section--contact .cta-button::before,
.site-main .industry-landing-page.home-page .defense-page__models-cta-bridge .cta-button::before,
.site-main .document_ai-page.home-page .document_ai-page__section--contact-form .cta-button::before,
.site-main .agent_ai-page.home-page .agent_ai-page__section--contact-form .cta-button::before,
.site-main .edge_ai-page.home-page .edge_ai-page__section--contact-form .cta-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    color-mix(in srgb, var(--gris) 34%, transparent) 0%,
    color-mix(in srgb, var(--gris) 14%, transparent) 20%,
    transparent 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .industry-landing-page.home-page .defense-page__section--contact .cta-button--primary,
.site-main .industry-landing-page.home-page .defense-page__models-cta-bridge .cta-button--primary,
.site-main .document_ai-page.home-page .document_ai-page__section--contact-form .cta-button--primary,
.site-main .agent_ai-page.home-page .agent_ai-page__section--contact-form .cta-button--primary,
.site-main .edge_ai-page.home-page .edge_ai-page__section--contact-form .cta-button--primary {
  background: var(--orange-1);
  color: var(--orange-2);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--orange-1) 16%, transparent);
}

.site-main .industry-landing-page.home-page .defense-page__section--contact .cta-button--primary:hover,
.site-main
  .industry-landing-page.home-page
  .defense-page__section--contact
  .cta-button--primary:focus-visible,
.site-main .industry-landing-page.home-page .defense-page__models-cta-bridge .cta-button--primary:hover,
.site-main
  .industry-landing-page.home-page
  .defense-page__models-cta-bridge
  .cta-button--primary:focus-visible,
.site-main .document_ai-page.home-page .document_ai-page__section--contact-form .cta-button--primary:hover,
.site-main
  .document_ai-page.home-page
  .document_ai-page__section--contact-form
  .cta-button--primary:focus-visible,
.site-main .agent_ai-page.home-page .agent_ai-page__section--contact-form .cta-button--primary:hover,
.site-main
  .agent_ai-page.home-page
  .agent_ai-page__section--contact-form
  .cta-button--primary:focus-visible,
.site-main .edge_ai-page.home-page .edge_ai-page__section--contact-form .cta-button--primary:hover,
.site-main
  .edge_ai-page.home-page
  .edge_ai-page__section--contact-form
  .cta-button--primary:focus-visible {
  box-shadow: 0 14px 28px color-mix(in srgb, var(--orange-1) 20%, transparent);
  transform: translateY(-1px);
}

.site-main .industry-landing-page.home-page .defense-page__section--contact .cta-button:hover::before,
.site-main
  .industry-landing-page.home-page
  .defense-page__section--contact
  .cta-button:focus-visible::before,
.site-main .industry-landing-page.home-page .defense-page__models-cta-bridge .cta-button:hover::before,
.site-main
  .industry-landing-page.home-page
  .defense-page__models-cta-bridge
  .cta-button:focus-visible::before,
.site-main .document_ai-page.home-page .document_ai-page__section--contact-form .cta-button:hover::before,
.site-main
  .document_ai-page.home-page
  .document_ai-page__section--contact-form
  .cta-button:focus-visible::before,
.site-main .agent_ai-page.home-page .agent_ai-page__section--contact-form .cta-button:hover::before,
.site-main
  .agent_ai-page.home-page
  .agent_ai-page__section--contact-form
  .cta-button:focus-visible::before,
.site-main .edge_ai-page.home-page .edge_ai-page__section--contact-form .cta-button:hover::before,
.site-main
  .edge_ai-page.home-page
  .edge_ai-page__section--contact-form
  .cta-button:focus-visible::before {
  opacity: 0.8;
  filter: blur(9px);
}

.site-main .defense-page__contact-copy {
  text-align: left;
  max-width: none;
  margin: 0;
  min-width: 0;
  padding-inline-end: clamp(20px, 3vw, 40px);
  border-inline-end: 1px solid color-mix(in srgb, var(--bleu-1) 18%, transparent);
}

.site-main .defense-page__contact-heading {
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  color: var(--noir);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.site-main .defense-page__contact-lead {
  max-width: min(100%, clamp(20rem, 46vw, 38rem));
  margin: 0 0 clamp(20px, 3vw, 28px) !important;
  font-size: var(--fs-body) !important;
  line-height: 1.55 !important;
  font-weight: 400;
  color: color-mix(in srgb, var(--bleu-1) 58%, var(--noir) 42%) !important;
}

.site-main .defense-page__contact-subheading {
  margin-bottom: 24px;
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--noir);
  line-height: 1.2;
}

.site-main .defense-page__contact-form-shell {
  width: 100%;
  min-width: 0;
  padding-inline-start: clamp(8px, 1.2vw, 16px);
}

.site-main .defense-page__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  margin: 0;
}

.site-main .defense-page__name-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 20px);
  width: 100%;
}

.site-main .defense-page__input,
.site-main .defense-page__textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-1) 38%, transparent);
  padding: 12px 8px 10px 2px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--noir);
  background: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-main .defense-page__input::placeholder,
.site-main .defense-page__textarea::placeholder {
  color: color-mix(in srgb, var(--noir) 42%, transparent);
}

.site-main .defense-page__textarea {
  min-height: 148px;
  resize: vertical;
}

.site-main .defense-page__input:focus-visible,
.site-main .defense-page__textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--bleu-1);
}

.site-main .defense-page__input:-webkit-autofill,
.site-main .defense-page__input:-webkit-autofill:hover,
.site-main .defense-page__input:-webkit-autofill:focus,
.site-main .defense-page__textarea:-webkit-autofill,
.site-main .defense-page__textarea:-webkit-autofill:hover,
.site-main .defense-page__textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--noir);
  caret-color: var(--noir);
  transition: background-color 99999s ease-out;
  box-shadow: 0 0 0 1000px color-mix(in srgb, var(--bleu-2) 52%, var(--gris) 48%) inset;
}

.site-main .defense-page__form-actions {
  display: flex;
  justify-content: right;
  margin-top: 10px;
}

.site-main .defense-page__form .defense-page__form-submit {
  align-self: center;
  margin-top: 0;
}

@media (max-width: 900px) {
  .site-main .defense-page__contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-main .defense-page__contact-copy {
    padding-inline-end: 0;
    border-inline-end: none;
    padding-block-end: clamp(24px, 4vw, 36px);
    border-block-end: 1px solid color-mix(in srgb, var(--bleu-1) 16%, transparent);
  }

  .site-main .defense-page__contact-form-shell {
    padding-inline-start: 0;
  }

  .site-main .defense-page__video-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-main .defense-page__name-row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Alpha model pages (AlphaOCR, AlphaASR, Custom ELM) — hero
   -------------------------------------------------------------------------- */
.site-main .alpha-model-hero {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  /* Même logique que le hero home : 100vh − 120px (header + marge), pas --nav-bar-total-height (~116px). */
  min-height: calc(100dvh - 120px);
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 40px) clamp(32px, 5vw, 48px);
  background: var(--bleu-1);
  color: var(--bleu-2);
}

.site-main .alpha-model-hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  min-height: 0;
}

.site-main .alpha-model-hero__titles {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(20px, 2.8vw, 36px);
  padding: clamp(16px, 3vw, 40px) 0;
  box-sizing: border-box;
}

/* AlphaASR & AlphaDigit (OCR) hero minimal */
body.page-alpha-asr .site-main .alpha-model-hero,
body.page-alpha-ocr .site-main .alpha-model-hero {
  position: relative;
  overflow: hidden;
  /* Hauteur plafonnée : hero lisible sans occuper tout l’écran (scroll plus tôt vers le contenu). */
  min-height: min(calc(102dvh - 120px), 880px);
  min-height: min(calc(102vh - 120px), 880px);
  height: min(calc(102dvh - 120px), 880px);
  height: min(calc(102vh - 120px), 880px);
}

body.page-alpha-asr .site-main .alpha-model-hero__inner.alpha-asr-hero__inner,
body.page-alpha-ocr .site-main .alpha-model-hero__inner.alpha-asr-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  min-height: 0;
}

body.page-alpha-asr .site-main .alpha-model-hero-branches,
body.page-alpha-ocr .site-main .alpha-model-hero-branches {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  overflow: hidden;
}

body.page-alpha-asr .site-main .alpha-model-hero-branches__svg,
body.page-alpha-ocr .site-main .alpha-model-hero-branches__svg {
  position: absolute;
  top: 50%;
  display: block;
  overflow: visible;
  transform: translateY(-50%);
}

body.page-alpha-asr .site-main .alpha-model-hero-branches__svg--left,
body.page-alpha-ocr .site-main .alpha-model-hero-branches__svg--left {
  left: 0;
}

body.page-alpha-asr .site-main .alpha-model-hero-branches__svg--right,
body.page-alpha-ocr .site-main .alpha-model-hero-branches__svg--right {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

body.page-alpha-asr .site-main .alpha-model-hero-branches__line,
body.page-alpha-ocr .site-main .alpha-model-hero-branches__line {
  fill: none;
  color: var(--bleu-2);
  stroke: var(--bleu-2);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.96;
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--bleu-2) 42%, transparent));
}

body.page-alpha-asr .site-main .alpha-model-hero-branches__line--spine,
body.page-alpha-ocr .site-main .alpha-model-hero-branches__line--spine {
  opacity: 0.92;
}

body.page-alpha-asr .site-main .alpha-asr-hero-pipeline,
body.page-alpha-ocr .site-main .alpha-asr-hero-pipeline {
  position: relative;
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: clamp(10px, 1.8vh, 28px);
  padding-inline: 0;
}

body.page-alpha-asr .site-main .alpha-asr-hero-pipeline > .alpha-model-hero__titles,
body.page-alpha-ocr .site-main .alpha-asr-hero-pipeline > .alpha-model-hero__titles {
  flex: 0 1 auto;
  width: min(calc(100vw - 32px), 42rem);
  max-width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(8px, 1.2vw, 16px);
}

@media (max-width: 900px) {
  body.page-alpha-asr .site-main .alpha-model-hero-branches,
  body.page-alpha-ocr .site-main .alpha-model-hero-branches {
    opacity: 0.72;
  }

  body.page-alpha-asr .site-main .alpha-asr-hero-pipeline,
  body.page-alpha-ocr .site-main .alpha-asr-hero-pipeline {
    min-height: 0;
    padding-block: clamp(14px, 3vw, 28px);
    padding-inline: clamp(8px, 2vw, 16px);
  }

  body.page-alpha-asr .site-main .alpha-model-hero,
  body.page-alpha-ocr .site-main .alpha-model-hero {
    min-height: 0 !important;
    height: auto !important;
    padding: clamp(12px, 3vw, 20px) clamp(14px, 3.5vw, 22px) clamp(16px, 3.5vw, 24px);
  }

  body.page-alpha-asr .site-main .alpha-asr-hero-pipeline > .alpha-model-hero__titles,
  body.page-alpha-ocr .site-main .alpha-asr-hero-pipeline > .alpha-model-hero__titles {
    width: min(calc(100vw - 24px), 42rem);
    flex: 0 0 auto;
  }

  body.page-alpha-asr .site-main .alpha-model-hero__titles,
  body.page-alpha-ocr .site-main .alpha-model-hero__titles {
    flex: 0 0 auto;
    padding: clamp(4px, 1.5vw, 12px) 0;
    gap: clamp(10px, 2vw, 18px);
  }

  body.page-alpha-asr .site-main .alpha-model-hero__title,
  body.page-alpha-ocr .site-main .alpha-model-hero__title {
    font-size: clamp(1.65rem, 1.2rem + 2.4vw, 2.65rem);
  }

  body.page-alpha-asr .site-main .alpha-model-hero__subtitle,
  body.page-alpha-ocr .site-main .alpha-model-hero__subtitle {
    font-size: clamp(1.05rem, 0.95rem + 0.9vw, 1.45rem) !important;
  }
}

.site-main .alpha-model-hero__title {
  margin: 0;
  color: var(--bleu-2);
  font-size: clamp(2.22rem, 1.48rem + 2.15vw, 3.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: min(100%, 36rem);
}

.site-main .alpha-model-hero__title + .alpha-model-hero__title {
  margin-top: clamp(8px, 1.2vw, 16px);
  max-width: min(100%, 42rem);
}

/* Sous-titre : proche de ~½ du titre (maquette produit), bien lisible sur bleu-1 */
.site-main .alpha-model-hero__subtitle {
  margin: 0 !important;
  max-width: min(100%, 42rem);
  font-size: clamp(1.58rem, 1.12rem + 1.15vw, 2.32rem) !important;
  line-height: 1.35 !important;
  font-weight: 500;
  color: color-mix(in srgb, var(--bleu-2) 93%, var(--gris) 7%) !important;
}

.site-main .alpha-model-hero__stats {
  flex-shrink: 0;
  align-self: center;
  width: auto;
  max-width: min(100%, 56rem);
  margin-top: clamp(20px, 3vw, 36px);
  padding: 0;
  background: var(--vert-2);
  color: var(--vert-1);
  border-radius: 999px;
  text-align: center;
  box-sizing: border-box;
  overflow: visible;
}

.site-main .alpha-model-hero__stats-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid color-mix(in srgb, var(--vert-1) 22%, transparent);
  background: color-mix(in srgb, var(--vert-1) 8%, transparent);
  box-sizing: border-box;
  border-radius: 999px;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .site-main .alpha-model-hero__stats-rail-item::before {
    transition: none;
  }
}

/* ASR hero : même bloc / styles que OCR, grille à 4 cases */
.site-main .alpha-model-hero__stats--cols-4 .alpha-model-hero__stats-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-main .alpha-model-hero__stats-rail-item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin: 0;
  padding: clamp(16px, 2.2vw, 22px) clamp(12px, 2vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.site-main .alpha-model-hero__stats-rail-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  border-radius: 0;
  transform: scale(1);
  transform-origin: center;
  transition:
    background-color 0.2s ease,
    transform 0.25s ease;
  pointer-events: none;
  will-change: transform;
}

/* Le bump épouse la pilule : arrondi côté pilule, droit côté intérieur */
.site-main .alpha-model-hero__stats-rail-item:first-child::before {
  border-radius: 999px 0 0 999px;
}

.site-main .alpha-model-hero__stats-rail-item:last-child::before {
  border-radius: 0 999px 999px 0;
}

/* Trait vertical centré : ne touche pas le haut ni le bas du rail */
.site-main .alpha-model-hero__stats-rail-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: clamp(52%, 2.25rem, 72%);
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--vert-1) 20%, transparent);
  pointer-events: none;
}

.site-main .alpha-model-hero__stats-rail-item:hover,
.site-main .alpha-model-hero__stats-rail-item:focus-within {
  z-index: 1;
}

.site-main .alpha-model-hero__stats-rail-item:hover::before,
.site-main .alpha-model-hero__stats-rail-item:focus-within::before {
  background: var(--vert-2);
  transform: scale(1.08);
}

.site-main .alpha-model-hero__stats-text,
.site-main .alpha-model-hero__stats-rail-name {
  margin: 0;
  font-size: clamp(1.02rem, 0.92rem + 0.35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--vert-1);
  letter-spacing: 0.02em;
}

.site-main .alpha-model-hero__stats-rail-name {
  display: block;
}

.site-main .alpha-model-hero__stats-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: clamp(1.02rem, 0.94rem + 0.3vw, 1.22rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--vert-1);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.site-main .alpha-model-hero__stats-cta:hover,
.site-main .alpha-model-hero__stats-cta:focus-visible {
  opacity: 0.85;
}

.site-main .alpha-model-hero__stats-cta:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--vert-1) 40%, transparent);
  outline-offset: 3px;
}

/* Alpha ASR / OCR — stats : même pilule 3 colonnes / séparateurs verticaux qu’au PC ; léger ajustement sur téléphone */
@media (max-width: 600px) {
  body.page-alpha-asr .site-main .alpha-model-hero__stats,
  body.page-alpha-ocr .site-main .alpha-model-hero__stats {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  body.page-alpha-asr .site-main .alpha-model-hero__stats-rail-item,
  body.page-alpha-ocr .site-main .alpha-model-hero__stats-rail-item {
    padding: clamp(10px, 2.2vw, 16px) clamp(6px, 1.4vw, 12px);
    min-width: 0;
  }

  body.page-alpha-asr .site-main .alpha-model-hero__stats-rail-name,
  body.page-alpha-ocr .site-main .alpha-model-hero__stats-rail-name {
    font-size: clamp(0.72rem, 0.66rem + 0.32vw, 0.95rem);
  }
}

/* Alpha model — zone démo (gif / vidéo traitement document) : plein viewport, blanc, vide pour l’instant */
.site-main .alpha-model-demo {
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--noir);
}

.site-main .alpha-model-demo__stage {
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Alpha model — Highlights : texte + four_pieces (JS) + emplacement vidéo comparaison vitesse */
.site-main .alpha-model-highlight {
  box-sizing: border-box;
  padding: clamp(56px, 8vw, 100px) clamp(20px, 4vw, 40px) clamp(64px, 9vw, 112px);
  background: var(--gris);
  color: var(--noir);
}

.site-main .alpha-model-highlight__inner {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}

.site-main .alpha-model-highlight__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.site-main .alpha-model-highlight__copy {
  text-align: left;
}

.site-main .alpha-model-highlight__title {
  margin: 0 0 clamp(24px, 3.2vw, 36px);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--noir);
}

.site-main .alpha-model-highlight__lead {
  margin: 0 !important;
  max-width: min(100%, 48rem);
  font-size: var(--fs-body) !important;
  line-height: 1.55 !important;
  font-weight: 400;
  color: color-mix(in srgb, var(--bleu-1) 42%, var(--noir) 58%) !important;
}

.site-main .alpha-model-highlight__art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(360px, 50vw);
}

.site-main .alpha-model-four-pieces {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.site-main .alpha-model-four-pieces__art {
  display: block;
  width: 100%;
  height: auto;
}

/* AlphaOCR / AlphaASR — CTA sur la jonction Highlights (gris) / Accuracy (bleu-2) */
.site-main .alpha-ocr-page .alpha-ocr-page__cta-between,
.site-main .alpha-asr-page .alpha-asr-page__cta-between {
  position: relative;
  z-index: 2;
  height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.site-main .alpha-ocr-page .alpha-ocr-page__cta-between-inner,
.site-main .alpha-asr-page .alpha-asr-page__cta-between-inner {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: min(var(--content-width), var(--container-width));
  margin: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.site-main .alpha-ocr-page .alpha-ocr-page__cta-between-inner .alpha-ocr-page__cta-api,
.site-main .alpha-asr-page .alpha-asr-page__cta-between-inner .alpha-asr-page__cta-api {
  pointer-events: auto;
}

.site-main .alpha-ocr-page .alpha-ocr-page__cta-api,
.site-main .alpha-asr-page .alpha-asr-page__cta-api {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --cta-glow-x: 50%;
  --cta-glow-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: var(--fs-home-cta);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--orange-2);
  background: var(--orange-1);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--orange-1) 16%, transparent);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.site-main .alpha-ocr-page .alpha-ocr-page__cta-api::before,
.site-main .alpha-asr-page .alpha-asr-page__cta-api::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--cta-glow-x) var(--cta-glow-y),
    color-mix(in srgb, var(--orange-2) 42%, transparent) 0%,
    color-mix(in srgb, var(--orange-2) 18%, transparent) 20%,
    color-mix(in srgb, var(--orange-2) 0%, transparent) 58%
  );
  opacity: 0;
  filter: blur(7px);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
  pointer-events: none;
}

.site-main .alpha-ocr-page .alpha-ocr-page__cta-api:hover::before,
.site-main .alpha-ocr-page .alpha-ocr-page__cta-api:focus-visible::before,
.site-main .alpha-asr-page .alpha-asr-page__cta-api:hover::before,
.site-main .alpha-asr-page .alpha-asr-page__cta-api:focus-visible::before {
  opacity: 0.78;
  filter: blur(9px);
}

.site-main .alpha-ocr-page .alpha-ocr-page__cta-api:hover,
.site-main .alpha-ocr-page .alpha-ocr-page__cta-api:focus-visible,
.site-main .alpha-asr-page .alpha-asr-page__cta-api:hover,
.site-main .alpha-asr-page .alpha-asr-page__cta-api:focus-visible {
  transform: translateY(-1px);
  color: var(--orange-2);
  background: color-mix(in srgb, var(--orange-1) 92%, var(--noir) 8%);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--orange-1) 20%, transparent);
}

.site-main .alpha-ocr-page .alpha-ocr-page__cta-api:focus-visible,
.site-main .alpha-asr-page .alpha-asr-page__cta-api:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--orange-1) 45%, var(--noir));
  outline-offset: 3px;
}

.site-main .alpha-ocr-page .alpha-ocr-page__qa-cta-wrap {
  margin-top: clamp(40px, 6vw, 56px);
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-main .alpha-model-highlight__speed-slot {
  box-sizing: border-box;
  width: 100%;
  min-height: clamp(280px, 42vw, 480px);
  border-radius: 0;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--bleu-1) 94%, var(--noir)) 0%,
    color-mix(in srgb, var(--bleu-1) 78%, var(--noir)) 100%
  );
  /* Emplacement réservé : vidéo comparaison deux modèles sur le même document */
}

/* four_pieces : même effet « explosion » que Home / Document AI (setupInteractiveFourPieces) */
.site-main .alpha-model-highlight .home-page__pieces-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.site-main .alpha-model-highlight .home-page__pieces-svg .piece-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 920ms cubic-bezier(0.2, 0.9, 0.25, 1), opacity 280ms ease;
}

.site-main .alpha-model-highlight .home-page__pieces-svg.is-piece-active .piece-dot {
  opacity: 1;
}

.site-main .alpha-model-highlight .home-page__pieces-svg .piece-dot.is-active-piece-dot {
  opacity: 1;
  transform: translate(var(--burst-x, 0px), var(--burst-y, 0px));
}

.site-main .alpha-model-highlight .home-page__pieces-svg .piece-cursor-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--bleu-1);
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.site-main .alpha-model-highlight .home-page__pieces-svg.is-piece-active .piece-cursor-label {
  opacity: 1;
  transform: scale(1.03);
}

.site-main .alpha-model-highlight .home-page__pieces-svg .piece-hotspot {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
}

@media (max-width: 900px) {
  .site-main .alpha-model-highlight__top {
    grid-template-columns: 1fr;
  }

  .site-main .alpha-model-highlight__art {
    order: -1;
    min-height: 0;
  }
}

/* AlphaOCR — Accuracy overview (fond bleu-2 : titre, onglets, texte centré, benchmark) */
.site-main .alpha-ocr-accuracy {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  /* Padding haut renforcé : place pour le CTA centré sur la jonction avec Highlights */
  padding: calc(clamp(56px, 8vw, 96px) + clamp(28px, 3.5vw, 44px)) clamp(20px, 4vw, 40px)
    clamp(64px, 9vw, 112px);
  background: var(--bleu-2);
  color: var(--noir);
}

.site-main .alpha-ocr-accuracy__inner {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-main .alpha-ocr-accuracy__heading {
  margin: 0 0 clamp(24px, 3.5vw, 40px);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bleu-1);
  text-align: left;
}

.site-main .alpha-ocr-accuracy__shell {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  /* margin-bottom: 3vw; */
}

.site-main .alpha-ocr-accuracy__tablist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
}

.site-main .alpha-ocr-accuracy__tab {
  position: relative;
  padding: clamp(10px, 1.4vw, 14px) clamp(18px, 2.2vw, 24px);
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, #ffffff 55%, transparent);
  color: color-mix(in srgb, var(--bleu-1) 78%, var(--noir));
  font-family: inherit;
  font-size: clamp(0.95rem, 0.88rem + 0.22vw, 1.05rem);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    transform 0.22s ease,
    box-shadow 0.28s ease;
}

.site-main .alpha-ocr-accuracy__tab:hover {
  color: var(--bleu-1);
  border-color: color-mix(in srgb, var(--bleu-1) 45%, transparent);
  transform: translateY(-1px);
}

.site-main .alpha-ocr-accuracy__tab:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bleu-1) 45%, transparent);
  outline-offset: 3px;
}

.site-main .alpha-ocr-accuracy__tab.is-active {
  color: var(--bleu-2);
  background: var(--bleu-1);
  border-color: var(--bleu-1);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--bleu-1) 22%, transparent);
  transform: translateY(-1px);
}

.site-main .alpha-ocr-accuracy__panels {
  position: relative;
  min-height: clamp(320px, 52vw, 480px);
}

/* Espacement sous les panneaux : uniquement OCR (contenu plus bas ; ASR garde le flux naturel). */
.page-alpha-ocr .site-main .alpha-ocr-accuracy__panels {
  padding-bottom: clamp(28px, 4vw, 56px);
}

.site-main .alpha-ocr-accuracy__panel {
  display: none;
}

.site-main .alpha-ocr-accuracy__panel.is-active {
  display: block;
}

.site-main .alpha-ocr-accuracy__panel.is-active .alpha-ocr-accuracy__compare {
  animation: alpha-ocr-accuracy-panel-in 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes alpha-ocr-accuracy-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-main .alpha-ocr-accuracy__panel.is-active .alpha-ocr-accuracy__compare {
    animation: none;
  }

  .site-main .alpha-ocr-accuracy__tab {
    transition: none;
  }

  .site-main .alpha-ocr-accuracy__tab:hover,
  .site-main .alpha-ocr-accuracy__tab.is-active {
    transform: none;
  }
}

.site-main .alpha-ocr-accuracy__compare:has(.ocr-showcase) {
  display: block;
  width: 100%;
  max-width: min(1040px, 100%);
  margin-inline: auto;
}

/* AlphaDigit — comparateur onde fictive / transcription (handle comme doc API OCR) */
.site-main .alpha-ocr-accuracy__compare[data-ocr-audio-transcript-compare] {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 14px);
  width: 100%;
  max-width: min(960px, 100%);
  margin-inline: auto;
}

/* AlphaASR — colonne stricte : en-tête / onde (canvas) / transcription */
.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-showcase {
  margin: 0;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare--stacked {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-height: min(420px, 72vh);
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 14%, transparent);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--bleu-1) 12%, transparent);
  background: var(--blanc, #fff);
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .alpha-asr-audio-compare__head {
  flex: 0 0 auto;
  order: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.6vw, 14px);
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-1) 12%, transparent);
  background: inherit;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pane--stack-top {
  order: 1;
  flex: 0 0 clamp(168px, 32vw, 240px);
  width: 100%;
  height: clamp(168px, 32vw, 240px);
  position: relative;
  z-index: 1;
  border-bottom: 1px solid color-mix(in srgb, var(--bleu-1) 12%, transparent);
  background: var(--blanc, #fff);
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-content--stack-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-waveform-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 2px solid var(--bleu-1, #01123c);
  background: rgba(255, 255, 255, 0.92);
  color: var(--bleu-1, #01123c);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--bleu-1) 22%, transparent);
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bleu-1) 45%, transparent);
  outline-offset: 2px;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-icon,
.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-pause-icon {
  width: 16px;
  height: 16px;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #b83400;
  z-index: 4;
  transition: width 0.08s linear;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pane--stack-bottom {
  order: 2;
  position: relative;
  z-index: 0;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #dbe8ff;
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-content--stack-text {
  flex: 1 1 auto;
  min-height: 0;
  box-sizing: border-box;
  padding: clamp(10px, 1.4vw, 16px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.site-main
  .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase]
  .alpha-asr-audio-compare__transcript-title {
  margin: 0 0 clamp(8px, 1.1vw, 14px);
}

.site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pre {
  margin: 0;
  width: 100%;
  padding: clamp(16px, 2vw, 24px) clamp(14px, 2.4vw, 28px) clamp(16px, 2vw, 24px) clamp(14px, 4vw, 120px);
  overflow: visible;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(0.95rem, 0.88rem + 0.22vw, 1.15rem);
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--bleu-1, #01123c);
  background: transparent;
  border: 0;
  box-sizing: border-box;
}

html.dark .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare--stacked {
  background: color-mix(in srgb, var(--noir) 94%, var(--bleu-1));
  border-color: color-mix(in srgb, var(--bleu-1) 22%, transparent);
}

html.dark .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pane--stack-top {
  background: color-mix(in srgb, var(--noir) 94%, var(--bleu-1));
}

html.dark .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pane--stack-bottom {
  background: color-mix(in srgb, var(--noir) 90%, var(--bleu-1));
}

html.dark .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pre {
  color: #e8e0d4;
}

html.dark
  .site-main
  .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase]
  .alpha-asr-audio-compare__transcript-title {
  color: color-mix(in srgb, #e8e0d4 82%, var(--bleu-2));
}

html.dark .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-btn {
  background: rgba(30, 30, 50, 0.9);
  border-color: #dbe8ff;
  color: #dbe8ff;
}

@media (max-width: 640px) {
  .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare--stacked {
    min-height: 360px;
  }

  .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pane--stack-top {
    flex-basis: 140px;
    height: 140px;
  }

  .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-compare-pre {
    padding: 16px 16px 16px 32px;
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-btn {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-btn {
    transition: none;
  }

  .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-play-btn:hover {
    transform: none;
  }

  .site-main .alpha-ocr-accuracy__compare[data-alpha-asr-audio-showcase] .audio-progress-bar {
    transition: none;
  }
}

/* AlphaOCR — bloc comparateur type doc API (image / texte, --ocr-compare-pos, canvas particules) */
.site-main .alpha-ocr-page .ocr-showcase {
  margin: 0;
}

.site-main .alpha-ocr-page .ocr-compare {
  --ocr-compare-pos: 50%;
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 14px 40px color-mix(in srgb, var(--bleu-1) 12%, transparent);
}

.site-main .alpha-ocr-page .ocr-compare-pane {
  position: absolute;
  inset: 0;
}

.site-main .alpha-ocr-page .ocr-compare-content {
  width: 100%;
  height: 100%;
}

.site-main .alpha-ocr-page .ocr-compare-pane-text {
  z-index: 0;
  background: color-mix(in srgb, var(--bleu-1) 14%, #dbe8ff);
}

.site-main .alpha-ocr-page .ocr-compare-pane-text .ocr-compare-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  min-height: 0;
  height: 100%;
  padding: clamp(10px, 1.6vw, 18px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.site-main .alpha-ocr-page .ocr-compare-pane-image {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--ocr-compare-pos)) 0 0);
  will-change: clip-path;
}

.site-main .alpha-ocr-page .ocr-compare-pane.ocr-dissolving {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.site-main .alpha-ocr-page .ocr-compare-pane.ocr-appearing {
  opacity: 0;
}

.site-main .alpha-ocr-page .ocr-compare-pane.ocr-visible {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.site-main .alpha-ocr-page .ocr-compare-pane-image .ocr-compare-content {
  background: #fff;
}

.site-main .alpha-ocr-page .ocr-compare-pane-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.site-main .alpha-ocr-page .ocr-compare-pre {
  align-self: center;
  width: min(100%, 42rem);
  max-width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  flex: 0 0 auto;
  padding: clamp(22px, 3.2vw, 44px) clamp(20px, 3.5vw, 40px);
  overflow: visible;
  white-space: pre-wrap;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(0.94rem, 0.84rem + 0.32vw, 1.12rem);
  line-height: 1.72;
  color: #2a2520;
  letter-spacing: 0.01em;
  text-align: left;
  box-sizing: border-box;
}

.site-main .alpha-ocr-page .ocr-handwritten-tag {
  color: var(--orange-1, #e85d04);
  font-weight: 700;
}

.site-main .alpha-ocr-page .ocr-compare-canvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  pointer-events: none;
}

html.dark .site-main .alpha-ocr-page .ocr-compare {
  background: color-mix(in srgb, var(--noir) 92%, var(--bleu-1));
  box-shadow: 0 14px 40px color-mix(in srgb, var(--noir) 35%, transparent);
}

html.dark .site-main .alpha-ocr-page .ocr-compare-pane-text {
  background: color-mix(in srgb, var(--noir) 88%, var(--bleu-1));
}

html.dark .site-main .alpha-ocr-page .ocr-compare-pre {
  color: #e8e0d4;
}

@media (max-width: 900px) {
  .site-main .alpha-ocr-page .ocr-compare-pre {
    width: min(100%, 36rem);
    padding: clamp(18px, 2.6vw, 32px) clamp(14px, 2.8vw, 28px);
    font-size: clamp(0.88rem, 0.8rem + 0.22vw, 1.02rem);
  }
}

@media (max-width: 640px) {
  .site-main .alpha-ocr-page .ocr-compare-pre {
    width: 100%;
    padding: clamp(14px, 2.2vw, 24px) clamp(12px, 2.4vw, 20px);
    font-size: clamp(0.84rem, 0.78rem + 0.18vw, 0.96rem);
    line-height: 1.68;
  }
}

.site-main .alpha-ocr-accuracy__compare-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  padding-inline: clamp(2px, 0.5vw, 6px);
}

.site-main .alpha-ocr-accuracy__compare-legend {
  font-size: clamp(0.68rem, 0.62rem + 0.16vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bleu-1) 50%, var(--noir));
}

.site-main .alpha-ocr-accuracy__compare-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(480px, 72vh);
  min-height: clamp(220px, 42vw, 360px);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 14%, transparent);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--bleu-1) 12%, transparent);
  touch-action: none;
  background: var(--gris);
}

.site-main .alpha-ocr-accuracy__compare-pane {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-main .alpha-ocr-accuracy__compare-pane--wave {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ocr-compare-pct, 50%)) 0 0);
}

.site-main .alpha-ocr-accuracy__compare-pane--transcript {
  z-index: 1;
  clip-path: inset(0 0 0 var(--ocr-compare-pct, 50%));
  box-sizing: border-box;
  padding: clamp(18px, 2.4vw, 28px);
  overflow: auto;
  background: #f6f7f9;
}

.site-main .alpha-ocr-accuracy__faux-wave {
  display: block;
  width: 100%;
  height: 100%;
}

.site-main .alpha-ocr-accuracy__transcript {
  margin: 0;
  font-size: clamp(0.92rem, 0.86rem + 0.2vw, 1.05rem);
  line-height: 1.55;
  color: var(--noir);
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.site-main .ocr-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: ew-resize;
  touch-action: none;
  transform: translateX(-50%);
  -webkit-tap-highlight-color: transparent;
}

.site-main .alpha-ocr-accuracy__compare[data-ocr-audio-transcript-compare] .ocr-compare-handle {
  left: var(--ocr-compare-pct, 50%);
  background: transparent;
}

.site-main .alpha-ocr-page .ocr-compare .ocr-compare-handle {
  left: var(--ocr-compare-pos, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  outline: none;
}

.site-main .alpha-ocr-accuracy__compare[data-ocr-audio-transcript-compare] .ocr-compare-handle:focus-visible {
  outline: 2px solid var(--bleu-1);
  outline-offset: 3px;
}

.site-main .alpha-ocr-page .ocr-compare .ocr-compare-handle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bleu-1) 55%, transparent);
  outline-offset: 2px;
}

.site-main .alpha-ocr-accuracy__compare[data-ocr-audio-transcript-compare] .ocr-compare-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--noir) 12%, transparent),
    0 6px 18px color-mix(in srgb, var(--bleu-1) 22%, transparent);
}

.site-main .alpha-ocr-accuracy__compare[data-ocr-audio-transcript-compare] .ocr-compare-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 18%, transparent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--noir) 10%, transparent);
}

.site-main .alpha-ocr-accuracy__source,
.site-main .alpha-ocr-accuracy__digitized {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-main .alpha-ocr-accuracy__source-label,
.site-main .alpha-ocr-accuracy__digitized-label {
  display: block;
  margin-bottom: clamp(12px, 1.5vw, 16px);
  font-size: clamp(0.72rem, 0.66rem + 0.18vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bleu-1) 55%, var(--noir));
}

.site-main .alpha-ocr-accuracy__source {
  box-sizing: border-box;
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 12%, transparent);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--bleu-1) 10%, transparent);
}

.site-main .alpha-ocr-accuracy__digitized {
  box-sizing: border-box;
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 4px;
  background: var(--gris);
  border: 1px solid color-mix(in srgb, var(--noir) 8%, transparent);
}

.site-main .alpha-ocr-accuracy__media {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: clamp(220px, 34vw, 300px);
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
  object-position: center;
  background: color-mix(in srgb, var(--noir) 4%, transparent);
}

.site-main .alpha-ocr-accuracy__media--digitized {
  background: color-mix(in srgb, var(--noir) 6%, #ffffff);
}

.site-main .alpha-ocr-accuracy__prose {
  padding-top: clamp(12px, 0, 20px);
  width: 70%;
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.site-main .alpha-ocr-accuracy__lead {
  margin: 0;
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.08rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--noir) 88%, var(--bleu-1));
}

.site-main .alpha-ocr-accuracy__benchmark {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* AlphaOCR — Chart.js factice : même gabarit visuel que les wraps ASR + overlay « Coming soon » */
.site-main .alpha-ocr-chart-shell {
  width: 100%;
  max-width: min(960px, 100%);
  margin-inline: auto;
}

.site-main .alpha-ocr-chart-wrap {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: clamp(20px, 3vw, 32px);
  background: var(--gris);
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 12%, transparent);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--bleu-1) 8%, transparent);
}

.site-main .alpha-ocr-efficiency .alpha-ocr-chart-wrap {
  border: 1px solid color-mix(in srgb, var(--bleu-1) 10%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--noir) 6%, transparent);
}

.site-main .alpha-ocr-chart-wrap canvas {
  display: block;
  width: 100%;
  max-height: min(420px, 70vh);
  filter: grayscale(0.75) contrast(0.95);
  opacity: 0.9;
}

.site-main .alpha-ocr-chart-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(246, 247, 251, 0.84) 48%,
    rgba(255, 255, 255, 0.72) 100%
  );
}

.site-main .alpha-ocr-chart-soon-overlay__text {
  padding: 0.12em 0.28em;
  font-size: clamp(1.65rem, 4vw + 0.55rem, 3.1rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bleu-1) 70%, var(--noir));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

/* AlphaASR — graphique WER (Chart.js) dans la section Accuracy */
.site-main .alpha-asr-page .alpha-asr-wer-chart-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px);
  background: var(--gris);
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 12%, transparent);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--bleu-1) 8%, transparent);
}

.site-main .alpha-asr-page .alpha-asr-wer-chart-wrap canvas {
  display: block;
  width: 100%;
  max-height: min(420px, 70vh);
}

/* AlphaASR — graphique temps d’inférence (Chart.js), section Efficiency */
.site-main .alpha-asr-page .alpha-asr-inference-chart-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px);
  background: var(--gris);
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--bleu-1) 10%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--noir) 6%, transparent);
}

.site-main .alpha-asr-page .alpha-asr-inference-chart-wrap canvas {
  display: block;
  width: 100%;
  max-height: min(440px, 72vh);
}

/* AlphaASR — déploiement (fond bleu clair, texte + schéma matériel) */
.site-main .alpha-asr-page .alpha-asr-deploy {
  box-sizing: border-box;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px) clamp(48px, 7vw, 80px);
  background: var(--bleu-2);
  color: var(--noir);
}

.site-main .alpha-asr-page .alpha-asr-deploy__inner {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
  align-items: stretch;
}

/* Sous-section 1 : titres seuls, pleine largeur */
.site-main .alpha-asr-page .alpha-asr-deploy__head {
  width: 100%;
  text-align: left;
}

.site-main .alpha-asr-page .alpha-asr-deploy__title,
.site-main .alpha-asr-page .alpha-asr-deploy__subtitle {
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.site-main .alpha-asr-page .alpha-asr-deploy__title {
  margin: 0 0 0.35em;
  font-weight: 700;
  color: var(--bleu-1);
}

.site-main .alpha-asr-page .alpha-asr-deploy__subtitle {
  margin: 0;
  font-weight: 400;
  color: color-mix(in srgb, var(--bleu-1) 92%, var(--noir));
}

/* Sous-section 2 : paragraphe à gauche (large), schéma à droite */
.site-main .alpha-asr-page .alpha-asr-deploy__split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  /* gap: clamp(24px, 4vw, 40px); */
  align-items: center;
  width: 100%;
}

.site-main .alpha-asr-page .alpha-asr-deploy__lead {
  margin: 0;
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.08rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--noir) 88%, var(--bleu-1));
}

.site-main .alpha-asr-page .alpha-asr-deploy__copy {
  max-width: 90%;
}
.site-main .alpha-asr-page .alpha-asr-deploy__diagram-wrap {
  width: 100%;
  max-width: min(650px, 100%);
  margin: 0 0 0 auto;
  justify-self: stretch;
}

.site-main .alpha-asr-page .alpha-asr-deploy__graph-host {
  width: 100%;
  min-height: clamp(200px, 32vw, 300px);
}

/* D3 : sans fill:none le navigateur remplit les Bézier → formes « sablier » noires */
.site-main .alpha-asr-page .alpha-asr-deploy-d3__link {
  fill: none;
  stroke: color-mix(in srgb, var(--bleu-1) 42%, transparent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-main .alpha-asr-page .alpha-asr-deploy-d3__motion {
  pointer-events: none;
}

.site-main .alpha-asr-page .alpha-asr-deploy-d3__sprite-icon {
  filter: drop-shadow(0 1px 2px color-mix(in srgb, var(--bleu-1) 18%, transparent));
}

/* Même pion que la home (partnership), teinté pour le fond bleu du hub ou les cartes claires */
.site-main
  .alpha-asr-page
  .alpha-asr-deploy-d3__node:has(.alpha-asr-deploy-d3__root-circle)
  image.home-page__partnership-pion-img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(12%) saturate(420%)
    hue-rotate(196deg) brightness(102%) contrast(101%);
}

.site-main .alpha-asr-page .alpha-asr-deploy__diagram {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(160px, 22vw, 220px);
}

.site-main .alpha-asr-page .alpha-asr-deploy__link {
  stroke: color-mix(in srgb, var(--bleu-1) 35%, transparent);
}

.site-main .alpha-asr-page .alpha-asr-deploy__node {
  fill: color-mix(in srgb, var(--bleu-2) 55%, #ffffff);
  stroke: color-mix(in srgb, var(--bleu-1) 22%, transparent);
  stroke-width: 1.5;
}

.site-main .alpha-asr-page .alpha-asr-deploy__node--hub {
  fill: color-mix(in srgb, var(--bleu-2) 40%, #ffffff);
  stroke: color-mix(in srgb, var(--bleu-1) 28%, transparent);
  stroke-width: 2;
}

.site-main .alpha-asr-page .alpha-asr-deploy__node-label {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  fill: var(--bleu-1);
}

.site-main .alpha-asr-page .alpha-asr-deploy__node-label--hub {
  font-size: 11px;
  font-weight: 700;
}

.site-main .alpha-asr-page .alpha-asr-deploy__node-label--long {
  font-size: 10px;
}

@media (max-width: 768px) {
  .site-main .alpha-asr-page .alpha-asr-deploy__split {
    grid-template-columns: 1fr;
  }

  .site-main .alpha-asr-page .alpha-asr-deploy__diagram-wrap {
    margin: 0 auto;
    max-width: 100%;
  }

  .site-main .alpha-ocr-accuracy__compare-viewport {
    aspect-ratio: 4 / 5;
    max-height: none;
  }
}

/* AlphaOCR — Efficiency overview : titre à gauche, texte à droite, benchmark en dessous */
.site-main .alpha-ocr-efficiency {
  box-sizing: border-box;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px) clamp(64px, 9vw, 112px);
  background: #ffffff;
  color: var(--noir);
}

.site-main .alpha-ocr-efficiency__inner {
  width: min(var(--content-width), var(--container-width));
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.site-main .alpha-ocr-efficiency__intro-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(16px, 2.4vw, 28px);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}

.site-main .alpha-ocr-efficiency__heading {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bleu-1);
  text-align: left;
}

.site-main .alpha-ocr-efficiency__intro {
  margin: 0;
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.08rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--noir) 88%, var(--bleu-1));
  text-align: left;
}

.site-main .alpha-ocr-efficiency__benchmark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .site-main .alpha-ocr-efficiency__intro-row {
    gap: clamp(12px, 2vw, 20px);
  }

  .site-main .alpha-ocr-efficiency__intro {
    font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1.02rem);
  }
}
