/*
 * Octopia — landing alternative « v2 » (aperçu, route /v2).
 * Autonome : elle ne réutilise que les tokens d'octopia.css et n'écrase aucune
 * classe de landing.css, pour que la landing en production reste intacte.
 * Le parti pris : tout se révèle au défilement (comme b2info.fr), sans
 * dépendance externe — un IntersectionObserver et des transitions CSS.
 */

.v2 { background: var(--surface); color: var(--ink-900); overflow-x: hidden; }
.v2-shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.v2 h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -.03em; margin: 0 0 14px; }
.v2 h3 { letter-spacing: -.01em; }
.v2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 16px; padding: 5px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: var(--blue-100); color: var(--blue-700);
}
.v2-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.v2-sub { color: var(--ink-500); font-size: 17px; max-width: 60ch; margin: 0 0 40px; }
.v2-section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }

/* ---------------------------------------------- révélation au défilement */
/* Rien n'est caché tant que le script n'a pas pris la main : sans JS, la page
   reste entièrement lisible (la classe .v2-js n'est posée que par le script). */
.v2-js [data-an] {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1), filter .8s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.v2-js [data-an="up"]    { transform: translateY(42px); }
.v2-js [data-an="down"]  { transform: translateY(-32px); }
.v2-js [data-an="left"]  { transform: translateX(-48px); }
.v2-js [data-an="right"] { transform: translateX(48px); }
.v2-js [data-an="zoom"]  { transform: scale(.9); }
.v2-js [data-an="blur"]  { filter: blur(12px); transform: translateY(20px); }
.v2-js [data-an].is-in { opacity: 1; transform: none; filter: none; }

/* --------------------------------------------------- barre de progression */
.v2-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 60;
  height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue-500), var(--amber-600));
}

/* ------------------------------------------------------------------- nav */
.v2-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.v2-nav-row { display: flex; align-items: center; gap: 24px; height: 74px; min-width: 0; transition: height .35s ease; }
.v2-nav .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 700; font-size: 17px; }
.v2-logo { display: block; }
.v2-nav .v2-logo-dark, .v2-nav.is-stuck .v2-logo-light { display: none; }
.v2-nav.is-stuck .v2-logo-dark { display: block; }
.v2-nav-links { display: flex; gap: 24px; margin-left: 12px; }
.v2-nav-links a { position: relative; color: rgba(255, 255, 255, .72); font-size: 14px; font-weight: 500; text-decoration: none; padding: 4px 0; }
.v2-nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--blue-500); transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .3s ease;
}
.v2-nav-links a:hover { color: #fff; }
.v2-nav-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.v2-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.v2-nav-actions .btn { white-space: nowrap; }

/* Bouton burger : invisible tant que la nav de bureau tient, il prend le relais
   exactement là où les liens disparaissent. Les trois barres se croisent en
   croix à l'ouverture. */
.v2-burger {
  display: none; position: relative; width: 40px; height: 36px; padding: 0;
  border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08); cursor: pointer;
}
.v2-burger span {
  position: absolute; left: 11px; width: 18px; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .3s ease, opacity .2s ease;
}
.v2-burger span:nth-child(1) { top: 12px; }
.v2-burger span:nth-child(2) { top: 17px; }
.v2-burger span:nth-child(3) { top: 22px; }
.v2-nav.is-stuck .v2-burger { border-color: var(--line); background: var(--surface); }
.v2-nav.is-stuck .v2-burger span { background: var(--ink-700); }
.v2-nav.is-open .v2-burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.v2-nav.is-open .v2-burger span:nth-child(2) { opacity: 0; }
.v2-nav.is-open .v2-burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Le panneau déplié. Fermé, il n'est pas seulement invisible : `visibility` le
   sort aussi de l'ordre de tabulation. */
