/* =========================================================
   See2cure — feuille de style partagée FR / EN
   Pur CSS, aucune dépendance.
   ========================================================= */

/* ---------- Polices (Google Fonts, chargées par <link> dans le head) ---------- */

:root {
  --c-primary: #196562;
  --c-primary-dark: #0f1c1b;
  --c-primary-mid: #5a9694;
  --c-secondary: #e7e700;
  --c-text: #1e1e1e;
  --c-muted: #a7a7a7;
  --c-grey: #f2f4f3;
  --c-grey-2: #f4f6f5;
  --c-cyan: #92f2ff;
  --c-white: #ffffff;
  --c-tile: #004b58;

  --f-heading: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Poppins", "Helvetica Neue", Arial, sans-serif;

  --fs-h1: clamp(3rem, 2.6953rem + 1.3542vw, 3.8125rem);
  --fs-h2: clamp(2.5rem, 2.2891rem + 0.9375vw, 3.0625rem);
  --fs-h3: clamp(2.0625rem, 1.9219rem + 0.625vw, 2.4375rem);
  --fs-h4: clamp(1.4375rem, 1.3906rem + 0.2083vw, 1.5625rem);

  --container: 1240px;
  --gutter: 24px;
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 46px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ---------- Reset léger ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--f-heading);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

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

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover {
  transform: scale(0.96);
}

.btn--primary {
  background: var(--c-secondary);
  color: var(--c-primary);
}

.btn--primary:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-text);
}

.btn--outline:hover {
  background: var(--c-text);
  color: var(--c-white);
}

.btn--outline:hover svg rect {
  fill: var(--c-white);
}

.btn--sm {
  padding: 12px 22px;
  font-size: 0.9375rem;
}

.btn svg {
  flex: none;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.header__logo img {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.9375rem;
  letter-spacing: -0.03em;
  color: #000;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--c-primary);
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang a,
.lang span {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang svg {
  width: 21px;
  height: 15px;
}

.lang a {
  opacity: 0.55;
}

.lang a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang span {
  opacity: 1;
}

.header__cta {
  padding: 12px 22px;
  font-size: 0.9375rem;
}

.nav .header__cta {
  display: none;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-grey);
}

.burger span {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  transition: transform 0.3s ease, background 0.3s ease;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  transition: transform 0.3s ease, top 0.3s ease;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.nav-open .burger span {
  background: transparent;
}

.nav-open .burger span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .burger span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Sections génériques ---------- */

.section {
  padding: 60px 0;
}

.section__head {
  text-align: center;
  margin-bottom: 40px;
}

.section__sub {
  margin-top: 14px;
  font-family: var(--f-body);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.3;
  color: var(--c-primary);
}

/* ---------- Hero ---------- */

.hero {
  padding: 40px 0 96px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: 48px;
  align-items: stretch;
}

.hero__left {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.hero__title {
  font-size: var(--fs-h2);
  color: #000;
  white-space: nowrap;
}

.hero__title-line {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

/* EN : "Seeing the invisible" est plus long, on réduit pour garder le pointillé sur la ligne */
html[lang="en"] .hero__title {
  font-size: 2.5rem;
}

html[lang="en"] .hero__title .dots {
  width: 120px;
}

.hero__title .dots {
  flex: none;
  width: 160px;
  height: auto;
  margin-top: 0.1em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__lead {
  margin-top: 34px;
  display: grid;
  gap: 14px;
  max-width: 520px;
  font-family: var(--f-body);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.3;
  color: var(--c-text);
}

.hero__trust {
  margin-top: auto;
  padding-top: 48px;
}

.hero__trust-label {
  font-family: var(--f-heading);
  font-size: 0.875rem;
  letter-spacing: -0.03em;
  color: var(--c-muted);
  margin-bottom: 18px;
}

.hero__right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 24px;
}

.hero__cells {
  position: relative;
  aspect-ratio: 722 / 275;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.hero__cells img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tile {
  position: relative;
  aspect-ratio: 460 / 364;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-tile);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile--brand {
  background: none;
  border-radius: 30px;
}

.tile--brand img {
  object-fit: fill;
}

.tile__caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--c-white);
  font-family: var(--f-heading);
  font-size: 0.875rem;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

/* Halftone (points) en CSS : remplace les SVG de 800 ko du site d'origine */

.dots {
  pointer-events: none;
  background-image: radial-gradient(circle, var(--dot-color, var(--c-primary)) 0 34%, transparent 38%);
  background-size: var(--dot-size, 11px) var(--dot-size, 11px);
  border-radius: 999px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 35%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 35%, #000 100%);
}

.dots--yellow {
  --dot-color: var(--c-secondary);
  --dot-size: 10px;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.08) 100%);
  mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.08) 100%);
}

/* ---------- Bandeau logos (défilement CSS) ---------- */

.ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  contain: inline-size;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ticker-left 55s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__item {
  flex: none;
  height: 48px;
}

.ticker__item img {
  height: 100%;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.ticker__item:hover img {
  filter: none;
  opacity: 1;
}

.ticker--hero .ticker__item {
  height: 34px;
}

.ticker--hero .ticker__track {
  gap: 48px;
}

@keyframes ticker-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ticker-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ---------- Le défi (cartes flottantes) ---------- */

.challenge {
  padding: 0 0 60px;
}

.challenge__box {
  position: relative;
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 16px;
  padding: 44px 48px 64px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--c-grey-2) 0%, #fff 100%);
  overflow: hidden;
}

.challenge__box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(30, 30, 30, 0.04);
  pointer-events: none;
}

