
@font-face {
  font-family: 'Matter';
  src: url('fonts/Matter-Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Matter-thin';
  src: url('fonts/Matter-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: auto;
}

/* reset */
* {
  margin: 0;

  --color-primary: #141414;
  --color-secondary: #A9C7FF;
  --color-accent: #3B82F6;
  --color-purple: #3B82F6;
  --color-white: #FFFFFF;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Matter';

  color: var(--color-white);
  background-color: var(--color-primary);
  overflow-x: hidden;
}

/* typo */
ul {
  padding: 0;
  list-style-type: none;
}

a {
  color: var(--color-white);
  text-decoration: none;
}

p {
  font-size: 15px;
  line-height: 150%;
  letter-spacing: -0.01em;
}

.h1 {
  font-family: "Matter-thin";
  font-size: clamp(44px, 12vw, 56px);
  line-height: 94%;
  letter-spacing: -0.03em;
}

.text--thin {
  font-family: 'Matter-thin'
}

.text--small {
  font-size: 13px;
  line-height: 16px;
}

@media screen and (min-width: 1000px) {
  .h1 {
      font-size: 64px;
      line-height: 88%;
      letter-spacing: -0.04em;
  }

  p.large {
      font-size: 18px;
      line-height: 150%;
      letter-spacing: -0.01em;
  }
}

/* colors */
.purple {
  color: var(--color-secondary);
}

.grey {
  color: var(--color-white);
  opacity: 0.6;
}

/* button */
.button {
  display: inline-flex;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;

  font-family: "Matter";
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.button--purple {
  background-color: var(--color-accent);
  color: #fff;
}

.button--black {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}

@media screen and (min-width: 1440px) {

  .button {
      padding: 13px 22px;
  }
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* header */
.navigation-container {
  min-height: 80px;
  padding: 20px 23px;

  background-color: var(--color-primary);
}

.brand-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav ul {
  gap: 18px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-nav {
  display: none;
  position: relative;
  margin-left: auto;
}

.mobile-nav summary {
  display: grid;
  gap: 4px;
  width: 42px;
  height: 42px;
  place-content: center;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: #fff;
}

.mobile-nav__panel {
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 50;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
}

.mobile-nav__panel a {
  padding: 12px 13px;
  border-radius: 9px;
  font-family: 'Matter-thin';
  font-size: 14px;
}

.mobile-nav__panel a:hover { background: rgba(255,255,255,.07); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media screen and (max-width: 999px) {
  .header-cta {
    display: none;
  }
  .nav {
    margin-left: auto;
  }

  .nav__item {
    font-size: 13px;
    white-space: nowrap;
  }

  .logo svg {
    width: 150px;
  }

  .brand-nav {
    gap: 10px;
  }

  .nav ul {
    gap: 12px;
  }
}

@media screen and (max-width: 640px) {
  .brand-nav .nav { display: none; }
  .mobile-nav { display: block; }
  .navigation-container { min-width: 0; }
  .h1 { font-size: clamp(38px, 11vw, 46px); line-height: .98; }
  .heading-content { width: 100%; overflow: hidden; }
  .hero-cta { gap: 8px; }
  .hero-cta .button { min-width: 0; padding-inline: 6px; font-size: 13px; }
}

.button--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
}

.header-navigation {
  z-index: 10;

  position: sticky;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1000px) {
  .navigation-container {
      min-height: 96px;
      padding: 26px 50px;

      background-color: transparent;
  }

  .header-navigation {
      position: fixed;
      width: 100%;
  }

  .hero-cta {
      display: none;
  }

  .nav__item {
      margin-left: 0;
  }

  .nav__item--button {
      margin-left: 40px;
  }
}

.logo svg {
  display: block;
  width: 190px;
  height: auto;
}

.nav a {
  opacity: .62;
}
.nav a:hover,
.nav .is-active a {
  opacity: 1;
}

@media screen and (min-width: 1440px) {

  .navigation-container {
      min-height: 104px;
      padding: 30px 120px;
  }

  .logo svg {
      width: 236px;
      height: auto;
  }

  .nav__item {
      font-size: 16px;
      line-height: 19px;
      margin-left: 6px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1439px) {
  .logo svg {
    width: 220px;
  }
}

@media screen and (max-width: 420px) {
  .navigation-container {
    padding-inline: 18px;
  }

  .brand-nav {
    gap: 10px;
  }

  .logo svg {
    width: 118px;
  }

  .nav__item {
    font-size: 11px;
  }

  .nav ul {
    gap: 8px;
  }
}

/* footer : barre à part, pas collée aux logos */
footer {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 28px 25px 36px 23px;
}

.footer-links li {
  margin-right: 22px;
}

@media screen and (min-width: 1000px) {
  footer {
    margin-top: 72px;
  }
  .footer-links {
    padding: 32px 50px 48px;
  }
}

@media screen and (min-width: 1440px) {
  .footer-links {
    padding: 36px 120px 56px;
  }
}

.footer-copy {
  opacity: .45;
}

.footer-brand {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.inner footer {
  border-top-color: rgba(20,20,20,.1);
  margin-top: 64px;
}

/* homepage */
.partners-strip {
  padding: 24px 0 30px;
  background: var(--color-primary);
}

.partners-label {
  padding: 0 23px 18px;
  font-family: "Matter-thin";
  font-size: 14px;
  color: var(--color-accent);
}

.logo-marquee {
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: partner-marquee 38s linear infinite;
}

.logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.logo-item {
  display: flex;
  width: 72px;
  height: 32px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 68px;
  max-height: 21px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .8;
}

.logo-item img.logo-raw {
  filter: none;
  max-height: 25px;
}

.logo-item--wide {
  width: 96px;
  flex-basis: 96px;
}

.logo-item img.logo-rcl {
  max-width: 94px;
  max-height: 30px;
}

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

.heading-content {
  padding: 52px 23px 36px;
}

.heading-lead {
  margin-top: 16px;
  max-width: 38em;
  font-family: "Matter-thin";
  font-size: 18px;
  line-height: 1.45;
  opacity: .7;
}

.sector-signal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 7px 11px 7px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .78);
  font-family: "Matter-thin";
  font-size: 12px;
  line-height: 1;
  letter-spacing: .01em;
  flex-wrap: wrap;
}

.sector-signal__cta {
  padding-left: 7px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  color: var(--color-secondary);
  font-family: "Matter";
}

.sector-signal__dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, .5);
  animation: sector-pulse 2.4s ease-out infinite;
}

@keyframes sector-pulse {
  0%, 45% { box-shadow: 0 0 0 0 rgba(245, 158, 11, .5); }
  75%, 100% { box-shadow: 0 0 0 7px rgba(245, 158, 11, 0); }
}

@media screen and (max-width: 420px) {
  .sector-signal {
    gap: 5px;
    padding-inline: 8px;
    font-size: 10.5px;
  }

  .sector-signal__cta {
    padding-left: 5px;
  }
}

.heading-image__rotate {
  display: none;
  width: 100%;
}

.heading-image img.heading-image__rotate.active {
  display: block;
}

.image--shy-plus {
  display: block;
  width: 74px;
  margin-top: 31px;
}

.hero-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.hero-cta .button {
  width: 100%;
  min-height: 50px;
  padding-inline: 10px;
}

@media screen and (min-width: 1000px) {

  .heading-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-areas:
        "copy image"
        "partners partners";
  }

  .hero-cta {
      display: none;
  }

  .heading-content {
      grid-area: copy;
      min-height: 650px;
      height: clamp(650px, calc(100vh - 120px), 820px);
  }

  .heading-image {
      grid-area: image;
  }

  .partners-strip {
      grid-area: partners;
      padding: 26px 50px 30px;
  }

  .partners-label {
      padding: 0 0 20px;
      font-size: 16px;
  }

  .logo-track {
      display: block;
      width: 100%;
      animation: none;
  }

  .logo-group:first-child {
      width: 100%;
      justify-content: space-between;
      gap: clamp(10px, 1.6vw, 24px);
      padding: 0;
  }

  .logo-group[aria-hidden="true"] {
      display: none;
  }

  .logo-item {
      width: clamp(74px, 7.2vw, 104px);
      height: 34px;
      flex-basis: clamp(74px, 7.2vw, 104px);
  }

  .logo-item img {
      max-width: 96px;
      max-height: 24px;
      opacity: .88;
  }

  .logo-item img.logo-raw {
      max-height: 28px;
  }

  .logo-item--wide {
      width: clamp(90px, 8.5vw, 120px);
      flex-basis: clamp(90px, 8.5vw, 120px);
  }

  .logo-item img.logo-rcl {
      max-width: 116px;
      max-height: 34px;
  }

  .heading-content {
      padding: 150px 40px 80px 50px;
      overflow: hidden;
  }

  .heading-content__floating {
      position: static;
      max-width: 100%;
  }

  .heading-lead {
      margin-top: 22px;
      max-width: 36em;
      font-size: 22px;
      line-height: 1.4;
      letter-spacing: -0.02em;
  }

  .sector-signal {
      margin-top: 24px;
      padding: 8px 13px 8px 10px;
      font-size: 13px;
  }

  .heading-image img {
      width: 100%;
      min-height: 650px;
      height: clamp(650px, calc(100vh - 120px), 820px);
      object-fit: cover;
      object-position: center;
  }

  .image--shy-plus {
      width: 100px;
      margin-top: 64px;
  }

  .heading-image {
      position: relative;
  }

  .heading-image::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;

      display: block;
      width: 100%;
      height: 130px;

      background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0) 100%);
      opacity: 0.4;
  }

}

