html {
  scroll-behavior: smooth;
}

/* ============================================================
   4ambitious — main.css
   Palette dérivée du logo. Aucun accent saturé.
   Le blanc est l'accent.
   ============================================================ */

/* ---------- TOKENS ---------- */

:root {
  /* Couleurs */
  --c-void: #02040A;         /* fond, presque noir bleuté */
  --c-deep: #061128;         /* fond alterné */
  --c-blue: #0B1F4B;         /* bleu profond, lueur */
  --c-blue-mid: #1A3A7A;     /* bordures actives */
  --c-line: #14192B;         /* hairlines */
  --c-text: #F5F6F8;         /* blanc cassé */
  --c-muted: #7C8496;        /* texte secondaire — AA */
  --c-dim: #727D96;          /* texte tertiaire, hints — AA */
  --c-deco: #4A5266;         /* eyebrows, numéros — décoratif, non-AA assumé */
  --c-accent: #4D7CFF;       /* halo des boutons uniquement — jamais un fond plein */
  --c-accent-glow: rgba(77, 124, 255, 0.45);

  /* Type */
  --f-display: "Anton", "Arial Narrow", "Haettenschweiler", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Échelle fluide */
  --t-hero: clamp(1.7rem, 3.8vw, 2.85rem);
  --t-h2: clamp(1.8rem, 3.8vw, 3.2rem);
  --t-h3: clamp(1.15rem, 1.7vw, 1.5rem);
  --t-lead: clamp(1.05rem, 1.35vw, 1.3rem);
  --t-body: clamp(1rem, 1.1vw, 1.1rem);
  --t-small: 0.875rem;
  --t-label: 0.72rem;

  /* Espace */
  --s-section: clamp(3.5rem, 7.7vw, 6.6rem);
  --s-gutter: clamp(1.25rem, 5vw, 3rem);
  --w-max: 1180px;
  --w-text: 660px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- FONTS ---------- */

@font-face {
  font-family: "Anton";
  src: url("../fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

/* ---------- BASE ---------- */

body {
  background: var(--c-void);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--t-body);
  overflow-x: hidden;
  padding-top: 0;
}

::selection {
  background: var(--c-text);
  color: var(--c-void);
}

/* ---------- HEADER ---------- */

.site-header {
  position: absolute;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background: transparent;
}

.site-header__inner {
  min-height: 72px;
  padding-block: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 2.8rem);
}

.site-header__brand,
.site-header__actions {
  pointer-events: auto;
}

.site-header__brand {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.32));
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header__brand:hover {
  transform: translateY(-1px);
  opacity: 0.86;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.8vw, 2.3rem);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.1vw, 1.85rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.site-header__nav a,
.site-header__nav span {
  color: rgba(224, 229, 241, 0.72);
  font-family: var(--f-mono);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__nav a {
  text-decoration: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.site-header__nav a:hover {
  color: var(--c-text);
  transform: translateY(-1px);
}

.site-header__cta.btn {
  min-height: 42px;
  padding: 0.68rem 0.98rem;
  border-radius: 11px;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(77, 124, 255, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(77, 124, 255, 0.11);
}

#soumettre,
#cas-reels,
#travailler-ensemble,
#construire-juste {
  scroll-margin-top: 24px;
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 68px;
    padding-block: 12px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__brand {
    width: 32px;
    height: 32px;
  }

  .site-header__cta.btn {
    min-height: 40px;
    padding: 0.64rem 0.88rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  .site-header__cta.btn {
    padding-inline: 0.76rem;
  }
}

.wrap {
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--s-gutter);
}

.wrap--text {
  max-width: calc(var(--w-text) + var(--s-gutter) * 2);
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--c-text);
  color: var(--c-void);
  padding: 0.75rem 1.25rem;
}

/* ---------- TYPO ---------- */

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.04;
  padding-top: 0.14em;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.label {
  font-family: var(--f-mono);
  font-size: var(--t-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-deco);
  display: block;
  margin-bottom: 1.75rem;
}

.lead {
  font-size: var(--t-lead);
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 44ch;
}

.section__title {
  font-family: var(--f-display);
  font-size: var(--t-h2);
  line-height: 1.04;
  padding-top: 0.14em;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 2.25rem;
}

.prose p {
  color: var(--c-muted);
  margin-bottom: 1.25rem;
  max-width: 62ch;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong {
  color: var(--c-text);
  font-weight: 600;
}
.prose .accent {
  color: var(--c-text);
  font-weight: 600;
}

/* ---------- SECTIONS ---------- */

.section {
  padding-block: var(--s-section);
  position: relative;
}

.section--alt {
  background: var(--c-deep);
}

.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: var(--c-line);
}
.section--alt::before { top: 0; }
.section--alt::after { bottom: 0; }

/* Motif diamant discret — casse la platitude du fond alterné */
.section--pattern {
  overflow: hidden;
}
.section--pattern .wrap {
  position: relative;
  z-index: 1;
}
.section--pattern::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(45deg, var(--c-blue-mid) 1px, transparent 1px),
    linear-gradient(-45deg, var(--c-blue-mid) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 30%, transparent 78%);
}

/* ---------- BOUTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1.05rem 2.25rem;
  border-radius: 10px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.4s var(--ease);
  will-change: transform;
}

.btn--primary {
  background: var(--c-text);
  color: var(--c-void);
  box-shadow: 0 0 0 1px rgba(77, 124, 255, 0.15), 0 0 24px 0 var(--c-accent-glow);
  animation: btn-pulse 2.5s ease-in-out infinite;
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(77, 124, 255, 0.3), 0 0 40px 4px var(--c-accent-glow);
  animation-play-state: paused;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(77, 124, 255, 0.15), 0 0 20px 0 rgba(77, 124, 255, 0.35); }
  50%      { box-shadow: 0 0 0 1px rgba(77, 124, 255, 0.22), 0 0 32px 2px var(--c-accent-glow); }
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-blue-mid);
}
.btn--ghost:hover {
  border-color: var(--c-text);
  background: rgba(245, 246, 248, 0.04);
}

.cta-block {
  margin-top: 2.5rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-void) 0%, #050D20 48%, var(--c-void) 100%);
}

/* Deux nappes lumineuses : mouvement ambiant lent, sans filtre coûteux */
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 24%;
  left: 68%;
  width: min(1080px, 138vw);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(23, 54, 126, 0.34) 0%,
    rgba(11, 31, 75, 0.2) 38%,
    rgba(6, 17, 40, 0.08) 58%,
    transparent 74%
  );
  pointer-events: none;
  will-change: transform, opacity;
  animation: hero-drift-a 24s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 58%;
  left: 28%;
  width: min(920px, 128vw);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(49, 45, 124, 0.26) 0%,
    rgba(28, 31, 86, 0.16) 40%,
    rgba(6, 17, 40, 0.06) 60%,
    transparent 75%
  );
  pointer-events: none;
  will-change: transform, opacity;
  animation: hero-drift-b 29s cubic-bezier(0.45, 0.05, 0.35, 1) infinite alternate;
}

@keyframes hero-drift-a {
  0% {
    opacity: 0.72;
    transform: translate3d(calc(-50% + var(--hero-shift-x)), calc(-50% + var(--hero-shift-y)), 0) scale(1);
  }
  43% {
    opacity: 0.94;
    transform: translate3d(calc(-48% + var(--hero-shift-x)), calc(-53% + var(--hero-shift-y)), 0) scale(1.035);
  }
  100% {
    opacity: 0.78;
    transform: translate3d(calc(-53% + var(--hero-shift-x)), calc(-47% + var(--hero-shift-y)), 0) scale(0.985);
  }
}

@keyframes hero-drift-b {
  0% {
    opacity: 0.56;
    transform: translate3d(calc(-50% - var(--hero-shift-x)), calc(-50% - var(--hero-shift-y)), 0) scale(0.98);
  }
  57% {
    opacity: 0.76;
    transform: translate3d(calc(-54% - var(--hero-shift-x)), calc(-47% - var(--hero-shift-y)), 0) scale(1.025);
  }
  100% {
    opacity: 0.62;
    transform: translate3d(calc(-47% - var(--hero-shift-x)), calc(-53% - var(--hero-shift-y)), 0) scale(1.01);
  }
}

/* Grille en perspective — clin d'œil discret, bas du hero uniquement */
.hero__grid {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 100svh;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(90deg, var(--c-line) 0 1px, transparent 1px calc(100% / 9)),
    repeating-linear-gradient(0deg, var(--c-line) 0 1px, transparent 1px 15%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 92%);
  mask-image: linear-gradient(to top, black 0%, transparent 92%);
  transform: perspective(280px) rotateX(58deg);
  transform-origin: 50% 100%;
}

.hero__mark {
  width: 30px;
  color: var(--c-text);
  opacity: 0.85;
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}
.hero__mark svg {
  width: 100%;
  height: auto;
}

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

.hero__stage {
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(1.5rem, 4vh, 3rem) clamp(2rem, 5vh, 4rem);
}

.hero__proof {
  font-family: var(--f-mono);
  font-size: clamp(0.67rem, 0.8vw, 0.76rem);
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: clamp(0.65rem, 1.4vh, 0.95rem);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 5.8vw, 4.35rem);
  line-height: 0.96;
  padding-top: 0.12em;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  color: var(--c-text);
  margin-bottom: clamp(0.8rem, 1.8vh, 1.25rem);
}

.hero__title-secondary {
  font-size: calc(1em - 6px);
}

.hero__title .accent-underline {
  position: relative;
  display: inline-block;
  z-index: 0;
  white-space: nowrap;
  isolation: isolate;
}

.hero__title .accent-punctuation {
  position: relative;
  z-index: 2;
}

.hero__title .accent-underline::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.04em;
  right: 0.01em;
  bottom: 0.02em;
  height: 0.14em;
  background: var(--c-accent);
  clip-path: polygon(0 32%, 100% 0, 98% 100%, 1% 78%);
  transform: rotate(-1.2deg);
  box-shadow: 0 0 18px rgba(77, 124, 255, 0.42);
}

.hero__kicker {
  font-family: var(--f-body);
  font-size: clamp(0.75rem, 0.9vw, 0.88rem);
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 48ch;
  margin-bottom: clamp(0.55rem, 1.2vh, 0.9rem);
}