.challenge__text .section__sub {
  margin-top: 18px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .challenge__text .section__sub {
    white-space: normal;
  }
}

.challenge__text .btn {
  margin-top: 26px;
}

.challenge__cards {
  position: relative;
  min-height: 720px;
}

.stat-card {
  position: absolute;
  width: 390px;
  max-width: 100%;
  padding: 26px 22px 22px;
  border-radius: var(--radius-md);
  background: var(--c-white);
  box-shadow: 0 30px 60px -30px rgba(15, 28, 27, 0.35), 0 6px 18px -8px rgba(15, 28, 27, 0.15);
  will-change: transform;
}

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

.stat-card__value {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.stat-card__icon {
  width: 36px;
  height: auto;
}

.stat-card__visual {
  margin-top: 18px;
  height: 108px;
}

.stat-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.stat-card__caption {
  margin-top: 18px;
  font-family: var(--f-heading);
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
  line-height: 1.45;
  color: var(--c-muted);
}

.stat-card--1 {
  right: 0;
  top: 0;
  transform: rotate(-1.5deg);
  z-index: 1;
}

.stat-card--2 {
  left: -100px;
  top: 238px;
  transform: rotate(1.5deg);
  z-index: 2;
}

.stat-card--3 {
  right: 20px;
  top: 430px;
  transform: rotate(-1deg);
  z-index: 3;
}

/* ---------- Processus en 3 étapes ---------- */

.process__head {
  max-width: 720px;
  margin-bottom: 36px;
}

.process__list {
  display: grid;
  gap: 64px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 300px;
  padding: 32px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--c-grey-2) 0%, rgba(244, 246, 245, 0.35) 55%, #fff 100%);
}

.step--reverse {
  grid-template-columns: minmax(0, 1fr);
  justify-items: end;
  background: linear-gradient(270deg, var(--c-grey-2) 0%, rgba(244, 246, 245, 0.35) 55%, #fff 100%);
}

.step__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  z-index: 1;
}

.step--reverse .step__body {
  align-items: flex-end;
  text-align: right;
  order: 2;
}

.step__title {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--f-body);
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.step--reverse .step__title {
  flex-direction: row-reverse;
}

.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--c-secondary);
  color: #16212b;
}

.step__icon img,
.step__icon svg {
  width: 28px;
  height: 28px;
}

.step__text {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
  line-height: 1.55;
  white-space: nowrap;
}