@media screen and (min-width: 1440px) {

  .partners-strip {
      padding-inline: 120px;
  }

  .heading-content {
      padding: 170px 48px 0 120px;
  }

  .h1 {
      font-size: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }

  .logo-track {
    animation: none;
  }

  .sector-signal__dot {
    animation: none;
  }

  .logo-group[aria-hidden="true"] {
    display: none;
  }

  .logo-marquee {
    overflow-x: auto;
  }
}




/* helpers */
.hide-mobile {
  display: none;
}

.hide-desktop {
  display: block;
}

.centered {
  text-align: center;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.ml-4 {
  margin-left: 2px;
}

.header-navigation > .container {
  max-width: none;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 1000px) {
  .hide-mobile {
      display: block;
  }

  .hide-desktop {
      display: none;
  }

  .hide-tablet {
      display: none;
  }
}
.sponsored-image {
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    max-width: 100%;
    height: auto;
    width: auto;
  }
  .affiliate-image-mobile {
    display: block;
  }
  .affiliate-image-desktop {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .sponsored-image {
    .affiliate-image-desktop {
      display: block;
    }
    .affiliate-image-mobile {
      display: none;
    }
  }
}



/* inner pages : même header sombre que la home */
body.inner {
  color: var(--color-primary);
  background: #F3F2EE;
}
body.inner .header-navigation {
  background: var(--color-primary);
  position: sticky;
}
body.inner .navigation-container {
  background: var(--color-primary);
}
body.inner .logo svg {
  color: #fff;
}
body.inner .nav a,
body.inner .header-cta .button--ghost {
  color: #fff;
}
body.inner .footer-links a,
body.inner .footer-copy {
  color: #141414;
}
body.inner .grey { color: #141414; }

@media screen and (min-width: 1000px) {
  body.inner .navigation-container {
    background: var(--color-primary);
    min-height: 96px;
    padding: 26px 50px;
  }
  body.inner .docs { padding-top: 56px; }
  body.inner .sub-header { padding-top: 48px; }
  body.inner .legal { padding-top: 56px; }
}
@media screen and (min-width: 1440px) {
  body.inner .navigation-container {
    min-height: 104px;
    padding: 30px 120px;
  }
}

.sub-header { padding-top: 36px; padding-left: 25px; }
.sub-header p {
  font-family: "Matter-thin";
  font-size: 52px;
  line-height: 95%;
  letter-spacing: -0.03em;
}
.hire-main { padding: 40px 25px 80px; max-width: 747px; }
.hire-main .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  margin-bottom: 25px;
}
@media screen and (min-width: 1000px) {
  .sub-header { padding-top: 48px; padding-left: 50px; }
  .sub-header p { font-size: 80px; line-height: 80%; letter-spacing: -0.04em; }
  .hire-main { padding: 48px 0 80px 50px; max-width: 820px; }
}
@media screen and (min-width: 1440px) {
  .sub-header { padding-left: 120px; }
  .hire-main { padding-left: 120px; }
}

.form-success {
  display: none;
  padding: 24px 0;
  font-size: 18px;
}

.feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: feat;
}
.feat-list li {
  font-family: "Matter-thin";
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  padding: 18px 0;
  border-top: 1px solid rgba(20,20,20,.12);
  counter-increment: feat;
}
.feat-list li::before {
  content: counter(feat, decimal-leading-zero);
  display: inline-block;
  width: 2.4em;
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: .45;
  vertical-align: middle;
}
@media screen and (min-width: 1000px) {
  .feat-list li { font-size: 36px; padding: 22px 0; }
}