.hero__title .accent-grad {
  background: linear-gradient(180deg, #ffffff 0%, #c4d8ff 57%, #7899e8 118%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  color: var(--c-muted);
  max-width: 84ch;
  margin-bottom: clamp(0.9rem, 2vh, 1.35rem);
  line-height: 1.55;
  text-wrap: balance;
}

/* Bouton "regarde la vidéo" */
.hero__watch {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  border: 1px solid var(--c-blue-mid);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  margin-bottom: clamp(1rem, 2.2vh, 1.5rem);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.hero__watch:hover {
  border-color: var(--c-text);
  background: rgba(245, 246, 248, 0.04);
}
.hero__watch .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-text);
  flex-shrink: 0;
  animation: pulse 2.6s ease-in-out infinite;
}
.hero__watch .dur {
  color: var(--c-dim);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* ---------- VSL ---------- */

.vsl {
  width: min(980px, 100%, calc((100svh - 30.5rem) * 16 / 9));
  margin-inline: auto;
}

.vsl__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(68, 94, 153, 0.52);
  box-shadow: 0 46px 130px -34px rgba(0, 0, 0, 0.94),
    0 0 0 1px rgba(39, 72, 144, 0.2),
    0 0 52px -20px rgba(40, 78, 162, 0.3);
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.vsl__frame:hover {
  border-color: rgba(83, 111, 173, 0.68);
  box-shadow: 0 46px 130px -34px rgba(0, 0, 0, 0.94),
    0 0 0 1px rgba(45, 82, 158, 0.28),
    0 0 62px -18px rgba(48, 88, 177, 0.42);
}

.vsl__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Façade — la vidéo ne charge qu'au clic */
.vsl__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(ellipse at 50% 50%, #0B1F4B 0%, #030713 72%);
  border: 0;
  padding: 0;
}
.vsl__facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.vsl__facade-mark {
  position: absolute;
  width: 44px;
  color: var(--c-text);
  opacity: 0.12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vsl__play {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--c-text);
  box-shadow: 0 0 0 1px rgba(121, 150, 211, 0.3),
    0 0 30px 1px rgba(47, 87, 178, 0.42);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.vsl__play::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(91, 122, 190, 0.28);
  border-radius: 50%;
  pointer-events: none;
  animation: vsl-play-halo 4.2s ease-in-out infinite;
}
.vsl__facade:hover .vsl__play {
  transform: scale(1.08);
  box-shadow: 0 0 0 1px rgba(139, 166, 220, 0.4),
    0 0 38px 3px rgba(54, 97, 190, 0.52);
}
.vsl__facade:hover .vsl__play::after {
  animation: none;
  opacity: 0.86;
  transform: scale(1.06);
}

@keyframes vsl-play-halo {
  0%, 100% { opacity: 0.42; transform: scale(0.96); }
  50%      { opacity: 0.76; transform: scale(1.08); }
}
.vsl__play svg {
  width: 22px;
  height: 22px;
  fill: var(--c-void);
  margin-left: 4px;
}

.vsl__caption {
  margin-top: clamp(0.75rem, 1.5vh, 1rem);
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--c-dim);
  text-align: center;
}

/* ---------- PREUVE PROJETS ---------- */

.project-rail {
  width: 100%;
  margin: clamp(1.75rem, 4vh, 3rem) auto 0;
}

.project-rail__label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  text-align: left;
  font-family: var(--f-mono);
  font-size: clamp(0.64rem, 0.8vw, 0.72rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #91acff;
}

.project-rail__label::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  background: var(--c-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(77, 124, 255, 0.48);
}

.logo-marquee {
  overflow: hidden;
  padding-block: 1.15rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 34s linear infinite;
  will-change: transform;
}

.logo-marquee__set {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  padding-right: clamp(1.25rem, 2.5vw, 2.25rem);
}

.logo-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 13vw, 176px);
  height: 68px;
  flex: 0 0 auto;
  overflow: visible;
}

.logo-marquee__item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.7;
}

.logo-marquee__logo--hoop {
  transform: scale(1.28);
}

.logo-marquee__logo--compact {
  transform: scale(0.92);
}

.logo-marquee__logo--cr {
  opacity: 1;
}

.logo-marquee__logo--compact-soft {
  transform: scale(0.96);
}

.logo-marquee__logo--monogram {
  transform: scale(0.96);
}

.logo-marquee__logo--minelia {
  transform: scale(1.1);
}

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

@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-marquee__track {
    animation: none;
  }

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

.submit-box {
  margin-top: clamp(2.5rem, 6vh, 5rem);
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

@media (max-width: 560px) {
  .hero__stage {
    padding-top: max(0.75rem, env(safe-area-inset-top));
    padding-bottom: 1.5rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9.8vw, 2.75rem);
  }

  .hero__sub {
    max-width: 38ch;
  }

  .vsl {
    width: 100%;
  }

  .vsl__caption {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .project-rail {
    margin-top: 3.5rem;
  }
}

/* ============================================================
   SOUMISSION — parcours en trois étapes
   ============================================================ */

.submit-box {
  width: min(760px, 100%);
  margin-inline: auto;
  position: relative;
  border: 1px solid rgba(45, 72, 136, 0.46);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8, 21, 49, 0.88), rgba(3, 8, 20, 0.94));
  box-shadow:
    0 30px 90px -42px rgba(0, 0, 0, 0.96),
    0 0 0 1px rgba(77, 124, 255, 0.04) inset,
    0 0 60px -38px rgba(35, 73, 160, 0.42);
  padding: clamp(1.4rem, 4vw, 2.75rem);
  scroll-margin-top: 2rem;
}

.submit-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 139, 205, 0.46), transparent);
  pointer-events: none;
}

.submit-box__head {
  text-align: left;
  padding-bottom: clamp(1.5rem, 3vw, 2.15rem);
  border-bottom: 1px solid rgba(42, 62, 108, 0.42);
}

.submit-box__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  padding-top: 0.12em;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.submit-box__lede {
  color: var(--c-muted);
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  line-height: 1.65;
  max-width: 66ch;
}

.submit-box__note {
  color: var(--c-dim);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-top: 0.65rem;
}

.form--compact {
  margin-top: 0;
  max-width: none;
}

.form__progress {
  padding-block: 1.35rem 1.75rem;
}

.form__progress-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.7rem;
}

.form__progress-track {
  height: 2px;
  width: 100%;
  overflow: hidden;
  background: rgba(76, 96, 142, 0.22);
  border-radius: 100px;
}

.form__progress-value {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6f83ad, #d7e1f7);
  transform: scaleX(0.3333);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}

.form__steps {
  overflow: hidden;
  transition: height 0.4s var(--ease);
}

.form-step {
  text-align: left;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.22s ease, transform 0.22s var(--ease);
}

.form-step[hidden] {
  display: none;
}

.form-step.is-entering {
  opacity: 0;
  transform: translateX(12px);
}

.form-step.is-leaving {
  opacity: 0;
  transform: translateX(-10px);
}

.form-step__title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.form-step__title:focus {
  outline: none;
}

.form__contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}

@media (min-width: 680px) {
  .form__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form__contact-grid .field--full {
    grid-column: 1 / -1;
  }

  .form-step .opts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-step .opt-row--wide {
    grid-column: 1 / -1;
  }

  .form-step .field--newsletter .opts {
    grid-template-columns: 1fr;
  }
}

.form-step .field {
  min-width: 0;
  margin-bottom: 1.6rem;
  padding: 0;
  border: 0;
}

.field__note {
  display: block;
  color: var(--c-dim);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.55rem;
}

.submit-box .field input[type="text"],
.submit-box .field input[type="email"],
.submit-box .field input[type="tel"],
.submit-box .field input[type="url"],
.submit-box .field textarea {
  background: rgba(7, 18, 43, 0.78);
  border-color: rgba(48, 75, 139, 0.58);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025) inset;
}

.submit-box .field input:focus,
.submit-box .field textarea:focus {
  outline: none;
  border-color: #4967a7;
  background: rgba(9, 23, 53, 0.92);
  box-shadow: 0 0 0 3px rgba(31, 66, 143, 0.2);
}

.submit-box .field input::placeholder,
.submit-box .field textarea::placeholder {
  color: #68738b;
}

.submit-box .opts {
  gap: 0.55rem;
  border-top: 0;
}

.submit-box .opt-row {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(42, 65, 119, 0.42);
  border-radius: 9px;
  background: rgba(7, 18, 42, 0.58);
}

.submit-box .opt-row:hover {
  padding-left: 1rem;
  border-color: rgba(63, 90, 151, 0.7);
  background: rgba(10, 25, 57, 0.76);
}

.submit-box .opt-row:has(input:checked) {
  border-color: rgba(92, 119, 178, 0.7);
  background: rgba(12, 29, 65, 0.84);
}

.field--newsletter {
  margin-top: 0.25rem;
}

.form__actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 0.85rem;
  margin-top: 0.65rem;
}

.form__actions--end {
  grid-template-columns: minmax(0, 1fr);
  justify-items: end;
}

.form__actions .btn {
  width: 100%;
  min-width: 0;
}

.form__actions--end .btn {
  max-width: 260px;
}

.submit-box .btn--primary {
  color: var(--c-void);
  border: 1px solid rgba(94, 124, 187, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #eef2f9 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 28px -8px rgba(77, 124, 255, 0.48);
}

.submit-box .btn--primary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 36px -7px rgba(77, 124, 255, 0.58);
}

.submit-box .btn--primary:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
}

.btn--secondary {
  color: var(--c-muted);
  border: 1px solid rgba(46, 67, 115, 0.6);
  background: rgba(5, 14, 34, 0.72);
  box-shadow: none;
}

.btn--secondary:hover {
  color: var(--c-text);
  border-color: rgba(76, 101, 158, 0.78);
  background: rgba(9, 22, 49, 0.86);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .submit-box {
    border-radius: 14px;
  }

  .form__actions {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
    gap: 0.6rem;
  }

  .form__actions .btn {
    padding-inline: 0.8rem;
    font-size: 0.86rem;
  }

  .form__actions--end {
    grid-template-columns: 1fr;
  }

  .form__actions--end .btn {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none;
    transform: translate3d(-50%, -50%, 0);
  }

  .form__steps,
  .form-step,
  .form__progress-value {
    transition: none;
  }

  .vsl__play::after {
    animation: none;
    opacity: 0.55;
    transform: none;
  }
}


