:root {
  --bg: #05070c;
  --bg-2: #060a12;
  --panel: rgba(9, 14, 28, 0.62);
  --panel-2: rgba(8, 12, 22, 0.78);
  --stroke: rgba(47, 128, 237, 0.25);
  --stroke-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.86);
  --muted: rgba(255, 255, 255, 0.62);
  --blue: #2f80ed;
  --blue-2: rgba(47, 128, 237, 0.22);
  --blue-3: rgba(47, 128, 237, 0.12);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1100px 650px at 50% -10%, rgba(47, 128, 237, 0.16), transparent 60%),
    radial-gradient(900px 600px at 10% 30%, rgba(47, 128, 237, 0.08), transparent 55%),
    linear-gradient(180deg, #05070c 0%, #03040a 60%, #020309 100%);
  color: var(--text);
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

/* Hard guardrails against horizontal drag on mobile */
header,
main,
section,
.container,
.top-marquee {
  max-width: 100vw;
}

header,
main {
  overflow-x: clip;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #000;
  border: 1px solid var(--stroke);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 30;
}

.skip-link:focus {
  left: 12px;
}

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

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(820px 460px at 50% 6%, rgba(47, 128, 237, 0.18), transparent 62%);
  opacity: 0.9;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, transparent 26%, transparent 70%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 1;
}

.bg__grid {
  position: absolute;
  inset: -1px;
  background-image: linear-gradient(to right, rgba(47, 128, 237, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47, 128, 237, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.22;
  animation: grid-drift 18s linear infinite;
}

.bg__cage {
  position: absolute;
  inset: -1px;
  left: 50%;
  right: auto;
  width: 140vw;
  background-image: repeating-linear-gradient(
      to right,
      rgba(47, 128, 237, 0.12) 0,
      rgba(47, 128, 237, 0.12) 1px,
      transparent 1px,
      transparent 42px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(47, 128, 237, 0.10) 0,
      rgba(47, 128, 237, 0.10) 1px,
      transparent 1px,
      transparent 42px
    );
  opacity: 0.22;
  transform-origin: top center;
  transform: translateX(-50%) perspective(900px) rotateX(67deg) translateY(-220px) scale(1.25);
  filter: drop-shadow(0 0 18px rgba(47, 128, 237, 0.10));
  animation: cage-drift 14s ease-in-out infinite;
}

.bg__cage,
.bg__grid,
.bg__orb,
.bg__noise {
  will-change: transform, opacity, background-position;
}

.bg__cage,
.bg__grid,
.bg__orb,
.bg__noise {
  z-index: 0;
}

@keyframes grid-drift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.20;
  }
  50% {
    transform: translate3d(-10px, 10px, 0);
    opacity: 0.24;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.20;
  }
}

@keyframes cage-drift {
  0% {
    transform: translateX(-50%) perspective(900px) rotateX(67deg) translateY(-220px) translateX(0) scale(1.25);
    opacity: 0.20;
  }
  50% {
    transform: translateX(-50%) perspective(900px) rotateX(67deg) translateY(-220px) translateX(10px)
      scale(1.25);
    opacity: 0.24;
  }
  100% {
    transform: translateX(-50%) perspective(900px) rotateX(67deg) translateY(-220px) translateX(0) scale(1.25);
    opacity: 0.20;
  }
}

.bg__orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.45;
  background: radial-gradient(circle at 30% 30%, rgba(47, 128, 237, 0.55), rgba(47, 128, 237, 0.05) 60%, transparent 72%);
}

.bg__orb--1 {
  left: -140px;
  top: 220px;
  animation: floaty 11s ease-in-out infinite;
}

.bg__orb--2 {
  right: -170px;
  top: 80px;
  width: 460px;
  height: 460px;
  opacity: 0.38;
  animation: floaty 13s ease-in-out infinite reverse;
}

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* 1) Bandeau défilant : logo / mot / logo / mot… — fond semi-transparent type verre */
.top-marquee {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: hidden;
  border-bottom: 1px solid rgba(47, 128, 237, 0.22);
  background: linear-gradient(
    180deg,
    rgba(12, 22, 44, 0.78) 0%,
    rgba(6, 12, 26, 0.68) 50%,
    rgba(5, 10, 22, 0.82) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 36px rgba(47, 128, 237, 0.08),
    0 1px 0 rgba(47, 128, 237, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.top-marquee__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.top-marquee__strip {
  display: flex;
  width: max-content;
  align-items: center;
  animation: top-marquee-scroll 40s linear infinite;
  will-change: transform;
}

.top-marquee__segment {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(20px, 3.2vw, 36px);
  padding: 10px 0;
}

.top-marquee__logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  flex-shrink: 0;
  border: none;
  background: transparent;
}

.top-marquee__word {
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(11px, 1.35vw, 13px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.top-marquee__word--brand {
  font-family: "Bebas Neue", Poppins, system-ui, sans-serif;
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--blue);
}

.top-marquee__logo-img {
  display: block;
  height: clamp(30px, 5vw, 40px);
  width: auto;
  max-width: min(130px, 34vw);
  min-height: 26px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(47, 128, 237, 0.35));
  -webkit-user-drag: none;
  user-select: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .top-marquee__strip {
    animation: none;
  }

  .bg__grid,
  .bg__cage,
  .bg__orb {
    animation: none;
  }
}

/* Hero */
.hero {
  padding: 44px 0 24px;
}

.hero__inner {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero-meta__sep {
  color: rgba(47, 128, 237, 0.55);
}

.hero-meta__check {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.92);
  box-shadow: 0 0 18px rgba(47, 128, 237, 0.55);
}

.hero__title {
  margin: 0;
  font-family: "Bebas Neue", Poppins, system-ui, sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero__title--stack {
  display: grid;
  gap: 8px;
}

.hero__title-top {
  font-size: 0.92em;
  letter-spacing: 0.14em;
  opacity: 0.95;
}

.hero__title-bottom {
  font-size: 1.05em;
  letter-spacing: 0.02em;
}

.hero__title-accent {
  color: var(--blue);
  text-shadow: 0 0 28px rgba(47, 128, 237, 0.35);
}

.hero__subtitle {
  margin: 0;
  width: 100%;
  max-width: min(100%, calc(100vw - 32px));
  color: rgba(47, 128, 237, 0.92);
  font-size: clamp(8px, 2.85vw, 12px);
  line-height: 1.4;
  letter-spacing: clamp(0.08em, 0.15vw + 0.06em, 0.18em);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: clip;
}

/* Retirer cette classe sur .hero__subtitle pour réafficher le sous-titre */
.hero__subtitle--hidden {
  display: none !important;
}

/* Vidéo hero 16:9 */
.video-block {
  width: min(920px, 100%);
  margin-top: 18px;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: min(920px, 100%);
  margin-inline: auto;
  min-width: 0;
}

.video-frame__aura {
  position: absolute;
  inset: -12px -10px -24px;
  z-index: 0;
  border-radius: 28px;
  background: radial-gradient(
    ellipse 72% 58% at 50% 18%,
    rgba(47, 128, 237, 0.38) 0%,
    rgba(47, 128, 237, 0.1) 48%,
    transparent 74%
  );
  filter: blur(22px);
  opacity: 0.82;
  pointer-events: none;
  animation: video-aura-pulse 5s ease-in-out infinite;
}

.video-frame__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: clamp(14px, 2vw, 20px);
  padding: 3px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(126, 184, 255, 0.5) 0%,
    rgba(47, 128, 237, 0.22) 38%,
    rgba(47, 128, 237, 0.06) 58%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 28px 64px rgba(0, 0, 0, 0.52),
    0 0 56px rgba(47, 128, 237, 0.2);
}

.video-frame__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(
    120deg,
    transparent 28%,
    rgba(255, 255, 255, 0.1) 48%,
    transparent 64%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: video-shine 4.5s ease-in-out infinite;
}

/* Ratio 16:9 figé dès le 1er rendu → évite le saut / bandes quand Wistia s’hydrate */
.video-frame__inner {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(11px, 1.5vw, 17px);
  overflow: hidden;
  background: #000;
}

.video-frame__player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #000;
  box-sizing: border-box;
}

/* Avant définition du web component : même emprise que la version finale */
wistia-player.video-frame__player:not(:defined) {
  background: center / cover no-repeat
    url("https://fast.wistia.com/embed/medias/wqm7s2euy7/swatch");
  filter: blur(5px);
}

/* Vidéos duo — format mobile 9:16, côte à côte (témoignages vidéo) */
.video-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 4vw, 28px);
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  align-items: end;
}