.step__num {
  font-family: var(--f-body);
  font-size: clamp(9rem, 32vw, 29rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  padding: 0.05em 0.08em 0.05em 0;
  background: linear-gradient(180deg, #196562 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  user-select: none;
}

.step--reverse .step__num {
  right: auto;
  left: 48px;
}

/* ---------- Chiffres clés ---------- */

.stats {
  padding: 40px 0 20px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin-inline: auto;
}

.stat {
  padding: 12px 16px;
  text-align: center;
  border-left: 1px solid #e3e6e5;
}

.stat:first-child {
  border-left: 0;
}

.stat__value {
  font-family: var(--f-body);
  font-size: 3.5rem;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.stat__label {
  margin-top: 8px;
  font-family: var(--f-heading);
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
  color: #6f7472;
}

.partners {
  padding: 24px 0 40px;
}

/* ---------- Avantage technologique ---------- */

.edge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.edge-card {
  padding: 30px 24px 24px;
  border-radius: 24px;
  background: var(--c-grey-2);
}

.edge-card__title {
  font-family: var(--f-body);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.edge-card__text {
  margin-top: 14px;
  min-height: 54px;
  font-family: var(--f-body);
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.edge-card__media {
  margin-top: 26px;
  height: 148px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-white);
}

.edge-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edge-card__media--illu img {
  object-fit: contain;
  padding: 14px 0;
}

/* ---------- Marché ---------- */

.market__blobs {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 16px;
  justify-content: center;
}

.blob {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blob__value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 116px;
  border-radius: 80px;
  font-family: var(--f-heading);
  font-size: 2.5rem;
  letter-spacing: -0.05em;
}

.blob__label {
  width: 100%;
  min-height: 108px;
  padding: 22px 24px;
  border-radius: 28px;
  font-family: var(--f-heading);
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
  text-align: center;
}

.blob--yellow .blob__value,
.blob--yellow .blob__label {
  background: var(--c-secondary);
  color: var(--c-text);
}

.blob--teal .blob__value,
.blob--teal .blob__label {
  background: var(--c-primary);
  color: var(--c-white);
}

.blob--yellow .blob__value {
  width: 160px;
}

.blob--teal .blob__value {
  width: 260px;
}

.blob--grey {
  grid-column: 1 / -1;
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}

.blob--grey .blob__value {
  flex: 1;
  width: auto;
  height: auto;
  min-height: 120px;
  border-radius: 80px;
  background: var(--c-grey-2);
  color: var(--c-primary);
}

.blob--grey .blob__label {
  flex: 1;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-grey-2);
  color: var(--c-primary);
}

/* ---------- Experts (double défilement) ---------- */

.experts {
  padding: 40px 0 60px;
}

.experts__box {
  padding: 44px 0 56px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #196562 0%, #0f1c1b 62%, #000 100%);
  color: var(--c-white);
  overflow: hidden;
}

.experts__box .section__head {
  margin-bottom: 40px;
}

.experts__box .section__sub {
  color: var(--c-white);
  margin-top: 8px;
}

.experts__rows {
  display: grid;
  gap: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.reviews {
  overflow: hidden;
  min-width: 0;
  contain: inline-size;
}

.reviews__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ticker-left 40s linear infinite;
}

.reviews--reverse .reviews__track {
  animation-name: ticker-right;
}

.reviews:hover .reviews__track {
  animation-play-state: paused;
}

.review {
  flex: none;
  width: 560px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--c-white);
  color: #1f2a29;
  font-family: var(--f-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

/* ---------- Équipe ---------- */

.team__box {
  position: relative;
  min-height: 420px;
  padding: 0 48px 0 0;
  border-radius: var(--radius-xl);
  background: var(--c-grey-2);
  overflow: hidden;
}

.team__slides {
  position: relative;
  min-height: 420px;
}

.team__slide {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-height: 420px;
  padding-left: 40px;
}

.team__slide[hidden] {
  display: none;
}

.team__slide.is-active {
  animation: team-in 0.55s var(--ease-out) both;
}

@keyframes team-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.team__photo {
  align-self: end;
  height: 380px;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}

.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.team__meta {
  padding-bottom: 96px;
}

.team__kicker {
  font-family: var(--f-body);
  font-size: 1.375rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--c-primary);
}

.team__line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  font-family: var(--f-body);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.team__li {
  display: inline-flex;
  width: 26px;
  height: 26px;
  transition: transform 0.2s var(--ease-out);
}

.team__li:hover {
  transform: scale(1.12);
}

.team__li svg {
  width: 26px;
  height: 26px;
}

.team__row {
  position: absolute;
  left: 420px;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
}

.team__name {
  font-family: var(--f-body);
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.team__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.team__nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 24px;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, opacity 0.25s ease;
}

.team__prev {
  width: 28px;
  color: var(--c-primary);
  opacity: 0.55;
}

.team__prev:hover {
  opacity: 1;
  transform: translateX(-3px);
}

.team__next {
  width: 88px;
  background: var(--c-primary);
  color: var(--c-white);
}

.team__next:hover {
  transform: translateX(3px);
  background: var(--c-primary-dark);
}

/* ---------- Publications & distinctions ---------- */

.pubs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pubs__col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-content: stretch;
}

/* Les deux cartes Prix sont collées : la jointure tombe exactement
   sur le haut de la 2e carte Publication (16px d'écart à gauche → +8px). */
.pubs__col--awards {
  grid-template-rows: calc(50% + 8px) calc(50% - 8px);
  gap: 0;
}

.pub {
  position: relative;
  display: block;
  padding: 32px 32px 36px;
  border-radius: 24px;
  background: var(--c-grey-2);
  overflow: hidden;
  isolation: isolate;
}

.pub--award {
  background: var(--c-secondary);
}

/* La molécule est dessinée sur toute la hauteur de la colonne (2 cartes + 16px d'écart)
   puis calée en haut sur la 1re carte et en bas sur la 2e : le motif est continu. */
.pub--award::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/molecule.webp") center top / auto calc(200% - 16px) no-repeat;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

.pub--award:nth-child(2)::before {
  background-size: auto calc(200% + 16px);
  background-position: center bottom;
}

.pub__type {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.pub__type img {
  width: 32px;
  height: 32px;
}

.pub__ext {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 30px;
  height: 30px;
  color: var(--c-primary);
}

.pub__title {
  margin-top: 22px;
  font-family: var(--f-body);
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.pub__source {
  margin-top: 16px;
  font-family: var(--f-body);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.5;
  color: var(--c-primary);
}

/* ---------- Roadmap ---------- */

.roadmap__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 28px 80px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: #e3e6e5;
}

.timeline__item {
  position: relative;
  padding-bottom: 72px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -80px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-secondary);
  color: var(--c-white);
}

.timeline__dot--cyan {
  background: var(--c-cyan);
}

.timeline__dot svg {
  width: 24px;
  height: 24px;
}

.timeline__year {
  font-family: var(--f-body);
  font-size: 2.125rem;
  letter-spacing: -0.05em;
  line-height: 1.6;
  font-weight: 400;
}

.timeline__text {
  margin-top: 4px;
  max-width: 440px;
  font-family: var(--f-body);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--c-muted);
}

/* ---------- FAQ ---------- */

.faq__list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid #2b2f2e;
  border-radius: 20px;
  background: var(--c-white);
  overflow: hidden;
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px 24px 26px 28px;
  text-align: left;
  font-family: var(--f-body);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.faq-item__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2b2f2e;
  color: #2b2f2e;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-out);
}