/* ============================================================
   PREUVES PAR LES RETOURS
   ============================================================ */

.revenue-system__proof {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 0.3rem;
}

.message-proof__head {
  width: min(100% - (2 * var(--s-gutter)), var(--w-max));
  margin-inline: auto;
}

.message-proof__head .label {
  margin-bottom: clamp(0.62rem, 1.3vw, 0.92rem);
  color: rgba(153, 178, 255, 0.78);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}

.message-marquee {
  display: grid;
  gap: 0.52rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.message-marquee__row {
  overflow: hidden;
}

.message-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.message-marquee__row--right .message-marquee__track {
  animation: message-marquee-right 43s linear infinite;
}

.message-marquee__row--left .message-marquee__track {
  animation: message-marquee-left 47s linear infinite;
}

.message-marquee__row:hover .message-marquee__track,
.message-marquee__row:focus-within .message-marquee__track {
  animation-play-state: paused;
}

.message-marquee__set {
  display: flex;
  align-items: stretch;
  gap: 0.52rem;
  padding-right: 0.52rem;
}

.message-card {
  width: clamp(225px, 24vw, 336px);
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.58rem;
  padding: 0.82rem 0.9rem 0.88rem;
  border: 1px solid rgba(77, 124, 255, 0.14);
  border-radius: 12px;
  background: rgba(6, 17, 40, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    background 0.45s var(--ease);
}

.message-card:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 124, 255, 0.24);
  background: rgba(8, 22, 53, 0.76);
}

.message-card--open {
  border-style: dashed;
  border-color: rgba(77, 124, 255, 0.26);
  background: rgba(11, 31, 75, 0.28);
}

.message-card__author {
  order: -1;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  color: rgba(164, 183, 233, 0.88);
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message-card__author::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--c-accent);
  box-shadow: 0 0 10px rgba(77, 124, 255, 0.64);
}

.message-card__quote {
  color: rgba(245, 246, 248, 0.86);
  font-size: clamp(0.79rem, 0.84vw, 0.88rem);
  line-height: 1.42;
  text-wrap: pretty;
}

.message-card__quote strong {
  color: var(--c-text);
  font-weight: 600;
}

@keyframes message-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes message-marquee-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 720px) {
  .revenue-system__proof {
    margin-top: 2.7rem;
  }

  .message-marquee {
    gap: 0.48rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
  }

  .message-marquee__set {
    gap: 0.48rem;
    padding-right: 0.48rem;
  }

  .message-card {
    width: min(72vw, 292px);
    min-height: 114px;
    padding: 0.78rem 0.82rem 0.82rem;
  }

  .message-card__quote {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* ============================================================
   DE L’ATTENTION À LA MONÉTISATION
   ============================================================ */

.section--revenue-system {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.15rem, 6.8vw, 6.1rem);
  background:
    radial-gradient(circle at 74% 36%, rgba(77, 124, 255, 0.11), transparent 30%),
    radial-gradient(circle at 28% 8%, rgba(77, 124, 255, 0.06), transparent 24%),
    var(--c-void);
}

/* Le contenu ne disparaît plus entièrement avant le déclenchement JS. */
.section--revenue-system.reveal {
  opacity: 1;
  transform: none;
}

.revenue-system__title {
  max-width: 930px;
}

.revenue-system__highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  white-space: nowrap;
  isolation: isolate;
}

.revenue-system__punctuation {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.revenue-system__highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.04em;
  right: 0.01em;
  bottom: 0.025em;
  height: 0.145em;
  background: var(--c-accent);
  clip-path: polygon(0 38%, 16% 24%, 43% 31%, 72% 8%, 100% 18%, 98% 94%, 68% 82%, 42% 100%, 14% 78%, 1% 88%);
  transform: rotate(-1.1deg) scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(77, 124, 255, 0.34);
  transition: transform 1s cubic-bezier(.22, 1, .36, 1) 0.18s;
}

.section--revenue-system.is-visible .revenue-system__highlight::after {
  transform: rotate(-1.1deg) scaleX(1);
}

.revenue-system__intro {
  max-width: 780px;
  margin-top: 0.92rem;
  color: rgba(219, 225, 240, 0.72);
  font-size: clamp(0.9rem, 0.96vw, 0.98rem);
  line-height: 1.62;
}

.revenue-flow {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr);
  align-items: stretch;
  gap: 0.68rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: 7.5rem;
}

.revenue-flow__step {
  position: relative;
  z-index: 2;
  min-height: 220px;
  padding: 1.02rem 0.98rem 1.06rem;
  border: 1px solid rgba(77, 124, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(8, 20, 47, 0.72), rgba(3, 8, 20, 0.92));
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.revenue-flow__step:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 124, 255, 0.28);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(77, 124, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.revenue-flow__step--data {
  border-color: rgba(77, 124, 255, 0.34);
  background: linear-gradient(145deg, rgba(13, 37, 89, 0.84), rgba(4, 11, 27, 0.97));
}

.revenue-flow__index {
  display: inline-flex;
  margin-bottom: 0.95rem;
  color: rgba(133, 163, 255, 0.76);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.revenue-flow__step h3 {
  margin-bottom: 0.66rem;
  color: var(--c-text);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.08;
}

.revenue-flow__step p {
  color: rgba(206, 215, 236, 0.76);
  font-size: clamp(0.8rem, 0.85vw, 0.88rem);
  line-height: 1.52;
  text-wrap: pretty;
}

.revenue-flow__arrow {
  align-self: center;
  color: rgba(77, 124, 255, 0.6);
  font-family: var(--f-mono);
  font-size: 1.26rem;
  transform: translateY(-1px);
  opacity: 0.9;
}

.revenue-flow__feedback {
  position: absolute;
  z-index: 1;
  top: calc(100% - 7.5rem);
  left: 0;
  width: 100%;
  height: 7.5rem;
  overflow: visible;
  pointer-events: none;
}

.revenue-flow__feedback-line {
  fill: none;
  stroke: rgba(77, 124, 255, 0.58);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url(#revenue-feedback-arrow);
}

.revenue-flow__feedback marker path {
  fill: rgba(77, 124, 255, 0.9);
}

.revenue-flow__feedback-mobile {
  display: none;
}

.revenue-system__outro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  align-items: start;
  padding-top: clamp(1.8rem, 3vw, 2.3rem);
  border-top: 1px solid rgba(77, 124, 255, 0.13);
}

.revenue-system__outro p {
  max-width: 100%;
  color: rgba(218, 225, 241, 0.82);
  font-size: clamp(1rem, 1.08vw, 1.06rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.revenue-system__outro p:last-child {
  color: var(--c-text);
  font-weight: 570;
}

@media (max-width: 980px) {
  .revenue-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.84rem;
    padding-bottom: 0;
  }

  .revenue-flow__step {
    min-height: 188px;
  }

  .revenue-flow__step--data {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .revenue-flow__arrow,
  .revenue-flow__feedback {
    display: none;
  }

  .revenue-flow__feedback-mobile {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.15rem;
    padding: 0.86rem 1rem;
    border: 1px dashed rgba(77, 124, 255, 0.26);
    border-radius: 12px;
    color: rgba(177, 196, 248, 0.84);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .revenue-flow__feedback-mobile span:not(:first-child):not(:nth-child(2)) {
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    background: rgba(77, 124, 255, 0.09);
  }
}

@media (max-width: 680px) {
  .section--revenue-system {
    padding-block: 3.6rem;
  }

  .revenue-system__highlight {
    white-space: normal;
  }

  .revenue-flow {
    grid-template-columns: 1fr;
    margin-top: 1.8rem;
  }

  .revenue-flow__step,
  .revenue-flow__step--data {
    grid-column: 1;
    min-height: auto;
    padding: 0.95rem;
  }

  .revenue-flow__step:not(:last-of-type)::after {
    content: "↓";
    position: absolute;
    left: 50%;
    bottom: -1.06rem;
    z-index: 3;
    color: rgba(77, 124, 255, 0.62);
    font-family: var(--f-mono);
    transform: translateX(-50%);
  }

  .revenue-flow__feedback-mobile {
    grid-column: 1;
  }

  .revenue-system__outro {
    padding-top: 1.45rem;
  }
}

/* ============================================================
   LISTES DE CONTRASTE (problème)
   ============================================================ */

.section--problem {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #030711 0%, #050d1e 48%, var(--c-void) 100%);
}

.section--problem::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20% -10%;
  pointer-events: none;
  background: radial-gradient(
    ellipse 58% 52% at 72% 42%,
    rgba(18, 45, 105, 0.24) 0%,
    rgba(8, 24, 58, 0.11) 46%,
    transparent 76%
  );
}

.section--problem::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(92, 108, 143, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 108, 143, 0.5) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 52%, black 18%, transparent 82%);
  mask-image: radial-gradient(ellipse 78% 72% at 50% 52%, black 18%, transparent 82%);
}

.section--problem .wrap {
  position: relative;
  z-index: 1;
}

.problem__intro {
  max-width: 76ch;
}

.problem__intro span {
  display: block;
}

.problem__intro span + span {
  margin-top: 0.7rem;
}

.section--problem .contrast {
  max-width: 1080px;
  margin: 3.25rem auto 0;
  border-top: 1px solid rgba(42, 57, 92, 0.52);
}

.section--problem .contrast__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  padding: 1.4rem clamp(0.25rem, 1.5vw, 1rem);
  border-bottom: 1px solid rgba(42, 57, 92, 0.46);
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.section--problem .contrast__row:hover {
  background: linear-gradient(90deg, transparent, rgba(19, 40, 83, 0.22), transparent);
  border-color: rgba(56, 75, 116, 0.62);
}

.section--problem .contrast__has {
  text-align: right;
  color: var(--c-text);
  font-weight: 600;
  font-size: var(--t-body);
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease);
}

.section--problem .contrast__lacks {
  text-align: left;
  color: var(--c-dim);
  font-size: var(--t-body);
  line-height: 1.55;
  transition: color 0.3s var(--ease);
}

.section--problem .contrast__sep {
  width: 16px;
  height: 16px;
  justify-self: center;
  opacity: 0.42;
  flex-shrink: 0;
  transform: scale(0.82);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
    filter 0.45s var(--ease);
}

.section--problem .contrast__sep img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section--problem.is-visible .contrast__sep {
  opacity: 0.78;
  transform: scale(1);
  filter: drop-shadow(0 0 7px rgba(151, 168, 201, 0.18));
}

.section--problem .contrast__row:hover .contrast__has,
.section--problem .contrast__row:hover .contrast__lacks {
  color: var(--c-text);
}

.section--problem .contrast__row:hover .contrast__sep {
  opacity: 1;
  filter: drop-shadow(0 0 9px rgba(170, 187, 218, 0.3));
}

.problem__closing {
  max-width: 76ch;
  margin-top: 2.75rem;
}

.problem__cta {
  margin-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  .section--problem .contrast__sep {
    transition: none;
    transform: none;
  }
}

/* Utilisé sur les pages légales. */
.col__lede {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  line-height: 1.04;
  padding-top: 0.14em;
}

/* ============================================================
   OFFRES — PARTNER / DASHBOARD / OWNED
   ============================================================ */

.section--partner,
.section--owned,
.section--dashboard,
.section--method {
  isolation: isolate;
  overflow: hidden;
}

.section--partner {
  padding-block: clamp(4.5rem, 8vw, 6.8rem);
  background:
    radial-gradient(ellipse 52% 44% at 78% 30%, rgba(77, 124, 255, 0.14), transparent 72%),
    linear-gradient(180deg, #030713 0%, #061128 52%, #02040a 100%);
}

.offer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.offer-heading__tag {
  margin-top: 0.55rem;
  color: rgba(180, 195, 232, 0.65);
  font-size: 0.84rem;
}

.offer-heading__signal {
  max-width: 32rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(77, 124, 255, 0.22);
  border-radius: 999px;
  background: rgba(77, 124, 255, 0.08);
  color: rgba(218, 226, 247, 0.9);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.partner__title,
.owned__title {
  max-width: 22ch;
  font-family: var(--f-body);
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: none;
}

.partner__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 980px;
  margin-top: 1.35rem;
  color: rgba(214, 222, 241, 0.76);
  font-size: clamp(0.92rem, 1.05vw, 1.04rem);
  line-height: 1.65;
}

.partner__intro strong {
  color: var(--c-text);
  font-weight: 600;
}

.partner-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  gap: 1rem;
  margin-top: clamp(2.6rem, 5vw, 4.2rem);
}

.partner-card {
  min-height: 320px;
  padding: clamp(1.35rem, 3vw, 2.15rem);
  border: 1px solid rgba(77, 124, 255, 0.15);
  border-radius: 18px;
  background: rgba(4, 11, 27, 0.7);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}

.partner-card--operator {
  border-color: rgba(77, 124, 255, 0.3);
  background: linear-gradient(145deg, rgba(12, 35, 84, 0.76), rgba(4, 11, 27, 0.9));
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 124, 255, 0.34);
}