.video-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-phone:hover {
  transform: translateY(-4px);
}

.video-phone__aura {
  position: absolute;
  inset: -14px -18px -28px;
  z-index: 0;
  border-radius: 32px;
  background: radial-gradient(
    ellipse 70% 55% at 50% 0%,
    rgba(47, 128, 237, 0.35) 0%,
    rgba(47, 128, 237, 0.08) 45%,
    transparent 72%
  );
  filter: blur(18px);
  opacity: 0.85;
  pointer-events: none;
  animation: video-aura-pulse 5s ease-in-out infinite;
}

@keyframes video-aura-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.03);
  }
}

.video-phone__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(280px, 44vw);
  margin-inline: auto;
  border-radius: 22px;
  padding: 3px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(126, 184, 255, 0.55) 0%,
    rgba(47, 128, 237, 0.25) 35%,
    rgba(47, 128, 237, 0.08) 55%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(47, 128, 237, 0.22);
}

.video-phone__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 62%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: video-shine 4.5s ease-in-out infinite;
}

@keyframes video-shine {
  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.65;
  }
}

.video-phone__viewport {
  position: relative;
  border-radius: 19px;
  overflow: hidden;
  background: #070a12;
}

.video-phone-native {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 560px);
  border-radius: 0;
  overflow: hidden;
  background: #070a12;
  object-fit: cover;
  vertical-align: middle;
}

/* Couverture + lecture : poster vidéo visible sous un voile léger + play bleu */
.video-phone__gate {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: inherit;
  cursor: pointer;
  background: transparent;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-phone__gate:focus-visible {
  outline: 2px solid rgba(126, 184, 255, 0.95);
  outline-offset: 3px;
}

.video-phone__viewport.is-playing .video-phone__gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-phone__gate-pulse {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(47, 128, 237, 0.45);
  animation: video-gate-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes video-gate-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }

  70%,
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.video-phone__gate-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: 4px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, rgba(126, 184, 255, 0.98), var(--blue));
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.35),
    0 10px 32px rgba(47, 128, 237, 0.5),
    0 0 40px rgba(47, 128, 237, 0.25);
}

.video-phone__gate:hover .video-phone__gate-icon {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(47, 128, 237, 0.6),
    0 0 48px rgba(47, 128, 237, 0.32);
}

.video-phone__gate-triangle {
  width: 22px;
  height: 22px;
  display: block;
}

.video-phone__label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (max-width: 520px) {
  .video-duo {
    gap: 12px;
  }

  .video-phone__shell {
    max-width: min(168px, 46vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-frame__aura {
    animation: none;
    opacity: 0.72;
  }

  wistia-player.video-frame__player:not(:defined) {
    filter: none;
  }

  .video-frame__shell::after {
    animation: none;
    opacity: 0.35;
  }

  .video-phone__aura {
    animation: none;
    opacity: 0.75;
  }

  .video-phone__shell::after {
    animation: none;
    opacity: 0.35;
  }

  .video-phone:hover {
    transform: none;
  }

  .video-phone__gate-pulse {
    animation: none;
    opacity: 0;
  }
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.cta-row__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.cta-row__eyebrow-label {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.3;
  max-width: 11rem;
}

.cta-row__chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ec8ff;
  filter: drop-shadow(0 0 6px rgba(120, 190, 255, 0.95)) drop-shadow(0 0 14px rgba(47, 128, 237, 0.65));
  animation: cta-arrow-down 2.2s ease-in-out infinite;
}

.cta-row__chev svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cta-row__chev:last-of-type {
  animation-delay: 0.15s;
}

@keyframes cta-arrow-down {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.88;
  }

  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-row__chev {
    animation: none;
    opacity: 0.95;
  }
}

/* 4) Button (based on provided style, improved click) */
.button {
  --main-color: rgb(47, 128, 237);
  --main-bg-color: rgba(47, 128, 237, 0.36);
  --pattern-color: rgba(47, 128, 237, 0.08);

  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  background: radial-gradient(circle, var(--main-bg-color) 0%, rgba(0, 0, 0, 0) 95%),
    linear-gradient(var(--pattern-color) 1px, transparent 1px),
    linear-gradient(to right, var(--pattern-color) 1px, transparent 1px);
  background-size: cover, 15px 15px, 15px 15px;
  background-position: center center, center center, center center;
  border-image: radial-gradient(circle, var(--main-color) 0%, rgba(0, 0, 0, 0) 100%) 1;
  border-width: 1px 0 1px 0;
  border-style: solid;
  color: rgba(255, 255, 255, 0.92);
  padding: 1rem 2.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background-size 0.25s ease-in-out,
    filter 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  outline: none;
  position: relative;
  border-radius: 14px;
}

.button--cta {
  padding: 0.8rem 2rem;
  font-size: 0.92rem;
  letter-spacing: 0.14rem;
}

.button__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button__icon svg {
  width: 22px;
  height: 22px;
}

.button:hover {
  background-size: cover, 10px 10px, 10px 10px;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(47, 128, 237, 0.25);
  filter: saturate(1.06);
}

.button:focus-visible {
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.2), 0 0 34px rgba(47, 128, 237, 0.34);
}

.button:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 0 0 2px rgba(47, 128, 237, 0.22), 0 0 40px rgba(47, 128, 237, 0.42);
  filter: saturate(1.12);
}

.button--ghost {
  background: rgba(47, 128, 237, 0.05);
  border: 1px solid rgba(47, 128, 237, 0.25);
  border-image: none;
  border-width: 1px;
  letter-spacing: 0.16rem;
}

.hero-trust {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  padding: 2px 12px 0;
  max-width: 28rem;
}

.hero-trust__exp {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.hero-trust__num {
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--blue);
  text-shadow: 0 0 18px rgba(47, 128, 237, 0.35);
}

.hero-trust__text {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.hero-trust__meta {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(47, 128, 237, 0.18);
  background: rgba(47, 128, 237, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

.hero-trust__verified {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(47, 128, 237, 0.55));
}

.hero-trust__dot {
  color: rgba(47, 128, 237, 0.45);
  letter-spacing: 0;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section--bio {
  position: relative;
}

.section--bio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px 260px at 40% 0%, rgba(47, 128, 237, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 35%, transparent 70%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 1;
}

.section--bio > .container {
  position: relative;
}

.about {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.88), rgba(3, 4, 10, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
  min-width: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

/* PC : carte profil compacte, photo dominante, alignée en haut avec la présentation */
@media (min-width: 981px) {
  .about__grid {
    grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: clamp(20px, 2.8vw, 32px) clamp(24px, 3.2vw, 44px);
    align-items: start;
  }

  .about__column--story {
    display: contents;
  }

  .about__intro {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 0;
    padding: 18px 18px 20px;
    border-bottom: none;
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(12, 18, 34, 0.96) 0%, rgba(6, 10, 20, 0.9) 100%);
    border: 1px solid rgba(47, 128, 237, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 16px 48px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(0, 0, 0, 0.25);
    align-self: start;
    width: 100%;
    min-width: 0;
  }

  .about__intro-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* Photo = largeur utile de la carte (effet “hero”), plafonnée pour très grands écrans */
  .about__photo {
    width: 100%;
    max-width: min(100%, 320px);
    margin-inline: auto;
    height: auto;
    aspect-ratio: 1;
    border-radius: 20px;
    box-shadow:
      0 0 0 4px rgba(47, 128, 237, 0.08),
      0 14px 40px rgba(0, 0, 0, 0.5);
  }

  .about__name {
    font-size: clamp(26px, 2.35vw, 38px);
    letter-spacing: 0.1em;
    line-height: 1.05;
    text-align: center;
  }

  .about__intro-body {
    gap: 12px;
  }

  .about__tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
  }

  .about__tag {
    border-color: rgba(47, 128, 237, 0.3);
    background: rgba(47, 128, 237, 0.09);
    box-shadow: 0 0 16px rgba(47, 128, 237, 0.1);
    padding: 7px 12px 7px 8px;
    font-size: 11px;
  }

  .about__verified {
    width: 16px;
    height: 16px;
  }

  .about__socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 2px;
  }

  .about__social {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    gap: 10px;
  }

  .about__social-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .about__story {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
    max-width: none;
    align-self: start;
  }

  .about__column--proof {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
  }
}

.about__column--story {
  min-width: 0;
}

.about__column--proof {
  min-width: 0;
}

.about__intro {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.about__intro-body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.about__photo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.06), 0 14px 40px rgba(0, 0, 0, 0.4);
  background: radial-gradient(circle at 30% 30%, rgba(47, 128, 237, 0.22), rgba(0, 0, 0, 0.2));
  flex: 0 0 auto;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.about__name {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Bebas Neue", Poppins, system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(26px, 5.2vw, 42px);
  line-height: 1.02;
  text-shadow: 0 0 32px rgba(47, 128, 237, 0.2);
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.about__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(47, 128, 237, 0.16);
  background: rgba(47, 128, 237, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  max-width: 100%;
}

.about__verified {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(47, 128, 237, 0.55));
}

.about__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.about__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.about__social:hover {
  border-color: rgba(47, 128, 237, 0.45);
  background: rgba(47, 128, 237, 0.08);
  box-shadow: 0 0 24px rgba(47, 128, 237, 0.15);
}

.about__social:focus-visible {
  outline: 2px solid rgba(47, 128, 237, 0.85);
  outline-offset: 3px;
}

.about__social-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(47, 128, 237, 0.1);
  color: rgba(47, 128, 237, 0.95);
  flex-shrink: 0;
}

.about__social-icon svg {
  width: 18px;
  height: 18px;
}

.about__social-text {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
}

.about__social-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.about__social-handle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.02em;
}