.v2-menu {
  overflow: hidden; max-height: 0; visibility: hidden;
  background: var(--surface); border-bottom: 1px solid var(--line);
  transition: max-height .35s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .35s;
}
.v2-nav.is-open .v2-menu { max-height: 70vh; visibility: visible; transition-delay: 0s, 0s; }
.v2-menu .v2-shell { display: grid; padding-top: 6px; padding-bottom: 10px; }
.v2-menu a {
  padding: 15px 2px; color: var(--ink-700); font-size: 16px; font-weight: 550;
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.v2-menu a:last-child { border-bottom: 0; }
.v2-menu-lang { padding: 14px 2px 4px; }
.v2-menu .lang-switch button { padding: 7px 14px; font-size: 13px; }
.v2-menu a:hover, .v2-menu a:focus-visible { color: var(--blue-700); }
.v2-nav .lang-switch button,
.v2-nav .lang-switch a {
  background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .78);
}
.v2-nav .lang-switch button:hover,
.v2-nav .lang-switch a:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.v2-nav .lang-switch button.is-active,
.v2-nav .lang-switch a.is-active {
  background: rgba(255, 255, 255, .92); border-color: transparent;
  color: var(--blue-700); font-weight: 600;
}
.v2-nav .btn-ghost { color: rgba(255, 255, 255, .8); }
.v2-nav .btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.v2-badge-preview {
  padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--amber-100); color: var(--amber-600);
}

.v2-nav.is-stuck {
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(16, 22, 20, .06);
}
.v2-nav.is-stuck .v2-nav-row { height: 62px; }
.v2-nav.is-stuck .brand { color: var(--ink-900); }
.v2-nav.is-stuck .v2-nav-links a { color: var(--ink-500); }
.v2-nav.is-stuck .v2-nav-links a:hover { color: var(--ink-900); }
.v2-nav.is-stuck .lang-switch button,
.v2-nav.is-stuck .lang-switch a {
  background: var(--surface); border-color: var(--line); color: var(--ink-500);
}
.v2-nav.is-stuck .lang-switch button:hover,
.v2-nav.is-stuck .lang-switch a:hover { background: var(--surface-sunken); color: var(--ink-900); }
.v2-nav.is-stuck .lang-switch button.is-active,
.v2-nav.is-stuck .lang-switch a.is-active {
  background: var(--blue-050); border-color: var(--blue-100); color: var(--blue-700);
}
.v2-nav.is-stuck .btn-ghost { color: var(--ink-500); }
.v2-nav.is-stuck .btn-ghost:hover { background: var(--surface-sunken); color: var(--ink-700); }

/* ------------------------------------------------------------------ hero */
.v2-hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: radial-gradient(120% 100% at 50% 0%, #123f6e 0%, #0a2444 45%, #061527 100%);
  color: #fff;
}
.v2-aurora { position: absolute; inset: 0; pointer-events: none; }
.v2-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
  animation: v2-drift 18s ease-in-out infinite alternate;
}
.v2-blob-1 { width: 520px; height: 520px; left: -140px; top: -120px; background: #2c78c2; }
.v2-blob-2 { width: 420px; height: 420px; right: -100px; top: 60px; background: #1c5fa1; animation-delay: -6s; }
.v2-blob-3 { width: 380px; height: 380px; left: 45%; bottom: -160px; background: #b98314; opacity: .3; animation-delay: -12s; }
@keyframes v2-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, -40px, 0) scale(1.15); }
}
.v2-grid-lines {
  position: absolute; inset: 0; opacity: .25;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(90% 70% at 50% 40%, #000 0%, transparent 100%);
}
.v2-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px; align-items: center;
}
.v2-hero .v2-eyebrow { background: rgba(255, 255, 255, .12); color: #dbeafe; }
.v2-hero h1 {
  margin: 0 0 20px; font-size: clamp(38px, 5.6vw, 68px); line-height: 1.02;
  letter-spacing: -.035em; font-weight: 700; max-width: 15ch;
}
/* Le titre arrive mot à mot, comme un texte qui se pose. */
.v2-word { display: inline-block; }
.v2-js .v2-word { opacity: 0; transform: translateY(28px) rotate(2deg); transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1); transition-delay: var(--d, 0ms); }
.v2-js .v2-word.is-in { opacity: 1; transform: none; }
.v2-hero-lede { color: rgba(255, 255, 255, .78); font-size: 18px; max-width: 50ch; margin: 0 0 32px; }
.v2-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
/* `.v2-btn-glow` vit dans octopia.css : l'app porte le même bouton. */
.v2-hero-note { margin: 22px 0 0; color: rgba(255, 255, 255, .55); font-size: 13.5px; }