.partner-card h3 {
  min-height: 2em;
  margin-bottom: 1.1rem;
  font-family: var(--f-body);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.partner-card li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.25rem;
  border-top: 1px solid rgba(77, 124, 255, 0.1);
  color: rgba(216, 223, 240, 0.76);
  font-size: 0.91rem;
  line-height: 1.5;
}

.partner-card li::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--c-accent);
  transform: rotate(45deg);
}

.partner-link {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  color: rgba(153, 178, 255, 0.82);
}

.partner-link span {
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(77, 124, 255, 0.35), transparent);
}

.partner-link b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(77, 124, 255, 0.3);
  border-radius: 50%;
  background: rgba(77, 124, 255, 0.08);
  font-family: var(--f-mono);
  font-weight: 400;
}

.partner-deal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(77, 124, 255, 0.15);
  border-radius: 14px;
  background: rgba(2, 4, 10, 0.52);
}

.partner-deal span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 600;
}

.partner-deal p {
  max-width: 72ch;
  color: var(--c-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.section--dashboard {
  padding-block: clamp(4.5rem, 8vw, 6.8rem);
  background:
    radial-gradient(ellipse 60% 52% at 80% 52%, rgba(77, 124, 255, 0.12), transparent 76%),
    #02040a;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(560px, 1.3fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.dashboard-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.dashboard-label > span {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(77, 124, 255, 0.42);
  border-radius: 50%;
  color: #9bb4ff;
  font-size: 0.68rem;
  box-shadow: 0 0 16px rgba(77, 124, 255, 0.18);
}

.dashboard__title {
  max-width: 15ch;
  margin-top: 0.9rem;
}

.dashboard__intro {
  display: grid;
  gap: 0.72rem;
  max-width: 61ch;
  margin-top: 1rem;
  color: rgba(210, 219, 240, 0.72);
  font-size: clamp(0.88rem, 0.98vw, 0.98rem);
  line-height: 1.6;
}

.dashboard-benefits {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.dashboard-benefits article {
  display: grid;
  grid-template-columns: 30px minmax(128px, 0.45fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 0.85rem;
  padding-block: 0.85rem;
  border-top: 1px solid rgba(77, 124, 255, 0.12);
}

.dashboard-benefits span,
.owned-points span {
  color: rgba(133, 163, 255, 0.7);
  font-family: var(--f-mono);
  font-size: 0.66rem;
}

.dashboard-benefits h3,
.owned-points h3 {
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.dashboard-benefits p,
.owned-points p {
  color: var(--c-muted);
  font-size: 0.82rem;
  line-height: 1.48;
}

.dashboard-preview {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(77, 124, 255, 0.22);
  border-radius: 20px;
  background: #040914;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46), 0 0 80px rgba(77, 124, 255, 0.09);
  transform: perspective(1500px) rotateY(-2.2deg) rotateX(1deg);
  transform-origin: center;
  transition: transform 0.7s var(--ease), border-color 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.dashboard-preview:hover {
  transform: perspective(1500px) rotateY(0) rotateX(0) translateY(-4px);
  border-color: rgba(77, 124, 255, 0.38);
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.5), 0 0 95px rgba(77, 124, 255, 0.14);
}

.dashboard-preview__topbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding-inline: 0.9rem;
  border-bottom: 1px solid rgba(77, 124, 255, 0.12);
  background: rgba(2, 4, 10, 0.72);
}

.dashboard-preview__topbar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(153, 178, 255, 0.28);
}

.dashboard-preview__topbar p {
  margin-left: auto;
  color: rgba(153, 178, 255, 0.6);
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-preview__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #02040a;
}

.dashboard-preview figcaption {
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(77, 124, 255, 0.1);
  color: rgba(153, 178, 255, 0.55);
  font-family: var(--f-mono);
  font-size: 0.55rem;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.section--owned {
  padding-block: clamp(4.5rem, 8vw, 6.8rem);
  background:
    radial-gradient(ellipse 48% 42% at 20% 40%, rgba(77, 124, 255, 0.075), transparent 74%),
    linear-gradient(180deg, #02040a 0%, #040914 100%);
}

.offer-heading--owned {
  justify-content: flex-start;
}

.owned-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.96fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}

.owned__title {
  max-width: 21ch;
}

.owned__intro {
  max-width: 66ch;
  margin-top: 1.1rem;
  color: rgba(210, 219, 240, 0.72);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.62;
}

.hybrid-note {
  max-width: 70ch;
  margin-top: 1.15rem;
  color: rgba(174, 187, 219, 0.6);
  font-size: 0.78rem;
  line-height: 1.55;
}

.btn--owned {
  margin-top: 1.7rem;
  border: 1px solid rgba(77, 124, 255, 0.42);
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.2), rgba(77, 124, 255, 0.08));
  color: var(--c-text);
  box-shadow: 0 16px 42px rgba(77, 124, 255, 0.11);
}

.btn--owned:hover {
  border-color: rgba(77, 124, 255, 0.72);
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.3), rgba(77, 124, 255, 0.13));
  box-shadow: 0 20px 52px rgba(77, 124, 255, 0.2);
  transform: translateY(-2px);
}

.owned-points {
  border-top: 1px solid rgba(77, 124, 255, 0.14);
}