.about__story {
  padding: 20px 0 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: grid;
  gap: 18px;
  max-width: 56ch;
}

.about__story-main {
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 2vw, 20px);
  min-width: 0;
}

.about__story-bar {
  flex-shrink: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(126, 184, 255, 0.95) 0%,
    var(--blue) 38%,
    rgba(47, 128, 237, 0.15) 100%
  );
  box-shadow: 0 0 18px rgba(47, 128, 237, 0.35);
  margin-top: 0.35em;
  align-self: stretch;
  min-height: 3.5em;
}

.about__story-copy {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 16px;
}

.about__story-copy .about__story-body {
  border-left: none;
  padding-left: 0;
}

.about__story-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(47, 128, 237, 0.88);
}

.about__story-lead {
  margin: 0;
  font-size: clamp(1.03rem, 0.45vw + 0.94rem, 1.16rem);
  font-weight: 500;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.93);
}

.about__story-body {
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(47, 128, 237, 0.38);
  display: grid;
  gap: 15px;
}

.about__story-body p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.86;
  color: rgba(255, 255, 255, 0.76);
}

.about__story-body p:last-child {
  margin-bottom: 0;
}

.about__proof {
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(10, 14, 24, 0.55), rgba(4, 6, 12, 0.72));
  border: 1px solid rgba(47, 128, 237, 0.14);
  padding: clamp(16px, 2.5vw, 22px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about__proof--split {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.proof-panel {
  position: relative;
  min-width: 0;
}

.proof-panel--certs > .proof-stack {
  position: relative;
  z-index: 1;
}

.proof-panel--certs::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.45),
    rgba(255, 255, 255, 0.06) 42%,
    rgba(47, 128, 237, 0.2) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

.proof-panel__head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-panel__head--tight {
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.proof-panel__head--certs-centered {
  justify-items: center;
  text-align: center;
}

.proof-panel__head--certs-centered .proof-panel__tag {
  justify-self: center;
}

/* Mode test : contours retirés sur le bloc certificats uniquement */
.proof-panel--bare::before {
  display: none;
}

.proof-panel--bare .proof-panel__head {
  border-bottom: none;
  padding-bottom: 8px;
}

.proof-panel--bare .proof-panel__tag,
.proof-panel--bare .proof-panel__tag--ok,
.proof-panel--bare .proof-panel__tag--rail {
  border: none;
  box-shadow: none;
}

.proof-panel--bare .proof-card__shell {
  border: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  outline: none;
}

.proof-panel--bare .proof-card__shell::after {
  opacity: 0.45;
}

.proof-panel--bare .proof-card__frame {
  border: none;
  outline: none;
}

.proof-panel--bare .proof-card__pill {
  border: none;
  background: rgba(0, 0, 0, 0.28);
}

.proof-panel--payouts .proof-panel__head {
  border-bottom-color: rgba(47, 128, 237, 0.12);
}

.proof-panel__head--payouts {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(47, 128, 237, 0.14);
}

.proof-panel__head--payouts.proof-panel__head {
  gap: 0;
}

.payout-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payout-head__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: rgba(47, 128, 237, 0.96);
  background: rgba(47, 128, 237, 0.1);
  border: 1px solid rgba(47, 128, 237, 0.28);
  box-shadow: 0 0 22px rgba(47, 128, 237, 0.12);
  flex-shrink: 0;
}

.payout-head__icon svg {
  width: 22px;
  height: 22px;
}

.payout-head__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow:
    0 0 10px rgba(47, 128, 237, 0.95),
    0 0 22px rgba(47, 128, 237, 0.45);
  flex-shrink: 0;
  animation: payout-dot-pulse 1.35s ease-in-out infinite;
}

.payout-head__title {
  margin: 0;
}

@keyframes payout-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 10px rgba(47, 128, 237, 0.95),
      0 0 22px rgba(47, 128, 237, 0.45);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.82);
    box-shadow:
      0 0 6px rgba(47, 128, 237, 0.5),
      0 0 14px rgba(47, 128, 237, 0.25);
  }
}

.proof-panel__tag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 128, 237, 0.28);
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.12), rgba(0, 0, 0, 0.25));
  box-shadow: 0 0 24px rgba(47, 128, 237, 0.15);
}

.proof-panel__tag--rail {
  border-color: rgba(47, 128, 237, 0.2);
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.08), rgba(0, 0, 0, 0.35));
}

.proof-panel__tag--ok {
  gap: 9px;
  border-color: rgba(47, 128, 237, 0.34);
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.16), rgba(0, 0, 0, 0.28));
  box-shadow:
    0 0 26px rgba(47, 128, 237, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof-panel__tag-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(47, 128, 237, 0.55));
}

.proof-panel__title {
  margin: 0;
  font-family: "Bebas Neue", Poppins, system-ui, sans-serif;
  font-size: clamp(26px, 4.2vw, 34px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1;
  text-shadow: 0 0 40px rgba(47, 128, 237, 0.22);
}

.proof-panel__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  max-width: 44ch;
}

.proof-panel__hint--muted {
  color: rgba(255, 255, 255, 0.48);
}

/* Rail payouts — carrousel horizontal premium */
.payout-rail {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(
    110deg,
    rgba(47, 128, 237, 0.42),
    rgba(255, 255, 255, 0.06) 40%,
    rgba(47, 128, 237, 0.22) 92%
  );
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.payout-rail__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 47%,
    transparent 54%
  );
  pointer-events: none;
  opacity: 0.55;
  animation: payout-shine 6s ease-in-out infinite;
}

@keyframes payout-shine {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-12%);
  }
  50% {
    opacity: 0.85;
    transform: translateX(12%);
  }
}

.payout-rail__edge {
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: clamp(32px, 12%, 60px);
  z-index: 2;
  pointer-events: none;
}

.payout-rail__edge--left {
  left: 2px;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  background: linear-gradient(90deg, rgba(4, 6, 12, 0.98), transparent);
}

.payout-rail__edge--right {
  right: 2px;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  background: linear-gradient(270deg, rgba(4, 6, 12, 0.98), transparent);
}

.carousel--payouts {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 2px);
  overflow: hidden;
  background: linear-gradient(185deg, rgba(10, 12, 20, 0.98), rgba(3, 4, 10, 0.99));
  padding: 0;
  box-shadow: inset 0 0 60px rgba(47, 128, 237, 0.04);
}

.carousel__viewport--payouts {
  display: flex;
  align-items: center;
  min-height: 0;
  border-radius: calc(var(--radius-xl) - 4px);
  border: none;
  background: linear-gradient(180deg, rgba(6, 8, 14, 0.95), rgba(2, 3, 8, 0.98));
  margin-inline: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.carousel__viewport--payouts .carousel__track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
}