/* La carte d'équipe flotte et suit légèrement le défilement. */
.v2-cycler {
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px; padding: 26px 26px 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  animation: v2-float 7s ease-in-out infinite alternate;
}
@keyframes v2-float { from { transform: translateY(-8px); } to { transform: translateY(10px); } }
.v2-cycler-title {
  margin: 0 0 14px; text-align: center; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .6);
}
.v2-cycler-stage { position: relative; height: 236px; }
.v2-cycler-card {
  position: absolute; inset: 0; display: grid; justify-items: center; align-content: center;
  gap: 4px; text-align: center; opacity: 0; transform: translateY(26px) scale(.94);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.v2-cycler-card.is-current { opacity: 1; transform: none; }
.v2-cycler-card.is-leaving { opacity: 0; transform: translateY(-26px) scale(1.04); }
.v2-cycler-card img {
  width: 104px; height: 104px; border-radius: 50%; margin-bottom: 10px;
  border: 3px solid var(--accent, var(--blue-500));
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent, var(--blue-500)) 20%, transparent);
}
.v2-cycler-name { font-weight: 700; font-size: 20px; color: #fff; }
.v2-cycler-role { font-size: 14px; color: rgba(255, 255, 255, .72); }
.v2-cycler-pole {
  margin-top: 6px; font-size: 11.5px; font-weight: 700; padding: 3px 11px; border-radius: 999px;
  color: #fff; background: color-mix(in srgb, var(--accent, var(--blue-500)) 45%, transparent);
}
.v2-cycler-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 5px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .14);
}
.v2-cycler-strip button {
  padding: 0; border: 0; background: none; cursor: pointer; line-height: 0;
  border-radius: 50%; opacity: .4; transition: opacity .2s ease, transform .2s ease;
}
.v2-cycler-strip button img { width: 22px; height: 22px; border-radius: 50%; display: block; }
.v2-cycler-strip button:hover { opacity: 1; }
.v2-cycler-strip button.is-current { opacity: 1; transform: scale(1.3); box-shadow: 0 0 0 2px var(--accent, var(--blue-500)); }

/* ------------------------------------------------------------- sources */
.v2-flow { background: var(--surface-sunken); border-bottom: 1px solid var(--line); }
.v2-flow-rail {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  margin-top: 12px;
}
.v2-flow-in { display: grid; gap: 14px; }
.v2-flow-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.v2-flow-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.v2-flow-card img { height: 28px; width: auto; }
.v2-flow-card span { font-size: 13.5px; color: var(--ink-500); }
.v2-flow-pipe { position: relative; width: 120px; height: 3px; background: var(--line-strong); border-radius: 2px; overflow: hidden; }
.v2-flow-pipe::after {
  content: ""; position: absolute; inset: 0; width: 40%;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
  animation: v2-pipe 2.2s linear infinite;
}
@keyframes v2-pipe { from { transform: translateX(-100%); } to { transform: translateX(300%); } }
.v2-flow-out {
  display: flex; align-items: center; gap: 18px; justify-self: start;
  border: 2px solid var(--blue-600); border-radius: var(--radius-lg);
  padding: 22px 26px; background: var(--surface); box-shadow: var(--shadow);
}
.v2-flow-out img { height: 38px; width: auto; }
.v2-flow-out span { font-size: 14px; font-weight: 600; color: var(--blue-700); }