/* documentation */
.docs {
  padding: 36px 25px 100px;
}
.docs-intro h1 {
  font-family: "Matter-thin";
  font-weight: 400;
  font-size: 42px;
  line-height: .95;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}
.docs-intro p {
  max-width: 36em;
  opacity: .62;
  margin: 0 0 32px;
}
.docs-layout {
  display: block;
}
.docs-side {
  margin-bottom: 36px;
}
.docs-search input {
  width: 100%;
  font-family: "Matter-thin";
  font-size: 16px;
  letter-spacing: -0.02em;
  padding: 12px 0 11px;
  border: 0;
  border-bottom: 1px solid rgba(20,20,20,.16);
  background: transparent;
  color: #141414;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.docs-search input::placeholder { color: rgba(20,20,20,.32); }
.docs-cats {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.docs-cats::-webkit-scrollbar {
  display: none;
}
.docs-cats button {
  font-family: "Matter-thin";
  flex: 0 0 auto;
  font-size: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(20,20,20,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.36);
  color: #141414;
  opacity: .52;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.docs-cats button.is-on {
  opacity: 1;
  color: #fff;
  background: #141414;
  border-color: #141414;
}
.docs-section {
  margin: 0 0 56px;
  scroll-margin-top: 120px;
}
.docs-section h2 {
  font-family: "Matter";
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .38;
  margin: 0 0 6px;
}
.docs-item {
  padding: 26px 0 32px;
  border-top: 1px solid rgba(20,20,20,.1);
  scroll-margin-top: 120px;
}
.docs-item h3 {
  font-family: "Matter";
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.docs-item p,
.docs-item li {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  max-width: 62em;
}
.docs-item ul {
  margin: 10px 0 0;
  padding-left: 18px;
  list-style: disc;
}
.docs-item .how {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(20,20,20,.08);
  max-width: 62em;
}
.docs-item .how b {
  display: block;
  font-family: "Matter";
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .36;
  margin-bottom: 5px;
}
.docs-item .how p { margin: 0; opacity: .78; }
.docs-shot {
  margin: 20px 0 34px;
}
.docs-shot img {
  display: block;
  width: 100%;
  max-width: 1100px;
  border-radius: 12px;
  border: 1px solid rgba(20,20,20,.1);
  background: #fff;
}
.docs-empty {
  display: none;
  padding: 28px 0;
  opacity: .4;
  font-family: "Matter-thin";
  font-size: 18px;
}

.connector-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.connector-principles span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(20,20,20,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  font-family: "Matter-thin";
  font-size: 13px;
}

.connector-principles span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.connector-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0 4px;
}

.connector-family {
  padding: 17px;
  border: 1px solid rgba(20,20,20,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.48);
}

.connector-family__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.connector-family h4 {
  margin: 0;
  font-family: "Matter";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.connector-count {
  display: inline-flex;
  min-width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-accent);
  background: rgba(59,130,246,.1);
  font-family: "Matter";
  font-size: 11px;
}

.docs-item .connector-family > p {
  margin: 5px 0 0;
  font-family: "Matter-thin";
  font-size: 13px;
  line-height: 1.4;
  opacity: .56;
}

.docs-item .connector-family ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.docs-item .connector-family li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  font-family: "Matter-thin";
  font-size: 13px;
  line-height: 1.3;
}

.connector-dot {
  width: 5px;
  height: 5px;
  margin: 6px 8px 0 0;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.security-layers,
.deployment-grid,
.model-families {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0 4px;
}

.security-layer,
.deployment-card,
.model-families section {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(20,20,20,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.5);
}

.security-layer > span {
  display: inline-flex;
  min-width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--color-accent);
  background: rgba(59,130,246,.1);
  font-family: "Matter";
  font-size: 10px;
}

.security-layer h4,
.deployment-card h4,
.model-families h4 {
  margin: 0;
  font-family: "Matter";
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.docs-item .security-layer p {
  margin: 6px 0 0;
  font-family: "Matter-thin";
  font-size: 13px;
  line-height: 1.45;
  opacity: .62;
}

.trust-note {
  max-width: 62em;
  margin: 12px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--color-accent);
  background: rgba(59,130,246,.07);
}

.trust-note b {
  font-family: "Matter";
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.docs-item .trust-note p {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: .7;
}

.deployment-card--recommended {
  border-color: rgba(59,130,246,.42);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,.08);
}

.deployment-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deployment-card__head > span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--color-accent);
  background: rgba(59,130,246,.09);
  font-family: "Matter";
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.docs-item .deployment-card > p {
  margin: 11px 0 0;
  font-family: "Matter-thin";
  font-size: 13px;
  line-height: 1.45;
  opacity: .7;
}

.docs-item .deployment-card ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.docs-item .deployment-card li {
  position: relative;
  padding: 7px 0 7px 13px;
  border-top: 1px solid rgba(20,20,20,.08);
  font-family: "Matter-thin";
  font-size: 12px;
  line-height: 1.35;
}

.docs-item .deployment-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.docs-item .deployment-card .deployment-limit {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(20,20,20,.08);
  opacity: .55;
}

.model-families h4 {
  margin-bottom: 14px;
}

.docs-item .model-families p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(20,20,20,.08);
  font-family: "Matter-thin";
  font-size: 13px;
}