.media-card--payout {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * Cadre unique — ratio de référence type certificat paysage (~3542×2500).
 * object-fit: cover remplit tout le cadre : même « boîte » pour portraits et paysages (`assets/payouts/`).
 * au prix d’un léger rognage sur les bords des images dont le ratio diffère.
 */
.payout-card__media {
  --payout-slot-w: clamp(216px, 58vw, 300px);
  flex-shrink: 0;
  width: var(--payout-slot-w);
  aspect-ratio: 3542 / 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(4, 6, 12, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.media-card--payout img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

/* Preuves — pile sticky + entrée type rotateInUpRight */
.proof-stack {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
}

.proof-stack__item {
  position: sticky;
  top: max(4.5rem, 12vh);
  top: max(4.5rem, 12dvh);
  z-index: var(--proof-i, 1);
  margin-bottom: min(6.5vh, 52px);
  margin-bottom: min(6.5dvh, 52px);
  perspective: 900px;
}

.proof-stack__item--last {
  margin-bottom: min(2.4vh, 22px);
  margin-bottom: min(2.4dvh, 22px);
}

.proof-card {
  margin: 0;
  min-width: 0;
  transform-origin: 50% 85%;
  will-change: transform, opacity;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.proof-card:not(.is-entered) {
  opacity: 0;
  transform: translate3d(4%, 22%, 0) rotate3d(0, 0, 1, -7deg) scale(0.96);
}

.proof-card.is-entered {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(var(--proof-tilt, 0deg)) scale(1);
}

.proof-card__shell {
  position: relative;
  border-radius: clamp(20px, 4vw, 28px);
  padding: 12px 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(150deg, rgba(14, 18, 28, 0.96), rgba(5, 7, 14, 0.98));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(47, 128, 237, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.proof-card__shell::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 92% 94%, rgba(47, 128, 237, 0.26), transparent 52%);
  opacity: 0.85;
  pointer-events: none;
}

.proof-card__pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(47, 128, 237, 0.22);
  background: rgba(0, 0, 0, 0.35);
}

.proof-card__pill-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(47, 128, 237, 0.45));
}

.proof-card__frame {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(520px 240px at 24% 18%, rgba(47, 128, 237, 0.14), rgba(0, 0, 0, 0.42));
}

.proof-card__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .proof-stack__item {
    margin-bottom: 10px;
    position: relative;
    top: auto;
  }

  .proof-card,
  .proof-card:not(.is-entered),
  .proof-card.is-entered {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .payout-rail__shine {
    animation: none;
  }

  .payout-rail__shine {
    opacity: 0.45;
    transform: none;
  }

  .payout-head__dot {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section__head--bio {
  gap: 0;
  margin-bottom: 12px;
}

.section__title {
  margin: 0;
  font-family: "Bebas Neue", Poppins, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 44px);
}

.section__kicker {
  margin: 0;
  color: var(--muted);
  max-width: 74ch;
  line-height: 1.7;
}

/* Témoignages — section type landing (profondeur + mesh animé) */
.section--testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section--testimonials__mesh {
  position: absolute;
  inset: -20% -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(47, 128, 237, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 38% at 88% 35%, rgba(47, 128, 237, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 95%, rgba(47, 128, 237, 0.08), transparent 45%);
  filter: blur(40px);
  opacity: 0.9;
  animation: testimonials-mesh-drift 22s ease-in-out infinite alternate;
}

@keyframes testimonials-mesh-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(2%, -1.5%, 0) scale(1.04);
  }
}

.section--testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.88);
  text-shadow: 0 0 24px rgba(47, 128, 237, 0.35);
}

.testimonials-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.02;
  text-align: center;
}

.testimonials-hero-title__a {
  font-size: clamp(2rem, 6.5vw, 3.1rem);
  letter-spacing: 0.06em;
}

.testimonials-hero-title__b {
  font-size: clamp(1.85rem, 5.8vw, 2.75rem);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 40px rgba(47, 128, 237, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonials-sub {
  margin: 0;
  max-width: 26rem;
  font-size: clamp(0.88rem, 2.4vw, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.testimonials-hero-title__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(126, 184, 255, 0.98);
  background: radial-gradient(circle at 35% 28%, rgba(47, 128, 237, 0.38), rgba(0, 0, 0, 0.62));
  border: 1px solid rgba(126, 184, 255, 0.32);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(47, 128, 237, 0.26);
}

.testimonials-hero-title__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Desktop: mettre "Ce qu’ils envoient en vocal" sur une ligne */
@media (min-width: 820px) {
  .testimonials-hero-title {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .testimonials-hero-title__a,
  .testimonials-hero-title__b,
  .testimonials-hero-title__icon {
    white-space: nowrap;
  }

  .testimonials-hero-title__b {
    gap: 10px;
  }

  .testimonials-hero-title__icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 28%, rgba(47, 128, 237, 0.26), rgba(0, 0, 0, 0.35));
    border-color: rgba(126, 184, 255, 0.22);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45),
      0 0 18px rgba(47, 128, 237, 0.22);
  }

  .testimonials-hero-title__icon svg {
    width: 18px;
    height: 18px;
  }

  /* Harmoniser la typo sur une ligne (sinon ça fait “2 titres collés”) */
  .testimonials-hero-title__a,
  .testimonials-hero-title__b {
    font-size: clamp(2.15rem, 4.6vw, 3.05rem);
    letter-spacing: 0.07em;
    line-height: 1.05;
  }

  /* Pas besoin d’un letter-spacing plus fort sur le second morceau en desktop */
  .testimonials-hero-title__b {
    letter-spacing: 0.07em;
  }

  /* Icône à la fin, parfaitement centrée avec le texte */
  .testimonials-hero-title__icon {
    margin-left: 6px;
    transform: translateY(-1px);
  }
}

/* Témoignages — vidéos mobile sous le board vocal */
.testimonials-video {
  width: 100%;
  margin-top: clamp(40px, 7vw, 64px);
  padding-top: clamp(32px, 5.5vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 4vw, 32px);
}

.testimonials-video__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 34rem;
}

.testimonials-video__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.88);
  text-shadow: 0 0 24px rgba(47, 128, 237, 0.35);
}

.testimonials-video__title {
  margin: 0;
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 36px rgba(47, 128, 237, 0.22);
}

.testimonials-video__sub {
  margin: 0;
  font-size: clamp(0.88rem, 2.4vw, 0.98rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

.testimonials-video__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.testimonials-live {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
  flex: 0 0 auto;
}

.testimonials-live__dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 1);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(47, 128, 237, 0.85),
    0 0 52px rgba(47, 128, 237, 0.28);
}

.testimonials-live__ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(47, 128, 237, 0.75);
  animation: testimonials-live-ping 1.6s ease-out infinite;
  opacity: 0.9;
}

@keyframes testimonials-live-ping {
  0% {
    transform: scale(0.7);
    opacity: 0.75;
  }
  70%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.testimonials-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 128, 237, 0.35);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.testimonials-chip--live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-color: rgba(47, 128, 237, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px rgba(47, 128, 237, 0.12);
}

.testimonials-chip--dim {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
}


/* Rediffs (annuaire + popup) */
.section--rediffs {
  position: relative;
  overflow: hidden;
}

.section__head--rediffs {
  gap: 16px;
  margin-bottom: 22px;
  text-align: center;
  align-items: center;
}

.rediffs-title {
  margin: 0;
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: clamp(2rem, 5.6vw, 3rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 44px rgba(47, 128, 237, 0.18);
}

.rediffs-stats {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.rediffs-stat {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(47, 128, 237, 0.18);
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.08), rgba(0, 0, 0, 0));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  text-align: center;
  width: min(520px, 100%);
}

.rediffs-stat__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.82);
}

.rediffs-stat__value {
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: clamp(2.3rem, 6.4vw, 3.2rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 40px rgba(47, 128, 237, 0.22);
}

.rediffs-stat__sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
}