.owned-points article {
  display: grid;
  grid-template-columns: 30px minmax(145px, 0.45fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(77, 124, 255, 0.12);
}

.owned-points h3 {
  min-height: 2.5em;
}

/* ============================================================
   CAS RÉELS — VERSION COMPACTE
   ============================================================ */

.section--cases-compact {
  padding-block: clamp(4.5rem, 8vw, 6.8rem);
  background: #02040a;
}

.cases-compact__title {
  max-width: 20ch;
}

.cases-compact__title span {
  color: rgba(153, 178, 255, 0.82);
  font-family: var(--f-body);
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
}

.cases-compact__intro {
  margin-top: 0.75rem;
  color: rgba(210, 219, 240, 0.68);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
}

.case-stack {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.case-compact {
  display: grid;
  grid-template-columns: minmax(480px, 1.18fr) minmax(0, 0.82fr);
  overflow: hidden;
  border: 1px solid rgba(77, 124, 255, 0.14);
  border-radius: 18px;
  background: rgba(6, 17, 40, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.case-compact--reverse .case-compact__visual {
  order: 2;
}

.case-compact__visual {
  position: relative;
  min-width: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(0.65rem, 1.5vw, 1rem);
  background: #050b18;
}

.case-compact__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 48%, rgba(2, 4, 10, 0.26));
  pointer-events: none;
}

.case-compact__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.case-compact:hover .case-compact__visual img {
  transform: scale(1.012);
  filter: brightness(1.04);
}

.case-compact__body {
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.case-compact__body h3 {
  max-width: 20ch;
  margin-bottom: 1.15rem;
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.case-compact__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.case-compact__metrics li {
  padding: 0.4rem 0.52rem;
  border: 1px solid rgba(77, 124, 255, 0.18);
  border-radius: 999px;
  color: rgba(190, 205, 245, 0.86);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.case-compact__story {
  border-top: 1px solid rgba(77, 124, 255, 0.11);
}

.case-compact__story div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.8rem;
  padding-block: 0.68rem;
  border-bottom: 1px solid rgba(77, 124, 255, 0.09);
}

.case-compact__story dt {
  color: rgba(153, 178, 255, 0.72);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-compact__story dd {
  color: rgba(211, 219, 238, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* ============================================================
   MÉTHODE — TRANSITION COMPACTE
   ============================================================ */

.section--method {
  padding-block: clamp(3.7rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 48% 36% at 75% 28%, rgba(77, 124, 255, 0.08), transparent 72%),
    linear-gradient(180deg, #040914 0%, #02040a 100%);
}

.method__title {
  margin-top: 0.55rem;
}

.method__intro {
  max-width: 58ch;
  margin-top: 0.65rem;
  color: rgba(210, 219, 240, 0.7);
  font-size: 0.95rem;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 2rem;
}

.method-step {
  position: relative;
  min-height: 178px;
  padding: 1rem;
  border: 1px solid rgba(77, 124, 255, 0.12);
  border-radius: 12px;
  background: rgba(4, 11, 27, 0.54);
  opacity: 0.46;
  transform: translateY(8px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), border-color 0.55s var(--ease), background 0.55s var(--ease);
}

.method-step.is-active {
  opacity: 1;
  transform: none;
  border-color: rgba(77, 124, 255, 0.25);
  background: linear-gradient(180deg, rgba(77, 124, 255, 0.07), rgba(4, 11, 27, 0.58));
}

.method-step__num {
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(133, 163, 255, 0.66);
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.method-step h3 {
  min-height: 2.15em;
  margin-bottom: 0.55rem;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.12;
}

.method-step p {
  color: var(--c-muted);
  font-size: 0.8rem;
  line-height: 1.48;
}

.operator-note {
  max-width: 78ch;
  margin-top: 1.25rem;
  color: rgba(180, 195, 232, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

@media (max-width: 1040px) {
  .dashboard-layout,
  .owned-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    max-width: 900px;
    margin-inline: auto;
    transform: none;
  }

  .case-compact,
  .case-compact--reverse {
    grid-template-columns: 1fr;
  }

  .case-compact--reverse .case-compact__visual {
    order: 0;
  }

  .case-compact__visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 820px) {
  .partner__intro {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .partner-split {
    grid-template-columns: 1fr;
  }

  .partner-link {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
  }

  .partner-link span {
    width: 100%;
    height: 1px;
  }

  .partner-card {
    min-height: 0;
  }

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

@media (max-width: 680px) {
  .offer-heading,
  .partner-deal {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-heading__signal {
    max-width: 100%;
    text-align: left;
  }

  .partner__title,
  .owned__title {
    letter-spacing: -0.04em;
  }

  .partner-card {
    padding: 1.25rem;
    border-radius: 15px;
  }

  .partner-card h3 {
    min-height: 0;
  }

  .partner-deal .btn,
  .btn--owned {
    width: 100%;
  }

  .dashboard-benefits article,
  .owned-points article {
    grid-template-columns: 28px 1fr;
  }

  .dashboard-benefits p,
  .owned-points p {
    grid-column: 2;
  }

  .owned-points h3 {
    min-height: 0;
  }

  .dashboard-preview {
    border-radius: 14px;
  }

  .dashboard-preview__topbar p {
    display: none;
  }

  .dashboard-preview figcaption {
    font-size: 0.5rem;
  }

  .case-compact {
    border-radius: 15px;
  }

  .case-compact__visual {
    padding: 0.45rem;
  }

  .case-compact__body {
    padding: 1.2rem;
  }

  .case-compact__story div {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-step {
    min-height: 0;
  }

  .method-step h3 {
    min-height: 0;
  }
}


/* ============================================================
   FORMULAIRE
   ============================================================ */

.form {
  margin-top: 3.25rem;
  max-width: 660px;
}

.field {
  margin-bottom: 2.25rem;
}

.field__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.45rem;
}
.field__label .opt {
  color: var(--c-dim);
  font-weight: 400;
  font-size: 0.85rem;
}

.field__hint {
  display: block;
  font-size: 0.85rem;
  color: var(--c-dim);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field textarea {
  width: 100%;
  background: rgba(245, 246, 248, 0.035);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--c-text);
  font-size: 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-blue-mid);
  background: rgba(245, 246, 248, 0.06);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--c-dim);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--c-text);
  -webkit-box-shadow: 0 0 0 1000px #0c1226 inset;
  transition: background-color 9999s ease-in-out 0s;
}

.field textarea {
  resize: vertical;
  min-height: 92px;
  line-height: 1.65;
}

.field__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
}

/* Radios */
.opts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-line);
}

.opt-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--c-line);
  cursor: pointer;
  transition: padding-left 0.25s var(--ease), color 0.25s var(--ease);
  color: var(--c-muted);
}
.opt-row:hover {
  padding-left: 0.75rem;
  color: var(--c-text);
}

.opt-row input {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid var(--c-blue-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.opt-row input:checked {
  border-color: var(--c-text);
  box-shadow: inset 0 0 0 4px var(--c-text);
}
.opt-row:has(input:checked) {
  color: var(--c-text);
}
.opt-row input[type="checkbox"] {
  border-radius: 2px;
}
.opt-row input[type="checkbox"]:checked {
  box-shadow: inset 0 0 0 3px var(--c-text);
}

.opt-row__text small {
  display: block;
  color: var(--c-dim);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.form__submit {
  margin-top: 3rem;
  width: 100%;
}

.form__foot {
  margin-top: 1.35rem;
  font-size: var(--t-small);
  color: var(--c-dim);
  text-align: center;
}

.form__privacy {
  margin-top: 1.15rem;
  color: var(--c-dim);
  font-size: 0.73rem;
  line-height: 1.55;
}

.form__privacy a {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--c-muted);
  border-bottom: 1px solid rgba(124, 132, 150, 0.42);
}

.form__privacy a:hover {
  color: var(--c-text);
}

/* ============================================================
   FAQ
   ============================================================ */

.section--faq {
  padding-block: clamp(4rem, 7vw, 5.8rem);
  background: #02040a;
}

.section--faq .section__title {
  max-width: 22ch;
}

.faq {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(77, 124, 255, 0.18);
}

.faq__item {
  border-bottom: 1px solid rgba(77, 124, 255, 0.13);
}

.faq__trigger {
  position: relative;
  width: 100%;
  padding: 1.25rem 3rem 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--c-text);
  cursor: pointer;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.42;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.faq__trigger:hover {
  color: #fff;
  padding-left: 0.3rem;
}

.faq__trigger::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.4rem;
  color: rgba(153, 178, 255, 0.76);
  font-family: var(--f-mono);
  font-size: 1.05rem;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease);
}

.faq__trigger[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.36s var(--ease), opacity 0.28s var(--ease);
}

.faq__panel.is-open {
  max-height: 260px;
  opacity: 1;
}

.faq__a {
  max-width: 66ch;
  padding: 0 2rem 1.35rem 0;
  color: var(--c-muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

/* ============================================================
   CTA FINAL INTERACTIF
   ============================================================ */

.decision-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.8rem, 8vw, 7rem);
  border-top: 1px solid rgba(77, 124, 255, 0.14);
  text-align: center;
}

.decision-final::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30% -20%;
  background:
    radial-gradient(ellipse 44% 34% at 50% 56%, rgba(77, 124, 255, 0.2), transparent 74%),
    radial-gradient(ellipse 36% 28% at 65% 75%, rgba(11, 31, 75, 0.6), transparent 76%);
}

.decision-final__inner {
  position: relative;
}

.decision-final__title {
  max-width: 25ch;
  margin: 0.85rem auto 0.75rem;
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.008em;
  text-transform: uppercase;
}

.decision-final__title span {
  color: rgba(184, 200, 240, 0.9);
  font-family: var(--f-body);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-transform: none;
}

.decision-final__hint {
  color: var(--c-muted);
  font-size: 0.86rem;
}

.decision-choice {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 690px;
  margin: 1.55rem auto 0;
}

.decision-choice__button {
  min-height: 60px;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.decision-choice__button--quiet {
  border: 1px solid rgba(245, 246, 248, 0.13);
  background: rgba(245, 246, 248, 0.025);
  color: rgba(218, 225, 241, 0.68);
}

.decision-choice__button--action {
  border: 1px solid rgba(77, 124, 255, 0.42);
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.22), rgba(77, 124, 255, 0.09));
  color: var(--c-text);
  box-shadow: 0 18px 50px rgba(77, 124, 255, 0.12);
}

.decision-choice__button:hover,
.decision-choice__button.is-selected {
  transform: translateY(-3px);
}

.decision-choice__button--action:hover,
.decision-choice__button--action.is-selected {
  border-color: rgba(77, 124, 255, 0.68);
  box-shadow: 0 22px 60px rgba(77, 124, 255, 0.22);
}

.decision-cursor {
  position: absolute;
  z-index: 3;
  top: -12px;
  left: 12%;
  width: 28px;
  color: #fff;
  opacity: 0;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.decision-cursor svg {
  display: block;
  width: 100%;
  fill: currentColor;
  stroke: #02040a;
  stroke-width: 1.4;
}

.decision-cursor i {
  position: absolute;
  right: -9px;
  bottom: 2px;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(77, 124, 255, 0.8);
  border-radius: 50%;
  opacity: 0;
}

.decision-final.is-visible .decision-cursor {
  animation: decision-cursor-loop 6s var(--ease) 0.8s infinite;
}

.decision-final.is-visible .decision-cursor i {
  animation: decision-click-loop 6s ease 0.8s infinite;
}

.decision-choice:has(.is-selected) .decision-cursor {
  animation: none;
  opacity: 0;
}

@keyframes decision-cursor-loop {
  0%, 5% { opacity: 0; transform: translate(0, 0) rotate(-8deg); }
  10% { opacity: 1; }
  34% { opacity: 1; transform: translate(430px, 72px) rotate(-8deg); }
  38% { opacity: 1; transform: translate(430px, 75px) scale(0.9) rotate(-8deg); }
  42% { opacity: 1; transform: translate(430px, 72px) scale(1) rotate(-8deg); }
  50%, 100% { opacity: 0; transform: translate(430px, 72px) rotate(-8deg); }
}

@keyframes decision-click-loop {
  0%, 33% { opacity: 0; transform: scale(0.35); }
  37% { opacity: 1; }
  45%, 100% { opacity: 0; transform: scale(1.8); }
}

.decision-result {
  position: relative;
  max-width: 690px;
  min-height: 142px;
  margin-inline: auto;
}

.decision-result__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0.85rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(77, 124, 255, 0.15);
  border-radius: 12px;
  background: rgba(4, 11, 27, 0.72);
  color: var(--c-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.decision-result__panel[hidden] {
  display: none;
}

.decision-result__panel button {
  position: relative;
  margin-top: 0.65rem;
  padding: 0 0 0.2rem;
  border: 0;
  background: transparent;
  color: rgba(153, 178, 255, 0.82);
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.decision-result__panel button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.decision-result__panel button:hover {
  color: var(--c-text);
  transform: translateX(3px);
}

.decision-result__panel button:hover::after {
  transform: scaleX(1);
}

.decision-result__panel--yes {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.decision-result__panel--yes .btn {
  margin-top: 0.05rem;
}

.decision-result__panel--yes span {
  color: rgba(153, 178, 255, 0.62);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .decision-choice {
    grid-template-columns: 1fr;
  }

  .decision-cursor {
    display: none;
  }

  .decision-result {
    min-height: 176px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .decision-cursor,
  .decision-cursor i {
    animation: none !important;
  }
}



.footer {
  border-top: 1px solid var(--c-line);
  padding-block: 3.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__mark {
  display: block;
  width: 34px;
  flex: 0 0 auto;
  opacity: 0.82;
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}
.footer__mark:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(87, 112, 166, 0.3));
}
.footer__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__brand p,
.footer__nav,
.footer__end {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-dim);
}

.footer__nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a:hover {
  color: var(--c-text);
}

.footer__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(48, 65, 101, 0.7);
  border-radius: 50%;
  color: var(--c-muted);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), filter 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-link:hover {
  color: var(--c-text);
  border-color: rgba(82, 107, 161, 0.82);
  filter: drop-shadow(0 0 8px rgba(69, 95, 151, 0.3));
  transform: translateY(-1px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link svg rect,
.social-link svg circle:not(.social-link__dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-link__dot {
  fill: currentColor;
}

/* ============================================================
   PAGES LÉGALES
   ============================================================ */

.official-mark {
  display: block;
  width: 34px;
  margin-bottom: 3rem;
  opacity: 0.88;
  transition: opacity 0.25s var(--ease), filter 0.25s var(--ease);
}

.official-mark:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(87, 112, 166, 0.3));
}

.official-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.legal {
  min-height: 100svh;
  padding-top: clamp(4rem, 9vw, 7rem);
}

.legal__content {
  margin-top: 3rem;
}

.legal__content section {
  padding-block: 2rem;
  border-top: 1px solid var(--c-line);
}

.legal__content h2 {
  margin-bottom: 1rem;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.legal__content p,
.legal__content address,
.legal__content li {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal__content address {
  margin-block: 0.75rem;
  font-style: normal;
}

.legal__content p + p,
.legal__content p + ul {
  margin-top: 0.8rem;
}

.legal__content li {
  position: relative;
  padding-left: 1.2rem;
}

.legal__content li::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--c-blue-mid);
}

.legal__content a,
.legal__links a {
  color: var(--c-text);
  border-bottom: 1px solid rgba(124, 132, 150, 0.42);
}

.legal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   REVEAL AU SCROLL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .faq__panel,
  .faq__trigger::after,
  .social-link,
  .social-action,
  .official-mark {
    transition: none;
  }
  .social-link:hover,
  .social-action:hover {
    transform: none;
  }
  .hero::before {
    animation: none;
    opacity: 0.9;
  }
  .btn--primary {
    animation: none;
  }
  .hero__watch .dot {
    animation: none;
  }
}

/* ============================================================
   MERCI
   ============================================================ */

.thanks {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.thanks::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 160vw);
  aspect-ratio: 1 / 0.75;
  background: radial-gradient(
    ellipse at 50% 45%,
    var(--c-blue) 0%,
    rgba(11, 31, 75, 0.3) 40%,
    transparent 72%
  );
}

.thanks__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 1.5rem;
}

.thanks .official-mark {
  margin-bottom: 2rem;
}

.thanks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 4.5rem;
}

.card {
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 2rem 1.85rem;
  transition: border-color 0.3s var(--ease);
}
.card:hover {
  border-color: var(--c-blue-mid);
}

.thanks__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(48, 65, 101, 0.7);
  border-radius: 999px;
  color: var(--c-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), filter 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-action:hover {
  color: var(--c-text);
  border-color: rgba(82, 107, 161, 0.82);
  filter: drop-shadow(0 0 8px rgba(69, 95, 151, 0.28));
  transform: translateY(-1px);
}

.social-action svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-action svg rect,
.social-action svg circle:not(.social-link__dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.card__head {
  font-family: var(--f-mono);
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-deco);
  margin-bottom: 1.25rem;
}

.card__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

.yt-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 50% 50%, #0B1F4B 0%, #030713 75%);
  border: 1px solid var(--c-line);
  margin-bottom: 1.6rem;
  position: relative;
  transition: border-color 0.3s var(--ease);
}
.card:hover .yt-thumb {
  border-color: var(--c-blue-mid);
}
.yt-thumb__mark {
  width: 34px;
  color: var(--c-text);
  opacity: 0.14;
}
.yt-thumb__play {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-text);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.card:hover .yt-thumb__play {
  transform: scale(1.09);
}
.yt-thumb__play svg {
  width: 16px;
  height: 16px;
  fill: var(--c-void);
  margin-left: 3px;
}

.inline-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.inline-form input {
  flex: 1 1 180px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  padding: 0.7rem 0;
  color: var(--c-text);
}
.inline-form input:focus {
  outline: none;
  border-bottom-color: var(--c-text);
}
.inline-form .btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 820px) {
  .build-compare {
    display: block;
  }

  .build-column {
    display: block;
  }

  .build-column__title {
    margin-bottom: 0;
  }

  .build-list,
  .build-risks {
    display: block;
  }

  .build-column--risks {
    display: block;
    margin-top: 3.75rem;
  }

  .build-step,
  .build-risks li {
    min-height: 0;
  }

  .build-step {
    padding-block: 1.35rem;
  }

  .build-risks li {
    padding-block: 1.2rem;
  }

  .build-risks__last {
    margin-top: 1.5rem;
  }

  .collab-block {
    margin-top: 3.75rem;
  }

  .collab-process,
  .collab-outcomes,
  .collab-difference {
    grid-template-columns: 1fr;
  }

  .collab-process::before {
    top: 0.5rem;
    bottom: 0.5rem;
    left: 8px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(35, 58, 108, 0.5), rgba(117, 137, 178, 0.65), rgba(35, 58, 108, 0.5));
  }

  .collab-process__step {
    padding: 1.25rem 0 1.4rem 2.7rem;
  }

  .collab-process__step + .collab-process__step {
    border-top: 1px solid rgba(31, 43, 69, 0.7);
    border-left: 0;
  }

  .collab-process__step img {
    top: 1.45rem;
    left: 0;
    transform: none;
  }

  .collab-process__step h4,
  .collab-card h4,
  .collab-card p {
    min-height: 0;
  }

  .collab-outcomes {
    gap: 1rem;
  }

  .collab-card {
    padding: 1.5rem;
  }

  .collab-difference {
    gap: 2rem;
    padding: 1.75rem 1.5rem;
  }

  .collab__cta .btn {
    width: 100%;
    max-width: 420px;
  }

  .section--problem .contrast {
    margin-top: 2.5rem;
  }

  .section--problem .contrast__row {
    grid-template-columns: 18px minmax(0, 1fr);
    grid-template-areas:
      "sep has"
      "sep lacks";
    gap: 0.3rem 0.95rem;
    padding: 1.25rem 0.25rem;
  }

  .section--problem .contrast__has {
    grid-area: has;
    text-align: left;
  }

  .section--problem .contrast__lacks {
    grid-area: lacks;
    text-align: left;
  }

  .section--problem .contrast__sep {
    display: block;
    grid-area: sep;
    align-self: center;
    width: 14px;
    height: 14px;
  }

  .section--problem .contrast__lacks::before {
    content: none;
  }

  .problem__closing {
    margin-top: 2.25rem;
  }

  .problem__cta .btn {
    width: 100%;
    max-width: 420px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .footer__nav {
    justify-content: flex-start;
    gap: 1rem 1.25rem;
  }

  .footer__end {
    justify-content: space-between;
    width: 100%;
  }
}