.model-families p span {
  text-align: right;
  font-size: 11px;
  opacity: .46;
}

.docs-item .model-caveat {
  max-width: 62em;
  margin: 12px 0 0;
  font-size: 12px;
  opacity: .52;
}

@media screen and (max-width: 359px) {
  .docs-item .connector-family ul {
    grid-template-columns: 1fr;
  }
}

/* cas d'usage : scénarios structurés du signal au contrôle */
.cases-page main {
  background: #F3F2EE;
}

.cases-hero {
  padding: 64px 25px 54px;
  color: #fff;
  background: var(--color-primary);
}

.cases-hero__copy {
  max-width: 920px;
}

.cases-eyebrow,
.cases-kicker {
  margin-bottom: 16px;
  color: var(--color-accent);
  font-family: "Matter";
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cases-hero h1 {
  max-width: 13em;
  font-family: "Matter-thin";
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.cases-hero__copy > p:last-child {
  max-width: 46em;
  margin-top: 24px;
  color: rgba(255, 255, 255, .64);
  font-family: "Matter-thin";
  font-size: 18px;
  line-height: 1.45;
}

.cases-hero__flow {
  display: flex;
  margin-top: 54px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 4px;
}

.cases-hero__flow span {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .76);
  font-family: "Matter-thin";
  font-size: 13px;
  white-space: nowrap;
}

.cases-hero__flow b {
  color: var(--color-accent);
  font-family: "Matter";
  font-size: 10px;
}

.cases-hero__flow i {
  width: clamp(24px, 5vw, 80px);
  height: 1px;
  flex: 0 1 80px;
  margin: 0 12px;
  background: rgba(255, 255, 255, .18);
}

.cases-intro {
  display: grid;
  width: 100%;
  padding: 64px 25px 52px;
  gap: 28px;
  border-bottom: 1px solid rgba(20, 20, 20, .12);
}

.cases-intro h2,
.cases-build h2 {
  max-width: 15em;
  font-family: "Matter-thin";
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.cases-intro > p {
  max-width: 48em;
  color: rgba(20, 20, 20, .66);
  font-family: "Matter-thin";
  font-size: 17px;
  line-height: 1.5;
}

.cases-browser {
  display: grid;
  width: 100%;
  padding: 48px 25px 88px;
  gap: 36px;
  scroll-margin-top: 112px;
}

.cases-toolbar {
  align-self: start;
}

.cases-search label {
  display: block;
  margin-bottom: 10px;
  font-family: "Matter";
  font-size: 12px;
}

.cases-search input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(20, 20, 20, .18);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, .7);
  color: var(--color-primary);
  font-family: "Matter-thin";
  font-size: 14px;
}