.rediffs-updated {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.rediffs-shell {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 4px;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(47, 128, 237, 0.08),
    0 0 60px rgba(47, 128, 237, 0.1);
}

.rediffs-shell__snake {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  box-sizing: border-box;
  padding: 4px;
  background:
    linear-gradient(rgba(37, 32, 32, 0.75), rgba(37, 32, 32, 0.75)),
    conic-gradient(
      from 0deg,
      transparent 0deg 320deg,
      rgba(47, 128, 237, 0.15) 330deg,
      rgba(126, 184, 255, 0.95) 342deg,
      rgba(47, 128, 237, 0.9) 350deg,
      rgba(126, 184, 255, 0.35) 358deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transform-origin: 50% 50%;
  animation: rediffs-snake-spin 3.6s linear infinite;
  filter:
    drop-shadow(0 0 18px rgba(47, 128, 237, 0.35))
    drop-shadow(0 0 48px rgba(47, 128, 237, 0.14));
  opacity: 0.9;
}

@keyframes rediffs-snake-spin {
  to {
    transform: rotate(360deg);
  }
}

.rediffs-toolbar {
  position: relative;
  z-index: 1;
  padding: 14px 14px 10px;
}

.rediffs-drop {
  position: relative;
  z-index: 1;
}

.rediffs-drop__summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px;
  border-radius: calc(var(--radius-xl) - 8px);
  margin: 0;
  background: linear-gradient(165deg, rgba(7, 10, 18, 0.92), rgba(10, 14, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  backdrop-filter: blur(10px) saturate(1.1);
}

.rediffs-drop__summary:hover .rediffs-drop__chev {
  filter: brightness(1.08);
}

.rediffs-drop__summary::-webkit-details-marker {
  display: none;
}

.rediffs-drop__label {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.92);
}

.rediffs-drop__meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.75);
}

.rediffs-drop__chev {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(126, 184, 255, 0.9);
  border: 1px solid rgba(126, 184, 255, 0.24);
  background: radial-gradient(circle at 35% 28%, rgba(47, 128, 237, 0.22), rgba(0, 0, 0, 0.25));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(47, 128, 237, 0.18);
  transition: transform 0.25s ease, filter 0.25s ease;
  line-height: 1;
  animation: rediffs-chev-nudge 1.4s ease-in-out infinite;
}

.rediffs-drop__chev svg {
  width: 20px;
  height: 20px;
  display: block;
}

.rediffs-drop[open] .rediffs-drop__chev {
  transform: rotate(180deg);
  animation: none;
}

@keyframes rediffs-chev-nudge {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 3px, 0);
  }
}

.rediffs-drop__panel {
  padding: 0 14px 16px;
}

.rediffs-drop__panel .rediffs-toolbar {
  padding: 14px 0 10px;
}

.rediffs-drop__panel .rediffs-list {
  padding: 0;
  max-height: min(58vh, 520px);
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
}

.rediffs-search {
  width: 100%;
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.95), rgba(6, 6, 8, 0.98));
  color: rgba(255, 255, 255, 0.9);
  outline: none;
}

.rediffs-search::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.rediffs-list {
  position: relative;
  z-index: 1;
  padding: 0 14px 16px;
  display: grid;
  gap: 12px;
}

.rediff-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(47, 128, 237, 0.14);
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.08), rgba(0, 0, 0, 0.25));
}

.rediff-item__title {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.rediff-item__date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.rediff-open {
  flex-shrink: 0;
  border: 1px solid rgba(126, 184, 255, 0.32);
  color: rgba(126, 184, 255, 0.95);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
}

.rediff-open:hover {
  border-color: rgba(126, 184, 255, 0.55);
  box-shadow: 0 0 24px rgba(47, 128, 237, 0.18);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal__dialog {
  position: relative;
  width: min(560px, calc(100% - 28px));
  border-radius: 22px;
  padding: 18px 16px 16px;
  background: linear-gradient(165deg, rgba(7, 10, 18, 0.92), rgba(10, 14, 24, 0.88));
  border: 1px solid rgba(47, 128, 237, 0.22);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.6);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.modal__title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.06em;
}

.modal__body {
  display: grid;
  gap: 12px;
}

.modal__field {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.modal__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(126, 184, 255, 0.82);
}

.modal__link {
  color: rgba(126, 184, 255, 0.98);
  word-break: break-word;
}

.modal__code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal__code {
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: anywhere;
}

.modal__copy {
  border: 1px solid rgba(126, 184, 255, 0.32);
  color: rgba(126, 184, 255, 0.95);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
}

.modal__hint {
  margin: 12px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .rediffs-shell__snake {
    animation: none;
  }

  .rediffs-drop__chev {
    animation: none;
  }

  .testimonials-live__ring {
    animation: none;
    opacity: 0.55;
    transform: none;
  }
}

/* Closing */
.footer__convert {
  margin: 16px 0 10px;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.video-duo--testimonials {
  width: 100%;
  max-width: 760px;
}

/* Témoignages — sous-titre visuel (ligne + points) */
.section__head--testimonials {
  gap: 16px;
  margin-bottom: 28px;
}

.testimonials-head-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.testimonials-head-accent__line {
  width: min(220px, 62vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47, 128, 237, 0.12) 18%,
    rgba(126, 184, 255, 0.55) 50%,
    rgba(47, 128, 237, 0.12) 82%,
    transparent 100%
  );
  box-shadow: 0 0 22px rgba(47, 128, 237, 0.35);
}

.testimonials-head-accent__dots {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testimonials-head-accent__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(126, 184, 255, 0.55);
  box-shadow: 0 0 14px rgba(47, 128, 237, 0.5);
  animation: testimonial-accent-pulse 2.4s ease-in-out infinite;
}

.testimonials-head-accent__dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.testimonials-head-accent__dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes testimonial-accent-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.bio-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.88), rgba(3, 4, 10, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bio-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(900px 320px at 30% 0%, rgba(47, 128, 237, 0.14), transparent 68%);
  opacity: 0.85;
  pointer-events: none;
}

.bio-card > * {
  position: relative;
}

.bio-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bio-card__label {
  font-size: 12px;
  color: rgba(47, 128, 237, 0.9);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bio-card__divider {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(47, 128, 237, 0.35), rgba(255, 255, 255, 0.06));
}

.bio-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.06), rgba(0, 0, 0, 0));
  border: 1px solid rgba(47, 128, 237, 0.14);
  margin-bottom: 14px;
}

.bio-profile__photo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.06), 0 18px 50px rgba(0, 0, 0, 0.45);
  background: radial-gradient(circle at 30% 30%, rgba(47, 128, 237, 0.22), rgba(0, 0, 0, 0.2));
  flex: 0 0 auto;
}

.bio-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.bio-profile__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.bio-profile__name {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.bio-profile__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-profile__badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bio-profile__badges::-webkit-scrollbar {
  display: none;
}

.vbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vbadge__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(47, 128, 237, 0.95);
  filter: drop-shadow(0 0 12px rgba(47, 128, 237, 0.7));
}

.vbadge__icon svg {
  width: 18px;
  height: 18px;
}

.vbadge__icon svg path {
  vector-effect: non-scaling-stroke;
}

.bio-text {
  padding: 6px 4px 2px;
}

.bio-text p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.bio-text p:last-child {
  margin-bottom: 0;
}