/* Hero mobile : la VSL doit être visible sans scroller */
@media (max-width: 820px) {
  .hero {
    padding: 0;
  }
  .hero__kicker {
    max-width: 30ch;
  }
  .hero__sub {
    margin-bottom: 0.85rem;
    max-width: 34ch;
  }
  .hero__watch {
    margin-bottom: 1rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.68rem;
  }
  .vsl {
    width: 100%;
    margin-bottom: 0;
  }
  .vsl__play {
    width: 58px;
    height: 58px;
  }
  .vsl__play svg {
    width: 17px;
    height: 17px;
  }
  .hero .btn--primary {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .field__grid {
    grid-template-columns: 1fr;
  }
  .case__body .beat {
    font-size: clamp(1.4rem, 7.5vw, 1.9rem);
  }
}

/* ============================================================
   Formulaire : état d'envoi serveur
   ============================================================ */
.form__status {
  margin-top: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(77, 124, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 18, 43, 0.72);
  color: var(--c-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form__status[hidden] {
  display: none;
}

.form__status--loading {
  color: var(--c-muted);
}

.form__status--success {
  border-color: rgba(141, 183, 255, 0.38);
  color: var(--c-text);
  box-shadow: 0 0 24px -14px rgba(77, 124, 255, 0.8);
}

.form__status--error {
  border-color: rgba(255, 132, 132, 0.42);
  color: #ffd4d4;
  background: rgba(50, 12, 20, 0.34);
}

/* ============================================================
   DERNIERS AJUSTEMENTS — 4AMBITIOUS
   ============================================================ */

/* Partner : titre de marque et deux colonnes mieux hiérarchisées */
.partner__title {
  max-width: 22ch;
  color: #f8faff;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.008em;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(77, 124, 255, 0.2),
    0 0 42px rgba(77, 124, 255, 0.12);
}

.partner-column {
  min-width: 0;
}

.partner-column__lead {
  min-height: 3.45em;
  margin-bottom: 0.85rem;
  color: rgba(220, 227, 244, 0.78);
  font-size: clamp(0.88rem, 0.98vw, 0.98rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.partner-column__lead strong {
  color: var(--c-text);
  font-weight: 600;
}

.partner-card {
  min-height: 320px;
}

.partner-deal p {
  max-width: 90ch;
}

/* Dashboard : coche réellement centrée et titres équilibrés */
.dashboard-label__check {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  padding: 0;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-size: 0.67rem !important;
  transform: translateY(-0.5px);
}

.dashboard-benefits h3 {
  min-height: 2.5em;
  line-height: 1.16;
}

/* Owned : titre classique et parcours distinct du dashboard */
.owned__title {
  max-width: 18ch;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.008em;
  text-transform: uppercase;
}

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

.owned-points {
  position: relative;
  align-self: center;
  padding: 0.4rem 0 0.4rem 0.15rem;
  border-top: 0;
}

.owned-points::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  bottom: 2.2rem;
  left: 21px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(77, 124, 255, 0.45) 16%,
    rgba(77, 124, 255, 0.22) 84%,
    transparent
  );
}

.owned-points article {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 0;
}

.owned-points article + article {
  margin-top: 0.2rem;
}

.owned-points article > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(77, 124, 255, 0.32);
  border-radius: 50%;
  background: #050c1d;
  box-shadow: 0 0 24px rgba(77, 124, 255, 0.1);
  color: rgba(163, 187, 255, 0.9);
  font-size: 0.61rem;
}

.owned-points h3 {
  min-height: 0;
  margin: 0;
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.22;
}

.owned-points p {
  margin-top: 0.34rem;
  max-width: 46ch;
  font-size: 0.82rem;
  line-height: 1.48;
}

/* Cas réels : sous-titre, métriques et alignements */
.cases-compact__title span {
  display: inline-block;
  color: rgba(153, 178, 255, 0.86);
  font-family: var(--f-display);
  font-size: 0.74em;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.006em;
  text-transform: uppercase;
}

.case-stack {
  margin-top: clamp(2.1rem, 4vw, 3.35rem);
}

.case-compact__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.36rem;
  margin-bottom: 1.3rem;
}

.case-compact__metrics li {
  min-width: 0;
  padding: 0.39rem 0.34rem;
  overflow: hidden;
  font-size: clamp(0.47rem, 0.52vw, 0.55rem);
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-compact__story div {
  align-items: start;
}

.case-compact__story dt,
.case-compact__story dd {
  margin: 0;
  line-height: 1.45;
}

.case-compact__story dt {
  padding-top: 0.02rem;
}

/* CTA final : deuxième ligne forte et curseur plus naturel */
.decision-final__title {
  line-height: 0.96;
}

.decision-final__title span {
  display: block;
  margin-top: -0.015em;
  color: #f5f7ff;
  font-family: var(--f-display);
  font-size: 0.92em;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.006em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(77, 124, 255, 0.18);
}

.decision-cursor {
  top: 50%;
  left: 75%;
  width: 21px;
  opacity: 0;
  transform-origin: 4px 3px;
}

.decision-cursor i {
  top: -7px;
  right: auto;
  bottom: auto;
  left: -7px;
  width: 18px;
  height: 18px;
}

.decision-final.is-visible .decision-cursor {
  animation: decision-cursor-organic 8s cubic-bezier(.22, 1, .36, 1) 0.9s infinite;
}

.decision-final.is-visible .decision-cursor i {
  animation: decision-click-organic 8s ease 0.9s infinite;
}

@keyframes decision-cursor-organic {
  0%, 9% {
    opacity: 0;
    transform: translate(-205px, -88px) rotate(-13deg);
  }
  13% {
    opacity: 1;
    transform: translate(-205px, -88px) rotate(-13deg);
  }
  29% {
    opacity: 1;
    transform: translate(-128px, -57px) rotate(-10deg);
  }
  45% {
    opacity: 1;
    transform: translate(-48px, -20px) rotate(-7deg);
  }
  53% {
    opacity: 1;
    transform: translate(-3px, -3px) rotate(-4deg);
  }
  57% {
    opacity: 1;
    transform: translate(-3px, -3px) scale(0.88) rotate(-4deg);
  }
  61%, 68% {
    opacity: 1;
    transform: translate(-3px, -3px) scale(1) rotate(-4deg);
  }
  74%, 100% {
    opacity: 0;
    transform: translate(-3px, -3px) rotate(-4deg);
  }
}

@keyframes decision-click-organic {
  0%, 52% {
    opacity: 0;
    transform: scale(0.35);
  }
  56% {
    opacity: 0.9;
    transform: scale(0.55);
  }
  64% {
    opacity: 0;
    transform: scale(1.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@media (max-width: 820px) {
  .partner-column__lead {
    min-height: 0;
  }

  .partner-card {
    min-height: 0;
  }

  .desktop-break {
    display: none;
  }

  .dashboard-benefits h3 {
    min-height: 0;
  }

  .owned-layout {
    align-items: start;
  }

  .owned-points {
    width: 100%;
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .partner__title,
  .owned__title {
    font-size: clamp(1.85rem, 9.5vw, 2.85rem);
  }

  .case-compact__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.28rem;
  }

  .case-compact__metrics li {
    padding-inline: 0.22rem;
    font-size: clamp(0.42rem, 2vw, 0.49rem);
  }

  .decision-final__title span {
    margin-top: 0.02em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .decision-cursor,
  .decision-cursor i {
    animation: none !important;
  }
}

/* ============================================================
   MICRO-AJUSTEMENTS FINAUX
   ============================================================ */

/* Header : très légèrement plus d’air, sans créer une vraie barre */
.site-header__inner {
  min-height: 76px;
  padding-block: 16px;
}

/* Owned : titre rapproché du sous-titre de modèle */
.owned-layout {
  margin-top: -0.35rem;
}

/* Méthode : blocs plus compacts dans leur partie basse */
.method-step {
  min-height: 162px;
  padding: 0.95rem 1rem 0.72rem;
}

.method-step h3 {
  margin-bottom: 0.42rem;
}

.method-step p {
  margin-bottom: 0;
  line-height: 1.42;
}

/* Cas : alignement strict entre le libellé et son contenu */
.case-compact__story div {
  align-items: start;
}

.case-compact__story dt,
.case-compact__story dd {
  align-self: start;
  line-height: 1.45;
}

.case-compact__story dt {
  display: block;
  padding-top: 0;
}

/* Curseur : départ sur le bouton gauche, déplacement organique vers le bouton droit */
.decision-cursor {
  top: 50%;
  left: 25%;
  width: 19px;
  opacity: 0;
  transform-origin: 4px 3px;
}

.decision-cursor i {
  top: -6px;
  right: auto;
  bottom: auto;
  left: -6px;
  width: 16px;
  height: 16px;
}

.decision-final.is-visible .decision-cursor {
  animation: decision-cursor-left-to-right 8.5s cubic-bezier(.22, 1, .36, 1) 0.9s infinite;
}

.decision-final.is-visible .decision-cursor i {
  animation: decision-click-left-to-right 8.5s ease 0.9s infinite;
}

@keyframes decision-cursor-left-to-right {
  0%, 8% {
    left: 25%;
    top: 50%;
    opacity: 0;
    transform: translate(-4px, -3px) rotate(-10deg);
  }
  13% {
    left: 25%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-10deg);
  }
  23% {
    left: 25%;
    top: 47%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-8deg);
  }
  34% {
    left: 36%;
    top: 43%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-7deg);
  }
  48% {
    left: 53%;
    top: 45%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-6deg);
  }
  61% {
    left: 68%;
    top: 48%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-5deg);
  }
  69% {
    left: 75%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-4deg);
  }
  73% {
    left: 75%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) scale(0.86) rotate(-4deg);
  }
  77%, 83% {
    left: 75%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) scale(1) rotate(-4deg);
  }
  89%, 100% {
    left: 75%;
    top: 50%;
    opacity: 0;
    transform: translate(-4px, -3px) rotate(-4deg);
  }
}