.cases-search input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

.cases-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.cases-filter-label {
  margin-top: 24px;
  color: rgba(20, 20, 20, .42);
  font-family: "Matter";
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cases-filters button {
  padding: 8px 11px;
  border: 1px solid rgba(20, 20, 20, .15);
  border-radius: 999px;
  background: transparent;
  color: rgba(20, 20, 20, .66);
  cursor: pointer;
  font-family: "Matter-thin";
  font-size: 12px;
}

.cases-filters button:hover,
.cases-filters button.is-on,
.cases-filters button:focus-visible {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.cases-count {
  margin-top: 16px;
  color: rgba(20, 20, 20, .46);
  font-size: 12px;
}

.cases-grid {
  display: grid;
  gap: 18px;
}

.use-case-card {
  padding: 26px;
  border: 1px solid rgba(20, 20, 20, .12);
  border-radius: 14px;
  background: #fff;
}

.use-case-card__meta {
  display: flex;
  min-height: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.use-case-card h2 {
  margin-top: 16px;
  font-family: "Matter";
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.use-case-persona {
  margin-top: 10px;
  color: rgba(20, 20, 20, .66);
  font-size: 13px;
}

.use-case-situation {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 2px solid var(--color-accent);
  background: rgba(59, 130, 246, .055);
}

.use-case-situation b {
  color: #1C58BD;
  font-family: "Matter";
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.use-case-situation p {
  margin-top: 5px;
  color: rgba(20, 20, 20, .72);
  font-family: "Matter-thin";
  font-size: 15px;
  line-height: 1.5;
}

.use-case-flow {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid rgba(20, 20, 20, .1);
}

.use-case-flow > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 13px 0;
  gap: 14px;
  border-bottom: 1px solid rgba(20, 20, 20, .1);
}

.use-case-flow span,
.use-case-tools > span {
  color: rgba(20, 20, 20, .44);
  font-family: "Matter";
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.use-case-flow p {
  color: rgba(20, 20, 20, .72);
  font-size: 13px;
  line-height: 1.45;
}

.use-case-tools {
  margin-top: 18px;
}

.use-case-tools ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.use-case-tools li {
  padding: 6px 8px;
  border-radius: 5px;
  background: #F0F3FA;
  color: #34435D;
  font-family: "Matter-thin";
  font-size: 11px;
}

.use-case-control {
  margin-top: 20px;
  padding: 14px;
  border-radius: 8px;
  background: #EAF0FF;
}

.use-case-control b {
  color: #1C58BD;
  font-family: "Matter";
  font-size: 11px;
}

.use-case-control p {
  margin-top: 4px;
  color: #40506B;
  font-size: 12px;
  line-height: 1.45;
}

.cases-empty {
  display: none;
  padding: 30px;
  border: 1px dashed rgba(20, 20, 20, .22);
  border-radius: 12px;
  color: rgba(20, 20, 20, .6);
  text-align: center;
}

.cases-build {
  padding: 72px 25px 80px;
  color: #fff;
  background: var(--color-primary);
}

.cases-build .cases-kicker {
  color: var(--color-secondary);
}

.cases-build__grid {
  display: grid;
  max-width: 1180px;
  margin-top: 44px;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.cases-build__grid p {
  display: flex;
  min-height: 150px;
  padding: 22px;
  flex-direction: column;
  gap: 16px;
  background: var(--color-primary);
}

.cases-build__grid b {
  color: var(--color-secondary);
  font-family: "Matter";
  font-size: 13px;
}

.cases-build__grid span {
  color: rgba(255, 255, 255, .68);
  font-family: "Matter-thin";
  font-size: 15px;
  line-height: 1.45;
}

.cases-build__cta {
  display: flex;
  max-width: 520px;
  margin-top: 36px;
  gap: 10px;
}

.cases-build__cta .button {
  flex: 1;
}

@media screen and (min-width: 760px) {
  .cases-intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
    align-items: end;
  }

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

@media screen and (min-width: 1000px) {
  .cases-hero {
    padding: 92px 50px 64px;
  }

  .cases-intro {
    padding: 76px 50px 60px;
  }

  .cases-browser {
    grid-template-columns: 250px minmax(0, 1fr);
    padding: 56px 50px 110px;
  }

  .cases-toolbar {
    position: sticky;
    top: 130px;
  }

  .cases-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .cases-filters button {
    width: 100%;
    padding: 9px 12px;
    border: 0;
    border-left: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    text-align: left;
  }

  .cases-filters button:hover,
  .cases-filters button.is-on,
  .cases-filters button:focus-visible {
    border-left-color: var(--color-accent);
    background: rgba(59, 130, 246, .08);
    color: #1C58BD;
  }

  .use-case-card {
    padding: 30px 32px;
  }

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

  .use-case-flow > div {
    display: block;
    min-width: 0;
    padding: 16px 22px 10px 0;
    border-right: 1px solid rgba(20, 20, 20, .1);
    border-bottom: 0;
  }

  .use-case-flow > div + div {
    padding-left: 22px;
  }

  .use-case-flow > div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .use-case-flow p {
    margin-top: 8px;
  }

  .cases-build {
    padding: 90px 50px 100px;
  }
}

@media screen and (min-width: 1440px) {
  .cases-hero {
    padding-inline: 120px;
  }

  .cases-intro,
  .cases-browser,
  .cases-build {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media screen and (min-width: 1800px) {
  .cases-browser {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 64px;
  }

  .use-case-card {
    padding: 34px 40px;
  }
}

@media screen and (max-width: 520px) {
  .cases-hero__copy > p:last-child {
    font-size: 16px;
  }

  .use-case-card {
    padding: 21px;
  }

  .use-case-card h2 {
    font-size: 25px;
  }

  .use-case-flow > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

.legal {
  padding: 40px 25px 100px;
  max-width: 720px;
}
.legal h1 {
  font-family: "Matter-thin";
  font-weight: 400;
  font-size: 42px;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.legal h2 {
  font-family: "Matter";
  font-weight: 400;
  font-size: 15px;
  margin: 28px 0 8px;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.55;
  opacity: .78;
}
.legal ul { padding-left: 18px; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.pills button {
  font-family: "Matter-thin";
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 40px;
  border: 1px solid rgba(20,20,20,.16);
  background: #fff;
  color: #141414;
  cursor: pointer;
}
.pills button.is-on {
  background: #141414;
  color: #fff;
  border-color: #141414;
}
.pill-note {
  display: none;
  margin: -10px 0 18px;
  font-size: 14px;
  opacity: .7;
}
.pill-note a { color: #3B82F6; }

@media screen and (min-width: 1000px) {
  .docs { padding: 56px 50px 120px; }
  .docs-intro h1 { font-size: 56px; }
  .docs-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
  }
  .docs-side {
    position: sticky;
    top: 120px;
    margin: 0;
  }
  .docs-cats {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    overflow: visible;
  }
  .docs-cats button {
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    background: none;
    font-size: 15px;
  }
  .docs-cats button.is-on {
    color: #141414;
    background: none;
  }
  .docs-section {
    margin-bottom: 72px;
  }
  .connector-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .security-layers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .deployment-grid,
  .model-families {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .docs-item h3 { font-size: 26px; }
  .legal { padding: 56px 0 120px 50px; }
  .legal h1 { font-size: 56px; }
}
@media screen and (min-width: 1440px) {
  .docs { padding: 64px 120px 140px; }
  .legal { padding: 64px 0 140px 120px; }
}