.carousel {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 18px 14px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.carousel--flat {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.carousel__topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.carousel__label {
  font-size: 12px;
  color: rgba(47, 128, 237, 0.9);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.carousel__divider {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(47, 128, 237, 0.35), rgba(255, 255, 255, 0.06));
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 128, 237, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.carousel__track {
  display: flex;
  gap: 12px;
  padding: 12px;
  will-change: transform;
}

.media-card:not(.media-card--payout) {
  margin: 0;
  flex: 0 0 68%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.media-card:not(.media-card--payout) img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: radial-gradient(600px 300px at 30% 20%, rgba(47, 128, 237, 0.18), transparent 70%),
    rgba(0, 0, 0, 0.55);
}

.media-card figcaption {
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

.carousel__hint {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.hint-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  background: rgba(47, 128, 237, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.hint-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.9);
  box-shadow: 0 0 18px rgba(47, 128, 237, 0.55);
}

/* Testimonials */
.grid {
  display: grid;
  gap: 14px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

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

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(47, 128, 237, 0.25), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(47, 128, 237, 0.22);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card__name {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.card__meta {
  font-size: 12px;
  color: var(--muted);
}

.audio {
  width: 100%;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4));
}

/* Vocaux — coquille + bordure « serpent » bleue (marque) */
.vocals-board-shell {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(47, 128, 237, 0.08),
    0 0 60px rgba(47, 128, 237, 0.1);
  /* Style proche du bloc “ui-borderanim-rotate” */
  --borderanim-radius: 25px;
  --borderanim-base: rgba(37, 32, 32, 0.75);
  --borderanim-glow: rgba(47, 128, 237, 0.85);
}

.vocals-board-shell__snake {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  border-radius: inherit;
  box-sizing: border-box;
  /* Anneau fin : seul le pourtour affiche le dégradé (pas de disque plein) */
  padding: 2px;
  background:
    /* Base border sombre */
    linear-gradient(var(--borderanim-base), var(--borderanim-base)),
    /* Segment lumineux qui tourne */
    conic-gradient(
      from 0deg,
      transparent 0deg 320deg,
      rgba(47, 128, 237, 0.15) 330deg,
      rgba(126, 184, 255, 0.95) 342deg,
      rgba(47, 128, 237, 0.9) 350deg,
      rgba(126, 184, 255, 0.35) 358deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transform-origin: 50% 50%;
  animation: vocals-snake-spin 3.6s linear infinite;
  filter: drop-shadow(0 0 18px rgba(47, 128, 237, 0.22));
  opacity: 0.9;
}

@keyframes vocals-snake-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vocals-board-shell__snake {
    animation: none;
    opacity: 0.85;
    transform: rotate(42deg);
  }

  .section--testimonials__mesh {
    animation: none;
    opacity: 0.7;
  }

  .vocals-board-shell .vocals-row {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vocals-player__play::before {
    animation: none;
    display: none;
  }

  .vocals-row__art-glow {
    animation: none;
    opacity: 0.72;
    transform: none;
  }

  .vocals-row__wave span {
    animation: none;
    transform: none;
    opacity: 0.8;
  }
}

/* Vocaux — bandeau type messagerie (accents bleu RM Army) */
.vocals-board {
  --vocals-accent: var(--blue);
  --vocals-accent-dim: rgba(126, 184, 255, 0.72);
  --vocals-accent-muted: rgba(47, 128, 237, 0.5);
  --vocals-glow: rgba(47, 128, 237, 0.35);
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-xl) - 2px);
  padding: clamp(22px, 4.2vw, 38px);
  background: linear-gradient(
    165deg,
    rgba(7, 10, 18, 0.58) 0%,
    rgba(10, 14, 24, 0.62) 42%,
    rgba(5, 7, 12, 0.6) 100%
  );
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(47, 128, 237, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(47, 128, 237, 0.07);
}

/* Mobile-only layout (inspiré MCY) */
.vocals-mcy {
  display: block;
}

/* Base (mobile + desktop) : le titre doit rester identique partout */
.vocals-mcy__title {
  margin: 0 0 18px;
  font-family: "Bebas Neue", Impact, system-ui, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: left;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(213, 235, 255, 0.98) 32%,
    rgba(126, 184, 255, 0.95) 68%,
    rgba(47, 128, 237, 0.92) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(47, 128, 237, 0.18);
}

.vocals-mcy__effect {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(420px, 92%);
  aspect-ratio: 16 / 9;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 0 24px rgba(47, 128, 237, 0.22));
}

.vocals-mcy__effect::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 128, 237, 0.12), transparent 55%),
    conic-gradient(
      from 0deg,
      rgba(126, 184, 255, 0) 0deg 34deg,
      rgba(126, 184, 255, 0.18) 54deg,
      rgba(47, 128, 237, 0.55) 70deg,
      rgba(126, 184, 255, 0.08) 92deg,
      rgba(126, 184, 255, 0) 120deg 360deg
    );
  mask-image: radial-gradient(circle at 50% 50%, #000 0 56%, transparent 72%);
  animation: vocals-mcy-orbit 8.5s linear infinite;
}

.vocals-mcy__effect::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 16px);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 50%, transparent 70%);
  opacity: 0.65;
}

@keyframes vocals-mcy-orbit {
  to {
    transform: rotate(360deg);
  }
}

.vocals-mcy__item {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
}

.vocals-mcy__item--last {
  margin-bottom: 0;
}

.vocals-mcy__profile {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.vocals-mcy__item--right .vocals-mcy__profile {
  justify-self: end;
}

.vocals-mcy__item--left .vocals-mcy__profile {
  justify-self: start;
}

.vocals-mcy__player {
  width: 100%;
  max-width: min(420px, 100%);
  justify-self: center;
}

/* Desktop / tablette : alternance gauche-droite (1 droite, 1 gauche, 1 droite) */
@media (min-width: 740px) {
  .vocals-mcy {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding: 10px 10px 6px;
    min-height: auto;
  }

  .vocals-mcy__title {
    margin-bottom: 22px;
    max-width: 26ch;
  }

  .vocals-mcy__effect {
    top: 52%;
    width: min(520px, 70%);
    opacity: 0.65;
  }

  .vocals-mcy__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 0 0 26px;
  }

  .vocals-mcy__item--right {
    flex-direction: row-reverse;
    align-self: flex-end;
  }

  .vocals-mcy__item--left {
    flex-direction: row;
    align-self: flex-start;
  }

  .vocals-mcy__player {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .vocals-mcy {
    position: relative;
    padding: 6px 4px 4px;
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vocals-mcy__effect::before {
    animation: none;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .vocals-board {
    background: linear-gradient(
      165deg,
      rgba(7, 10, 18, 0.82) 0%,
      rgba(10, 14, 24, 0.86) 42%,
      rgba(5, 7, 12, 0.84) 100%
    );
  }
}

.vocals-feed {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 4vw, 34px);
  margin-top: clamp(12px, 2.5vw, 20px);
}

.vocals-board-shell .vocals-row {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vocals-board-shell.is-visible .vocals-row {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.vocals-board-shell.is-visible .vocals-row:nth-child(1) {
  transition-delay: 0.06s;
}

.vocals-board-shell.is-visible .vocals-row:nth-child(2) {
  transition-delay: 0.2s;
}

.vocals-board-shell.is-visible .vocals-row:nth-child(3) {
  transition-delay: 0.34s;
}

.vocals-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: min(640px, 100%);
  padding: clamp(14px, 3vw, 18px) clamp(16px, 3.5vw, 22px);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.1) 0%,
    rgba(8, 11, 20, 0.72) 42%,
    rgba(4, 6, 12, 0.82) 100%
  );
  border: 1px solid rgba(47, 128, 237, 0.18);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vocals-row:hover {
  border-color: rgba(47, 128, 237, 0.32);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(47, 128, 237, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vocals-row--left {
  align-self: flex-start;
}

.vocals-row--right {
  align-self: flex-end;
}

.vocals-row__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vw, 16px);
  width: 100%;
  min-width: 0;
}

.vocals-row__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 18px);
  min-width: 0;
}

.vocals-row--left .vocals-row__header {
  flex-direction: row;
}

.vocals-row--right .vocals-row__header {
  flex-direction: row-reverse;
}

.vocals-row__art {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  padding: 14px 16px 12px;
  background: linear-gradient(
    145deg,
    rgba(6, 8, 14, 0.94) 0%,
    rgba(10, 14, 24, 0.78) 48%,
    rgba(5, 7, 14, 0.88) 100%
  );
  border: 1px solid rgba(47, 128, 237, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.vocals-row__art-glow {
  position: absolute;
  inset: -45% -25% auto;
  height: 130%;
  background: radial-gradient(
    ellipse 75% 55% at 50% 0%,
    rgba(47, 128, 237, 0.28),
    transparent 68%
  );
  pointer-events: none;
  opacity: 0.88;
  animation: vocals-art-glow 9s ease-in-out infinite alternate;
}

@keyframes vocals-art-glow {
  0% {
    opacity: 0.65;
    transform: translate3d(-4%, 0, 0);
  }

  100% {
    opacity: 0.98;
    transform: translate3d(4%, 3%, 0);
  }
}

.vocals-row__art-grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(126, 184, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 184, 255, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, transparent 88%);
}

.vocals-row__wave {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-bottom: 10px;
  max-width: 100%;
}

.vocals-row__wave span {
  flex: 1;
  min-width: 0;
  max-width: 6px;
  border-radius: 2px;
  align-self: flex-end;
  transform-origin: bottom center;
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.12), rgba(126, 184, 255, 0.88));
  box-shadow: 0 0 12px rgba(47, 128, 237, 0.22);
  animation: vocals-row-wave 1.05s ease-in-out infinite;
}