@keyframes decision-click-left-to-right {
  0%, 70% {
    opacity: 0;
    transform: scale(0.35);
  }
  74% {
    opacity: 0.9;
    transform: scale(0.55);
  }
  82% {
    opacity: 0;
    transform: scale(1.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 72px;
    padding-block: 14px;
  }

  .owned-layout {
    margin-top: 0;
  }

  .method-step {
    min-height: 150px;
  }
}

@media (max-width: 680px) {
  .decision-cursor {
    top: 25%;
    left: 50%;
  }

  .decision-final.is-visible .decision-cursor {
    animation: decision-cursor-mobile 8.5s cubic-bezier(.22, 1, .36, 1) 0.9s infinite;
  }

  @keyframes decision-cursor-mobile {
    0%, 8% {
      left: 50%;
      top: 25%;
      opacity: 0;
      transform: translate(-4px, -3px) rotate(-10deg);
    }
    13%, 25% {
      left: 50%;
      top: 25%;
      opacity: 1;
      transform: translate(-4px, -3px) rotate(-8deg);
    }
    44% {
      left: 54%;
      top: 46%;
      opacity: 1;
      transform: translate(-4px, -3px) rotate(-6deg);
    }
    69% {
      left: 50%;
      top: 75%;
      opacity: 1;
      transform: translate(-4px, -3px) rotate(-4deg);
    }
    73% {
      left: 50%;
      top: 75%;
      opacity: 1;
      transform: translate(-4px, -3px) scale(0.86) rotate(-4deg);
    }
    77%, 83% {
      left: 50%;
      top: 75%;
      opacity: 1;
      transform: translate(-4px, -3px) scale(1) rotate(-4deg);
    }
    89%, 100% {
      left: 50%;
      top: 75%;
      opacity: 0;
      transform: translate(-4px, -3px) rotate(-4deg);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .decision-cursor,
  .decision-cursor i {
    animation: none !important;
  }
}

/* ============================================================
   FOOTER + CURSEUR — AJUSTEMENT FINAL
   ============================================================ */

.footer__brand > p {
  line-height: 1.28;
}

/* Trajectoire linéaire : même vitesse du bouton gauche au bouton droit. */
.decision-final.is-visible .decision-cursor {
  animation: decision-cursor-linear 8s linear 0.9s infinite;
}

.decision-final.is-visible .decision-cursor i {
  animation: decision-click-linear 8s linear 0.9s infinite;
}

@keyframes decision-cursor-linear {
  0%, 12% {
    left: 25%;
    top: 50%;
    opacity: 0;
    transform: translate(-4px, -3px) rotate(-7deg);
  }

  15% {
    left: 25%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-7deg);
  }

  65% {
    left: 75%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) rotate(-4deg);
  }

  69% {
    left: 75%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) scale(0.88) rotate(-4deg);
  }

  73%, 80% {
    left: 75%;
    top: 50%;
    opacity: 1;
    transform: translate(-4px, -3px) scale(1) rotate(-4deg);
  }

  86%, 100% {
    left: 75%;
    top: 50%;
    opacity: 0;
    transform: translate(-4px, -3px) rotate(-4deg);
  }
}