/* ---------------------------------------------------------------- étapes */
.v2-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 44px; }
.v2-step {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 30px 32px;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}
.v2-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.v2-step::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--amber-600));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .45s ease;
}
.v2-step:hover::before { transform: scaleX(1); }
.v2-step-n {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--blue-050); color: var(--blue-700); font-weight: 700; font-size: 18px;
  margin-bottom: 20px;
}
.v2-step h3 { margin: 0 0 10px; font-size: 19px; }
.v2-step p { margin: 0; color: var(--ink-700); font-size: 15px; }
.v2-step-ghost {
  position: absolute; right: 14px; bottom: -18px;
  font-size: 96px; font-weight: 800; line-height: 1; color: var(--surface-sunken);
  z-index: 0; pointer-events: none;
}
.v2-step > *:not(.v2-step-ghost) { position: relative; z-index: 1; }

/* ---------------------------------------------------------------- vidéo */
.v2-video { background: var(--ink-900); color: #fff; }
/* La vidéo suit immédiatement le hero, même fond sombre : on resserre le haut
   pour que les deux lisent comme un seul bloc. */
.v2-hero + .v2-video { padding-top: clamp(52px, 6vw, 84px); }
.v2-video h2 { color: #fff; }
.v2-video .v2-sub { color: rgba(255, 255, 255, .6); }
.v2-video-frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5); background: #000;
}
.v2-video-frame > * { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.v2-video-facade { padding: 0; margin: 0; background: none; cursor: pointer; display: block; }
.v2-video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease, opacity .3s ease; }
.v2-video-facade:hover img { transform: scale(1.04); opacity: .8; }
.v2-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 50%; background: var(--blue-600);
  transition: transform .3s ease, background .3s ease;
}
.v2-video-play::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 2px solid rgba(44, 120, 194, .5); animation: v2-pulse 2.4s ease-out infinite;
}
@keyframes v2-pulse { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }
.v2-video-play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 15px 0 15px 26px; border-color: transparent transparent transparent #fff;
}
.v2-video-facade:hover .v2-video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--blue-500); }
.v2-video-note { margin: 18px 0 0; font-size: 13.5px; }
.v2-video-note a { color: rgba(255, 255, 255, .6); }
.v2-video-note a:hover { color: #fff; }

/* --------------------------------------------------------------- équipe */
.v2-marquee { overflow: hidden; padding: 10px 0 4px; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.v2-marquee-track { display: flex; gap: 14px; width: max-content; animation: v2-scroll 46s linear infinite; }
.v2-marquee:hover .v2-marquee-track { animation-play-state: paused; }
@keyframes v2-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.v2-face { display: grid; justify-items: center; gap: 6px; width: 118px; text-align: center; }
.v2-face img {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--accent, var(--blue-500));
  transition: transform .3s ease;
}
.v2-face:hover img { transform: scale(1.1) rotate(-3deg); }
.v2-face b { font-size: 13.5px; font-weight: 650; }
.v2-face i { font-style: normal; font-size: 11.5px; color: var(--ink-500); line-height: 1.3; }

.v2-poles { display: grid; gap: 34px; margin-top: 48px; }
.v2-pole-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.v2-pole-n {
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px;
  background: var(--blue-600); color: #fff; font-size: 13px; font-weight: 700;
}
.v2-pole-head h3 { margin: 0; font-size: 16px; color: var(--ink-700); }
.v2-pole-line { flex: 1; height: 1px; background: var(--line); }
.v2-pole-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.v2-member {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 14px; display: grid; justify-items: center; gap: 3px; text-align: center;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .3s ease;
}
.v2-member:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); border-color: var(--accent, var(--line-strong)); }
.v2-member img { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--accent, var(--blue-500)); margin-bottom: 8px; }
.v2-member b { font-size: 14.5px; font-weight: 650; }
.v2-member span { color: var(--ink-500); font-size: 12.5px; line-height: 1.35; }

/* --------------------------------------------------------------- tarifs */
.v2-pricing { background: var(--surface-sunken); }
/* L'offre de lancement est une PROMO, pas une note de bas de page (propriétaire,
   2026-09-03) : bloc rouge plein, pris sur le rouge d'alerte de la charte, posé
   en travers de la grille de prix. Il doit s'attraper avant les tarifs. */