.faq-item__icon svg {
  width: 16px;
  height: 16px;
}

.faq-item.is-open .faq-item__icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: rotate(180deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__inner {
  overflow: hidden;
}

.faq-item__content {
  padding: 0 28px 30px;
  display: grid;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
  color: #6f7472;
}

/* ---------- CTA finale ---------- */

.cta {
  padding: 60px 0 60px;
}

.cta__box {
  position: relative;
  padding: 110px 90px 90px;
  min-height: 620px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #196562 0%, #0f1c1b 70%, #000 100%);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 110px;
  isolation: isolate;
}

.cta__title {
  max-width: 700px;
  font-size: 3.375rem;
}

.cta__text {
  margin-top: 18px;
  max-width: 520px;
  font-family: var(--f-body);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.cta__art {
  position: absolute;
  right: -40px;
  top: -36px;
  width: 640px;
  max-width: none;
  z-index: -1;
  animation: cta-float 7s ease-in-out infinite;
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 520px;
}

.cta__form .field {
  height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--c-white);
  font-family: var(--f-body);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
  outline: 2px solid transparent;
  transition: outline-color 0.2s ease;
}

.cta__form .field::placeholder {
  color: var(--c-muted);
}

.cta__form .field:focus {
  outline-color: var(--c-secondary);
}

.cta__row {
  display: flex;
  gap: 14px;
}

.cta__row .field {
  flex: 1;
  min-width: 0;
}

.cta__form .btn {
  height: 54px;
  padding: 0 28px;
  font-size: 1.125rem;
  gap: 10px;
}

.cta__form .btn svg {
  width: 14px;
  height: 14px;
}


.cta__success,
.cta__error {
  font-family: var(--f-body);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--c-secondary);
}