.vocals-row__wave span:nth-child(2) {
  animation-delay: 0.08s;
}
.vocals-row__wave span:nth-child(3) {
  animation-delay: 0.16s;
}
.vocals-row__wave span:nth-child(4) {
  animation-delay: 0.04s;
}
.vocals-row__wave span:nth-child(5) {
  animation-delay: 0.12s;
}
.vocals-row__wave span:nth-child(6) {
  animation-delay: 0.2s;
}
.vocals-row__wave span:nth-child(7) {
  animation-delay: 0.06s;
}
.vocals-row__wave span:nth-child(8) {
  animation-delay: 0.14s;
}
.vocals-row__wave span:nth-child(9) {
  animation-delay: 0.1s;
}
.vocals-row__wave span:nth-child(10) {
  animation-delay: 0.18s;
}
.vocals-row__wave span:nth-child(11) {
  animation-delay: 0.02s;
}
.vocals-row__wave span:nth-child(12) {
  animation-delay: 0.15s;
}
.vocals-row__wave span:nth-child(13) {
  animation-delay: 0.09s;
}
.vocals-row__wave span:nth-child(14) {
  animation-delay: 0.22s;
}
.vocals-row__wave span:nth-child(15) {
  animation-delay: 0.11s;
}
.vocals-row__wave span:nth-child(16) {
  animation-delay: 0.05s;
}
.vocals-row__wave span:nth-child(17) {
  animation-delay: 0.19s;
}
.vocals-row__wave span:nth-child(18) {
  animation-delay: 0.13s;
}

@keyframes vocals-row-wave {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.vocals-row__hook {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: clamp(0.78rem, 2.2vw, 0.9rem);
  line-height: 1.45;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.66);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vocals-row__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.vocals-row__pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  color: rgba(126, 184, 255, 0.95);
  background: rgba(0, 0, 0, 0.38);
}

.vocals-row__pill--dim {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
}

.vocals-row__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}

.vocals-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--vocals-accent);
  background: radial-gradient(circle at 32% 28%, rgba(47, 128, 237, 0.35), rgba(10, 12, 18, 0.94));
  border: 2px solid rgba(126, 184, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 26px var(--vocals-glow);
}

.vocals-avatar svg {
  width: 28px;
  height: 28px;
}

.vocals-avatar__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  /* Centrage vertical du sujet (les 20% coupaient trop haut → vide en bas du cercle) */
  object-position: 50% 48%;
  transform: scale(1.14);
  transform-origin: 50% 46%;
  display: block;
}

.vocals-avatar--icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.vocals-name {
  display: block;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 128, 237, 0.42);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  max-width: 100%;
  width: max-content;
  box-sizing: border-box;
}

.vocals-player {
  position: relative;
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.95), rgba(6, 6, 8, 0.98));
}

.vocals-player__audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vocals-player__play {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--vocals-accent-muted);
  background: rgba(0, 0, 0, 0.35);
  color: var(--vocals-accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.vocals-player__play::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(47, 128, 237, 0.4);
  opacity: 0;
  animation: vocal-play-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes vocal-play-pulse {
  0% {
    transform: scale(0.88);
    opacity: 0.55;
  }

  70%,
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.vocals-player__play:hover {
  border-color: rgba(126, 184, 255, 0.85);
  box-shadow: 0 0 22px var(--vocals-glow);
}

.vocals-player__play:active {
  transform: scale(0.96);
}

.vocals-player__play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.vocals-player__play.is-playing svg {
  margin-left: 0;
}

.vocals-player__play .icon-pause {
  display: none;
}

.vocals-player__play.is-playing .icon-play {
  display: none;
}

.vocals-player__play.is-playing .icon-pause {
  display: block;
}

.vocals-player__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vocals-player__times {
  display: flex;
  align-items: center;
  gap: 10px;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  font-weight: 700;
  color: var(--vocals-accent-dim);
}

.vocals-player__bar {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
}

.vocals-player__bar > span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(47, 128, 237, 0.25), rgba(126, 184, 255, 0.92));
  box-shadow: 0 0 12px var(--vocals-glow);
  pointer-events: none;
}

.vocals-player__side {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vocals-player__speaker {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(47, 128, 237, 0.45);
  display: grid;
  place-items: center;
  color: var(--vocals-accent);
  background: rgba(0, 0, 0, 0.35);
}

.vocals-player__speaker svg {
  width: 16px;
  height: 16px;
}

.vocals-player__viz {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  padding-bottom: 2px;
}

.vocals-player__viz span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.25), rgba(126, 184, 255, 0.85));
  animation: vocals-viz 1.1s ease-in-out infinite;
}

.vocals-player__viz span:nth-child(2) {
  animation-delay: 0.12s;
}
.vocals-player__viz span:nth-child(3) {
  animation-delay: 0.24s;
}
.vocals-player__viz span:nth-child(4) {
  animation-delay: 0.08s;
}
.vocals-player__viz span:nth-child(5) {
  animation-delay: 0.2s;
}

.vocals-player.is-muted .vocals-player__viz span {
  animation: none;
  opacity: 0.35;
  height: 6px !important;
}

.vocals-player--empty .vocals-player__play {
  opacity: 0.4;
  pointer-events: none;
}

@keyframes vocals-viz {
  0%,
  100% {
    height: 6px;
    opacity: 0.55;
  }
  50% {
    height: 18px;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vocals-player__viz span {
    animation: none;
    height: 10px;
    opacity: 0.65;
  }
}

/* Content */
.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.stat-card,
.list-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.09), rgba(0, 0, 0, 0));
  border: 1px solid rgba(47, 128, 237, 0.16);
  padding: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

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

.stat-card__label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(47, 128, 237, 0.92);
}

.stat-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.95);
  box-shadow: 0 0 20px rgba(47, 128, 237, 0.55);
}

.stat-card__value {
  display: grid;
  gap: 6px;
}

.stat-card__prefix {
  color: rgba(255, 255, 255, 0.8);
}

.stat-card__big {
  font-family: "Bebas Neue", Poppins, system-ui, sans-serif;
  font-size: 64px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 26px rgba(47, 128, 237, 0.35);
}

.stat-card__suffix {
  color: rgba(255, 255, 255, 0.74);
}

.stat-card__footer {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.list-card__head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.list-card__title {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.list-card__sub {
  color: var(--muted);
  font-size: 13px;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link-item:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 128, 237, 0.22);
  background: rgba(47, 128, 237, 0.06);
}

.link-item__left {
  display: grid;
  gap: 2px;
}

.link-item__title {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.link-item__meta {
  font-size: 12px;
  color: var(--muted);
}

.link-item__icon {
  width: 18px;
  height: 18px;
  color: rgba(47, 128, 237, 0.9);
}

/* Closing */
.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.10), rgba(0, 0, 0, 0));
  border: 1px solid rgba(47, 128, 237, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.closing__title {
  margin: 0 0 6px;
  font-family: "Bebas Neue", Poppins, system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 34px;
}

.closing__copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  padding-top: 18px;
}

.footer__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.22), transparent);
  margin-bottom: 12px;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  font-size: 13px;
}