.v2-promo {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 32px; margin: 4px 0 34px; padding: 26px 30px;
  border-radius: 20px; color: #fff;
  background: linear-gradient(118deg, #d02b1f 0%, #b3261e 52%, #8d160f 100%);
  box-shadow: 0 18px 44px rgba(179, 38, 30, .38);
}
.v2-promo-copy { display: grid; gap: 10px; }
.v2-promo-badge {
  justify-self: start; position: relative; padding: 6px 14px; border-radius: 999px;
  background: #fff; color: #b3261e;
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
/* Le halo bat lentement : assez pour accrocher l'œil, pas pour clignoter. */
.v2-promo-badge::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
  animation: v2-promo-pulse 2.6s ease-out infinite;
}
@keyframes v2-promo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .7); }
  70%, 100% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
}
.v2-promo-copy p {
  margin: 0; max-width: 46ch; color: #fff;
  font-size: clamp(17px, 1.9vw, 21px); font-weight: 700; line-height: 1.35; letter-spacing: -.01em;
}
.v2-promo-clock { display: grid; gap: 10px; justify-items: end; }
.v2-promo-clock[hidden] { display: none; }
.v2-promo-clock-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255, 255, 255, .82);
}
.v2-promo-units { display: flex; gap: 10px; }
.v2-promo-unit {
  min-width: 74px; padding: 10px 8px; border-radius: 14px; text-align: center;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(2px);
}
.v2-promo-unit strong {
  display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 800; line-height: 1.05;
  letter-spacing: -.03em; color: #fff; font-variant-numeric: tabular-nums;
}
.v2-promo-unit span {
  display: block; margin-top: 3px; font-size: 11px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: rgba(255, 255, 255, .78);
}
@media (max-width: 700px) {
  .v2-promo { justify-content: flex-start; padding: 22px; }
  .v2-promo-clock { justify-items: start; }
  .v2-promo-units { flex-wrap: wrap; }
  .v2-promo-unit { min-width: 66px; }
}

.v2-price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-bottom: 28px; }
.v2-price-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px 24px 26px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.v2-price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.v2-price-card.is-featured { border: 2px solid var(--blue-600); box-shadow: var(--shadow); }
.v2-price-card h3 { margin: 0; font-size: 16px; color: var(--ink-500); }
.v2-price { margin: 6px 0 0; display: flex; align-items: baseline; gap: 10px; }
.v2-price strong { font-size: 34px; letter-spacing: -.03em; }
.v2-price s { color: var(--ink-400); font-size: 15px; }
.v2-price-per { margin: 0; color: var(--ink-500); font-size: 13px; }
.v2-price-images { margin: 0 0 14px; color: var(--ink-700); font-size: 13.5px; }
.v2-price-card .btn { margin-top: auto; text-align: center; }
.v2-quote {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border: 1px dashed var(--line-strong); border-radius: 16px; padding: 22px 26px;
  background: var(--surface); margin-bottom: 24px;
}
.v2-quote h3 { margin: 0 0 4px; font-size: 16px; }
.v2-quote p { margin: 0; color: var(--ink-700); font-size: 14px; }
.v2-notes { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; }
.v2-notes li { position: relative; padding-left: 22px; color: var(--ink-500); font-size: 13.5px; }
.v2-notes li::before { content: "\2713"; position: absolute; left: 0; color: var(--blue-600); font-weight: 700; }

/* -------------------------------------------------------------- confiance */
.v2-trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.v2-trust-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px; padding: 30px 32px; background: var(--surface);
  transition: transform .35s ease, box-shadow .35s ease;
}
.v2-trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.v2-trust-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--blue-600), var(--amber-600));
  transform: scaleY(0); transform-origin: 50% 0; transition: transform .5s ease;
}
.v2-js .v2-trust-card.is-in::before { transform: scaleY(1); }
.v2-trust-card h3 { margin: 0 0 10px; font-size: 18px; }
.v2-trust-card p { margin: 0; color: var(--ink-700); font-size: 15px; }