@keyframes decision-click-linear {
  0%, 66% {
    opacity: 0;
    transform: scale(0.35);
  }

  70% {
    opacity: 0.9;
    transform: scale(0.55);
  }

  78% {
    opacity: 0;
    transform: scale(1.85);
  }

  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@media (max-width: 680px) {
  .decision-final.is-visible .decision-cursor {
    animation: decision-cursor-linear-mobile 8s linear 0.9s infinite;
  }

  @keyframes decision-cursor-linear-mobile {
    0%, 12% {
      left: 50%;
      top: 25%;
      opacity: 0;
      transform: translate(-4px, -3px) rotate(-7deg);
    }

    15% {
      left: 50%;
      top: 25%;
      opacity: 1;
      transform: translate(-4px, -3px) rotate(-7deg);
    }

    65% {
      left: 50%;
      top: 75%;
      opacity: 1;
      transform: translate(-4px, -3px) rotate(-4deg);
    }

    69% {
      left: 50%;
      top: 75%;
      opacity: 1;
      transform: translate(-4px, -3px) scale(0.88) rotate(-4deg);
    }

    73%, 80% {
      left: 50%;
      top: 75%;
      opacity: 1;
      transform: translate(-4px, -3px) scale(1) rotate(-4deg);
    }

    86%, 100% {
      left: 50%;
      top: 75%;
      opacity: 0;
      transform: translate(-4px, -3px) rotate(-4deg);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .decision-cursor,
  .decision-cursor i {
    animation: none !important;
  }
}

/* ============================================================
   FOOTER SIMPLIFIÉ + PAGE MERCI
   ============================================================ */

.footer__inner--simple {
  grid-template-columns: minmax(240px, 1fr) minmax(280px, auto);
  align-items: center;
}

.footer__copyright {
  text-align: right;
  line-height: 1.65;
}

.footer__copyright > span:first-child {
  color: rgba(220, 227, 244, 0.82);
}

.thanks__grid--single {
  grid-template-columns: minmax(0, 720px);
}

.thanks__grid--single .card {
  width: 100%;
}

.thanks__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-line);
  color: var(--c-dim);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thanks__back {
  color: var(--c-muted);
  border-bottom: 1px solid rgba(124, 132, 150, 0.42);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.thanks__back:hover {
  color: var(--c-text);
  border-color: rgba(220, 227, 244, 0.72);
}

.thanks__bottom p {
  margin: 0;
  text-align: right;
}

@media (max-width: 820px) {
  .footer__inner--simple {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer__inner--simple .footer__end {
    width: 100%;
    justify-content: space-between;
  }

  .footer__copyright {
    text-align: right;
  }
}

@media (max-width: 600px) {
  .footer__inner--simple .footer__end,
  .thanks__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__copyright,
  .thanks__bottom p {
    text-align: left;
  }

  .thanks__grid--single {
    margin-top: 3rem;
  }
}

/* ============================================================
   FORMULAIRE + HEADER + FOOTER — DERNIERS AJUSTEMENTS
   ============================================================ */

/* Header : +10 px de respiration globale sur desktop. */
.site-header__inner {
  min-height: 86px;
  padding-block: 21px;
}

/* L’introduction reste visible uniquement à la première étape. */
.submit-box[data-current-step="2"] .submit-box__head,
.submit-box[data-current-step="3"] .submit-box__head {
  display: none;
}

.submit-box[data-current-step="2"] .form__progress,
.submit-box[data-current-step="3"] .form__progress {
  padding-block: 0.25rem 1.25rem;
}

/* Options plus légères visuellement. */
.submit-box .opt-row__text {
  font-size: calc(1rem - 1px);
  line-height: 1.45;
}

/* Zones de réponse plus compactes, sans gêner l’écriture. */
.submit-box .form-step[data-step="2"] textarea,
.submit-box .form-step[data-step="3"] textarea {
  min-height: 76px;
  padding-block: 0.72rem;
}

/* Footer : promesse resserrée et signature conservée sur une ligne. */
.footer__brand > p {
  line-height: 1.02;
}

.footer__copyright {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.55rem, 0.75vw, 0.68rem);
  line-height: 1.25;
}

/* Animation de la flèche légèrement accélérée. */
.decision-final.is-visible .decision-cursor,
.decision-final.is-visible .decision-cursor i {
  animation-duration: 7.4s;
}

/* Page merci réellement simple. */
.thanks-content-card {
  max-width: 680px;
  padding-block: clamp(1.7rem, 4vw, 2.35rem);
}

.thanks-content-card .card__head {
  margin-bottom: 1rem;
}

.thanks-content-card .card__title {
  margin-bottom: 0.75rem;
}

.thanks-content-card > p:not(.card__head) {
  max-width: 52ch;
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 78px;
    padding-block: 17px;
  }

  .submit-box[data-current-step="2"] .form__progress,
  .submit-box[data-current-step="3"] .form__progress {
    padding-top: 0.15rem;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    min-height: 74px;
    padding-block: 15px;
  }

  .submit-box .opt-row__text {
    font-size: 0.9rem;
  }

  .submit-box .form-step[data-step="2"] textarea,
  .submit-box .form-step[data-step="3"] textarea {
    min-height: 72px;
  }

  .footer__copyright {
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }
}

/* ============================================================
   DERNIERS AJUSTEMENTS — HEADER / FLÈCHE / FOOTER
   ============================================================ */

/* Header encore légèrement plus épais, sans sortir la VSL du premier écran. */
.site-header__inner {
  min-height: 94px;
  padding-block: 25px;
}

/* Animation légèrement accélérée. */
.decision-final.is-visible .decision-cursor,
.decision-final.is-visible .decision-cursor i {
  animation-duration: 6.8s;
}

/* Espacement entre les lettres réduit, sans toucher davantage à l’interligne. */
.footer__brand > p {
  line-height: 1.08;
  letter-spacing: 0.015em;
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 84px;
    padding-block: 20px;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    min-height: 78px;
    padding-block: 17px;
  }

  .footer__brand > p {
    letter-spacing: 0.01em;
  }
}

/* ============================================================
   FORMULAIRE / RESPONSIVE / PREUVES — V16
   ============================================================ */

/* Conserve l’espace validé sous le header absolu. */
.hero__stage {
  transform: translateY(20px);
}

.field__optional {
  color: var(--c-dim);
  font-weight: 400;
  font-size: 0.82em;
}

/* État sélectionné immédiat, y compris sur Safari. */
.submit-box .opt-row.is-selected,
.submit-box .opt-row:has(input:checked) {
  color: var(--c-text);
  border-color: rgba(92, 119, 178, 0.82);
  background: rgba(12, 29, 65, 0.94);
  box-shadow: inset 0 0 0 1px rgba(77, 124, 255, 0.08);
}

.submit-box .opt-row.is-selected input,
.submit-box .opt-row input:checked {
  border-color: var(--c-text);
  box-shadow: inset 0 0 0 4px var(--c-text);
}

/* Rails de témoignages plus lents et stabilisés. */
.message-marquee__track {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.message-marquee__row--right .message-marquee__track {
  animation-duration: 76s;
}

.message-marquee__row--left .message-marquee__track {
  animation-duration: 82s;
}

@media (max-width: 680px) {
  /* Plus d’air sous le header mobile. */
  .site-header__inner {
    min-height: 82px;
    padding-top: 17px;
    padding-bottom: 30px;
  }

  .hero__stage {
    transform: translateY(16px);
  }

  /* Formulaire légèrement resserré sans devenir inconfortable. */
  .submit-box {
    padding: 1.15rem 1rem 1.25rem;
  }

  .form__progress {
    padding-block: 1rem 1.2rem;
  }

  .form-step__title {
    margin-bottom: 1.05rem;
  }

  .form-step .field {
    margin-bottom: 1.15rem;
  }

  .submit-box .opts {
    gap: 0.42rem;
  }

  .submit-box .opt-row {
    padding: 0.72rem 0.78rem;
  }

  .submit-box .field input[type="text"],
  .submit-box .field input[type="email"],
  .submit-box .field input[type="tel"],
  .submit-box .field textarea {
    padding-block: 0.72rem;
  }

  /* Les cinq blocs du système sont centrés sur téléphone. */
  .revenue-flow__step {
    text-align: center;
  }

  .revenue-flow__index {
    width: 100%;
    justify-content: center;
  }

  .revenue-flow__step p {
    margin-inline: auto;
  }

  .message-marquee__row--right .message-marquee__track {
    animation-duration: 68s;
  }

  .message-marquee__row--left .message-marquee__track {
    animation-duration: 74s;
  }
}

@media (max-width: 480px) {
  .hero__stage {
    transform: translateY(12px);
  }
}