.cta__error {
  color: #ffb3a7;
}

.cta__form .btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}

/* Honeypot anti-spam : invisible pour les humains, rempli par les robots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@keyframes cta-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

/* ---------- Footer ---------- */

.footer {
  padding: 24px 0 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #2b2f2e;
}

.footer__logo img {
  height: 44px;
  width: auto;
}

.footer__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__top {
  position: relative;
}

.footer__links a {
  font-family: var(--f-body);
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--c-text);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--c-primary);
}

.footer__social {
  display: inline-flex;
  width: 28px;
  height: 28px;
  transition: opacity 0.2s ease, transform 0.2s var(--ease-out);
}

.footer__social:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.footer__copy {
  font-family: var(--f-body);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.footer__credit {
  font-family: var(--f-body);
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
  transition: color 0.2s ease;
}

.footer__credit:hover {
  color: var(--c-primary);
}

@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ---------- Pages légales ---------- */

.legal {
  padding: 48px 0 80px;
}

.legal__inner {
  max-width: 820px;
}

.legal h1 {
  font-size: var(--fs-h2);
  margin-bottom: 40px;
}

.legal h2 {
  font-family: var(--f-body);
  font-size: 1.625rem;
  letter-spacing: -0.04em;
  margin: 44px 0 14px;
}

.legal p,
.legal li {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  line-height: 1.65;
  color: #3a3f3e;
}

.legal p + p {
  margin-top: 14px;
}

.legal ul {
  margin: 14px 0;
  padding-left: 22px;
}

.legal li + li {
  margin-top: 8px;
}

.legal a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal strong {
  font-weight: 500;
  color: var(--c-text);
}

/* ---------- Apparitions au scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal--left {
  transform: translateX(-32px);
}

.reveal--scale {
  transform: scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stat-card.reveal.is-visible {
  transform: rotate(var(--rot, 0deg));
}

.stat-card--1 {
  --rot: -1.5deg;
}

.stat-card--2 {
  --rot: 1.5deg;
}

.stat-card--3 {
  --rot: -1deg;
}

/* Animation d'entrée du hero au chargement */

.hero__left > * {
  animation: hero-in 0.9s var(--ease-out) both;
}

.hero__left > :nth-child(2) {
  animation-delay: 0.1s;
}

.hero__left > :nth-child(3) {
  animation-delay: 0.2s;
}

.hero__left > :nth-child(4) {
  animation-delay: 0.3s;
}

.hero__right > * {
  animation: hero-in 1s var(--ease-out) both;
  animation-delay: 0.15s;
}

.hero__right > :nth-child(2) {
  animation-delay: 0.3s;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .stat-card {
    width: 330px;
  }

  .step__num {
    font-size: clamp(8rem, 24vw, 18rem);
  }

  .step__text {
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .nav__links {
    gap: 22px;
  }

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

  .hero__left,
  .hero__right {
    min-width: 0;
  }

  .hero__trust {
    padding-top: 36px;
    margin-bottom: 8px;
  }

  .challenge__box {
    grid-template-columns: 1fr;
    padding: 40px 28px 48px;
  }

  .challenge__cards {
    min-height: 720px;
    max-width: 790px;
  }

  .stat-card {
    width: 360px;
  }

  .stat-card--2 {
    left: 0;
  }

  .team__slide {
    grid-template-columns: 260px minmax(0, 1fr);
    padding-left: 24px;
  }

  .team__row {
    left: 324px;
    right: 28px;
  }

  .team__box {
    padding-right: 28px;
  }

  .roadmap__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 18px;
  }

  .header__inner {
    padding: 14px 0;
  }

  .burger {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0 var(--gutter);
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--c-white);
    box-shadow: 0 30px 60px -20px rgba(15, 28, 27, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out), visibility 0.3s;
  }

  .nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav__links a {
    display: block;
    padding: 10px 0;
    font-size: 1.125rem;
  }

  .nav .lang {
    padding: 10px 0;
  }

  .nav .header__cta {
    align-self: flex-start;
  }

  .header__cta--desktop {
    display: none;
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero__title {
    white-space: normal;
  }

  .hero__title .dots {
    width: 110px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__tiles {
    gap: 12px;
  }

  .tile__caption {
    left: 16px;
    bottom: 14px;
    font-size: 0.75rem;
  }

  .section {
    padding: 44px 0;
  }

  .challenge__box {
    padding: 32px 20px 40px;
  }

  .challenge__cards {
    min-height: 0;
    display: grid;
    gap: 16px;
  }

  .stat-card {
    position: static;
    width: 100%;
    transform: none !important;
  }

  .step,
  .step--reverse {
    grid-template-columns: 1fr;
    justify-items: stretch;
    min-height: 0;
    padding: 24px 22px 0;
    background: var(--c-grey-2);
  }

  .step--reverse .step__body {
    align-items: flex-start;
    text-align: left;
    order: 1;
  }

  .step--reverse .step__title {
    flex-direction: row;
  }

  .step__body {
    gap: 22px;
  }

  .step__num,
  .step--reverse .step__num {
    position: static;
    transform: none;
    order: 2;
    justify-self: end;
    font-size: 8rem;
    line-height: 0.85;
    margin-bottom: -0.2em;
  }

  .step {
    overflow: hidden;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

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

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

  .blob--grey {
    flex-direction: column;
  }

  .experts__box {
    padding: 36px 0 60px;
  }

  .experts__box .section__head {
    padding: 0 20px;
  }

  .review {
    width: 300px;
    padding: 20px 22px;
    font-size: 0.875rem;
  }

  .team__box {
    min-height: 0;
    padding: 24px 22px 0;
  }

  .team__slides,
  .team__slide {
    min-height: 0;
  }

  .team__slide {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0;
  }

  .team__meta {
    order: 1;
    padding-bottom: 0;
  }

  .team__photo {
    order: 3;
    height: 300px;
    max-width: 280px;
    margin: 16px auto 0;
  }

  .team__row {
    position: static;
    transform: none;
    margin: 20px 0 0;
  }

  .team__slide {
    padding-bottom: 0;
  }

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

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

  .faq-item__btn {
    padding: 16px 14px 16px 16px;
  }

  .cta__box {
    min-height: 0;
    padding: 36px 22px 32px;
    gap: 36px;
  }

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

  .cta__art {
    position: relative;
    right: auto;
    top: auto;
    width: 240px;
    margin: -10px auto 0;
    order: 2;
  }

  .cta__form {
    max-width: none;
    order: 3;
  }

  .cta__row {
    flex-direction: column;
  }

  .cta__form .field,
  .cta__form .btn {
    height: 44px;
    font-size: 0.9375rem;
  }

  .footer__top {
    flex-wrap: wrap;
  }

  .footer__links {
    position: static;
    order: 3;
    width: 100%;
    margin: 0;
    transform: none;
    gap: 24px;
  }
}

/* ---------- Réduction des animations ---------- */

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .stat-card.reveal {
    transform: rotate(var(--rot, 0deg));
  }

  .ticker__track,
  .reviews__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ticker__track > :nth-child(n + 15),
  .reviews__track > :nth-child(n + 4) {
    display: none;
  }

  .cta__art {
    animation: none;
  }
}