/* ------------------------------------------------------------------- cta */
.v2-cta {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: radial-gradient(120% 120% at 50% 0%, #14487f 0%, #0a2444 55%, #061527 100%);
}
.v2-cta h2 { color: #fff; max-width: 20ch; margin: 0 auto 16px; }
.v2-cta p { color: rgba(255, 255, 255, .7); font-size: 17px; margin: 0 0 34px; }

/* ---------------------------------------------------------------- footer */
.v2-footer { border-top: 1px solid var(--line); padding: 30px 0; background: var(--surface); }
.v2-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.v2-footer p { margin: 0; color: var(--ink-500); font-size: 13.5px; }
.v2-footer-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.v2-footer-actions a { font-size: 13.5px; color: var(--ink-500); }
.v2-footer-actions .lang-switch a { font-size: 12px; color: var(--ink-500); }
.v2-footer-actions a:hover { color: var(--ink-900); }

/* ------------------------------------------------------------ responsive */
@media (max-width: 980px) {
  .v2-nav-links { display: none; }
  .v2-burger { display: block; }
  /* Dans la barre, le sélecteur poussait le bouton hors de l'écran : il vit
     désormais dans le panneau du burger, et dans le pied de page. */
  .v2-nav-actions .lang-switch { display: none; }
  .v2-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .v2-hero { min-height: auto; padding: 110px 0 72px; }
  .v2-steps, .v2-trust-grid { grid-template-columns: 1fr; }
  .v2-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-flow-rail { grid-template-columns: 1fr; gap: 20px; }
  .v2-flow-pipe { width: 3px; height: 60px; justify-self: center; }
  .v2-flow-pipe::after { width: 100%; height: 40%; background: linear-gradient(180deg, transparent, var(--blue-500), transparent); animation-name: v2-pipe-y; }
  @keyframes v2-pipe-y { from { transform: translateY(-100%); } to { transform: translateY(300%); } }
}
@media (max-width: 600px) {
  .v2-price-grid { grid-template-columns: 1fr; }
  .v2-notes { grid-template-columns: 1fr; }
  .v2-pole-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Une seule action dans la nav : la place suffit pour garder le mot
     « Octopia » et le sélecteur de langue, même sur un petit téléphone. */
  .v2-nav-actions .btn { padding: 8px 13px; font-size: 13.5px; }
  .v2-nav-actions .btn, .v2-nav .brand span { white-space: nowrap; }
  .v2-nav-row { gap: 12px; }
  .v2-shell { padding: 0 16px; }
}

/* Mouvement réduit : la page reste complète, elle cesse simplement de bouger. */
@media (prefers-reduced-motion: reduce) {
  .v2-js [data-an], .v2-js .v2-word { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .v2-promo-badge::after,
  .v2-blob, .v2-cycler, .v2-btn-glow::after, .v2-flow-pipe::after,
  .v2-marquee-track, .v2-video-play::before { animation: none !important; }
  .v2-step, .v2-member, .v2-price-card, .v2-trust-card, .v2-flow-card, .v2-cycler-card { transition: none !important; }
  .v2-menu, .v2-burger span { transition: none !important; }
  .v2-js .v2-trust-card::before { transform: scaleY(1); }
}

/* Le sélecteur de langue de la landing est fait de deux liens depuis le
   2026-09-21 (ADR-0105) : chaque langue a son adresse. Le panneau du burger
   habille tout <a> qu'il contient en ligne de liste — ce que ces deux-là ne
   sont pas. La règle vit en fin de fichier parce que `.v2-menu a:last-child`
   a la même spécificité : c'est l'ordre qui tranche. */
.v2-menu .lang-switch a {
  padding: 7px 14px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--ink-500); text-decoration: none;
}
.v2-menu .lang-switch a.is-active {
  background: var(--blue-050); border-color: var(--blue-100);
  color: var(--blue-700); font-weight: 600;
}