/* Retour en haut — rond, bleu, flèche animée (lien footer retiré) */
.scroll-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 55;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1.5px solid rgba(126, 184, 255, 0.42);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(160, 205, 255, 0.98);
  background: radial-gradient(circle at 32% 28%, rgba(47, 128, 237, 0.22), rgba(7, 9, 16, 0.94) 55%, rgba(4, 6, 12, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 12px 36px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(47, 128, 237, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.92);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.scroll-top__glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.28) 0%, transparent 68%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.scroll-top__chevron {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top.is-visible .scroll-top__chevron {
  animation: scroll-top-arrow-float 1.75s ease-in-out infinite;
}

.scroll-top:hover {
  color: #fff;
  border-color: rgba(160, 210, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 14px 42px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(47, 128, 237, 0.42);
}

.scroll-top:hover .scroll-top__glow {
  opacity: 0.75;
}

.scroll-top:active {
  transform: translate3d(0, 2px, 0) scale(0.96);
}

.scroll-top:focus-visible {
  outline: 2px solid rgba(47, 128, 237, 0.85);
  outline-offset: 4px;
}

.scroll-top__icon {
  width: 24px;
  height: 24px;
  display: block;
}

@keyframes scroll-top-arrow-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

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

  .scroll-top.is-visible {
    transform: none;
  }

  .scroll-top.is-visible .scroll-top__chevron {
    animation: none;
  }

  .scroll-top:active {
    transform: none;
  }

  .testimonials-head-accent__dots span {
    animation: none;
    opacity: 0.75;
  }
}

@media (max-width: 560px) {
  .vocals-row__header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .vocals-row--avatar-end .vocals-row__profile {
    align-self: flex-end;
  }

  .vocals-row--avatar-start .vocals-row__profile {
    align-self: flex-start;
  }

  .vocals-row__wave {
    height: 32px;
    margin-bottom: 8px;
  }
}

.muted {
  color: var(--muted);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .vocals-feed {
    padding-inline: clamp(2px, 1.5vw, 8px);
  }

  .vocals-row,
  .vocals-row--left,
  .vocals-row--right {
    align-self: stretch;
    max-width: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* Bloc avatar + prénom : même axe vertical, léger retrait du bord */
  .vocals-row--avatar-end .vocals-row__profile {
    align-self: flex-end;
    margin-inline-end: clamp(2px, 1.2vw, 8px);
  }

  .vocals-row--avatar-start .vocals-row__profile {
    align-self: flex-start;
    margin-inline-start: clamp(2px, 1.2vw, 8px);
  }

  .vocals-row__profile {
    gap: 7px;
  }

  .vocals-player {
    width: 100%;
    align-self: stretch;
  }

  .vocals-player__side {
    display: none;
  }

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

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

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

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

  .section--bio .about__story {
    padding-top: 12px;
  }

  .about__proof {
    padding: 16px;
  }

  .media-card:not(.media-card--payout) {
    flex-basis: 86%;
  }

  .closing {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    background: radial-gradient(900px 540px at 50% -10%, rgba(47, 128, 237, 0.14), transparent 60%),
      linear-gradient(180deg, #05070c 0%, #03040a 70%, #020309 100%);
  }

  .bg__cage {
    opacity: 0.18;
    transform: perspective(760px) rotateX(68deg) translateY(-240px) scale(1.35);
    mask-image: none;
  }

  .bg__grid {
    opacity: 0.16;
    background-size: 92px 92px;
    mask-image: none;
  }

  .bg__orb {
    opacity: 0.22;
    filter: blur(42px);
  }

  .bg__orb--1 {
    left: -240px;
    top: 120px;
    width: 420px;
    height: 420px;
  }

  .bg__orb--2 {
    right: -260px;
    top: -40px;
    width: 420px;
    height: 420px;
  }

  .bg__noise {
    opacity: 0.05;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero {
    padding: 30px 0 14px;
  }

  .hero__inner {
    gap: 14px;
  }

  .hero-meta {
    font-size: 11px;
    letter-spacing: 0.16em;
    gap: 10px;
  }

  .hero-meta__item {
    gap: 8px;
  }

  .hero__title {
    letter-spacing: 0.02em;
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero__title--stack {
    gap: 6px;
  }

  .hero__title-top {
    letter-spacing: 0.18em;
  }

  .hero__subtitle {
    font-size: clamp(7px, 2.95vw, 11px);
    letter-spacing: clamp(0.06em, 0.2vw + 0.05em, 0.16em);
    max-width: min(100%, calc(100vw - 32px));
    white-space: nowrap;
  }

  .video-block {
    margin-top: 10px;
    gap: 18px;
  }

  .video-frame__shell {
    border-radius: 16px;
  }

  .video-frame__inner {
    border-radius: 13px;
  }

  .video-frame__player {
    border-radius: inherit;
  }

  .video-phone__shell {
    border-radius: 18px;
    max-width: min(200px, 46vw);
  }

  .video-phone__viewport {
    border-radius: 15px;
  }

  .video-phone-native {
    border-radius: 0;
  }

  .testimonials-video {
    margin-top: 32px;
    padding-top: 28px;
    gap: 20px;
  }

  .bio-profile {
    gap: 12px;
    padding: 12px;
  }

  .bio-profile__photo {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .about {
    padding: 16px;
  }

  .about__intro {
    gap: 12px;
    padding-bottom: 16px;
  }

  .about__intro-hero {
    gap: 12px;
  }

  .about__photo {
    width: 68px;
    height: 68px;
  }

  .about__story,
  .about__proof {
    padding-left: 0;
    padding-right: 0;
  }

  .about__proof {
    padding: 14px;
    border-radius: var(--radius-md);
  }

  .about__tag {
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 6px 10px 6px 7px;
  }

  .about__social {
    padding: 7px 11px 7px 8px;
    gap: 8px;
  }

  .about__social-icon {
    width: 30px;
    height: 30px;
  }

  .about__social-icon svg {
    width: 16px;
    height: 16px;
  }

  .about__story {
    max-width: none;
    gap: 16px;
    padding-top: 16px;
  }

  .about__story-body {
    padding-left: 14px;
    gap: 13px;
  }

  .proof-panel
  .proof-panel__head {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .proof-panel__hint,
  .proof-panel__hint--muted {
    font-size: 11px;
    max-width: none;
  }

  .proof-panel__title {
    font-size: clamp(24px, 8vw, 30px);
  }

  .payout-head {
    gap: 10px;
  }

  .payout-head__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .payout-head__icon svg {
    width: 20px;
    height: 20px;
  }

  .payout-head__dot {
    width: 9px;
    height: 9px;
  }

  .payout-rail__edge {
    top: 12px;
    bottom: 12px;
    width: clamp(28px, 14%, 48px);
  }

  .carousel--payouts {
    padding: 3px 0 2px;
  }

  .carousel__viewport--payouts {
    margin-inline: 0;
    min-height: 0;
  }

  .carousel__viewport--payouts .carousel__track {
    gap: 6px;
    padding: 10px 10px;
  }

  .payout-card__media {
    --payout-slot-w: clamp(188px, 72vw, 268px);
    border-radius: 10px;
  }

  .media-card--payout img {
    border-radius: 0;
  }

  .proof-stack__item {
    top: max(3.5rem, 10vh);
    top: max(3.5rem, 10dvh);
    margin-bottom: min(5.5vh, 46px);
    margin-bottom: min(5.5dvh, 46px);
  }

  .proof-stack__item--last {
    margin-bottom: min(2vh, 18px);
    margin-bottom: min(2dvh, 18px);
  }

  .proof-card__shell {
    padding: 10px 10px 9px;
    border-radius: 20px;
  }

  .button {
    width: 100%;
    justify-content: center;
    letter-spacing: 0.14rem;
    padding: 1rem 1.2rem;
  }

  .button.button--cta {
    width: auto;
    max-width: min(100%, 19.5rem);
    padding: 0.75rem 1.35rem;
    font-size: 0.82rem;
    letter-spacing: 0.1rem;
  }

  .hero-trust {
    gap: 9px;
    padding-top: 0;
  }

  .hero-trust__exp {
    font-size: 13px;
  }

  .hero-trust__meta {
    font-size: 11px;
    gap: 8px;
  }

  .hero-trust__pill {
    padding: 5px 10px 5px 7px;
    gap: 7px;
  }

  .hero-trust__verified {
    width: 15px;
    height: 15px;
    filter: drop-shadow(0 0 10px rgba(47, 128, 237, 0.55));
  }

  .section {
    padding: 46px 0;
  }

  .section__head {
    margin-bottom: 16px;
  }

  .section__head--bio {
    margin-bottom: 10px;
  }

  .bio-card {
    padding: 14px;
  }

  .bio-card__head {
    margin-bottom: 10px;
  }

  .bio-profile__badges {
    gap: 10px 12px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .vbadge {
    font-size: 11px;
    letter-spacing: 0.10em;
  }

  .carousel__viewport {
    border-radius: 16px;
  }

  .media-card:not(.media-card--payout) {
    flex-basis: 86%;
  }

  .media-card figcaption {
    font-size: 11px;
  }

  .top-marquee__text {
    font-size: 16px;
  }

  .stat-card__big {
    font-size: 56px;
  }
}

