/* ════════════════════════════════════════════════════════════════════
   FluidBody+ — Aquatic Premium
   Refonte mai 2026 · navy → turquoise · lime · glassmorphism liquid glass
   ════════════════════════════════════════════════════════════════════ */

/* ───── Tokens ───── */
:root {
  /* Palette officielle */
  --navy-900: #021222;
  --navy-700: #0E2A3D;
  --navy-500: #1A4555;
  --turquoise: #55BBC9;
  --lime: #B8E62E;
  --lime-soft: #cdf25a;

  /* Dérivés texte */
  --ink: #F4FBFC;
  --ink-dim: #aecbd3;
  --ink-faint: #6f97a3;

  /* Verre — Liquid Glass iOS 26 (ultra glassy) */
  --glass-bg: rgba(255, 255, 255, 0.11);
  --glass-bg-strong: rgba(255, 255, 255, 0.14);
  --glass-stroke: rgba(255, 255, 255, 0.18);
  --glass-blur: 38px;

  /* Rythme */
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);   /* ease-out-expo (apparitions) */
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);     /* Material standard (hover) */
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
  background: var(--navy-900);
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Gradient signature : pseudo-élément fixe (robuste iOS Safari, pas de
   background-attachment:fixed qui rend mal sur mobile et en capture). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(85, 187, 201, 0.12), transparent 60%),
    linear-gradient(180deg,
      var(--navy-900) 0%,
      var(--navy-700) 34%,
      var(--navy-500) 64%,
      #246472 86%,
      var(--turquoise) 100%);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--lime); color: var(--navy-900); }

/* ───── Custom scrollbar — lime fluo ───── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(2, 18, 34, 0.4); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #B8E62E 0%, #8FB820 100%);
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(184, 230, 46, 0.4);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #C8FA40 0%, #A8D02E 100%);
}
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #B8E62E rgba(2, 18, 34, 0.4);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--lime);
  color: var(--navy-900);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; }

/* ───── Layout helpers ───── */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

section { position: relative; z-index: 1; }

/* Rythme vertical uniforme : ~64px mobile → ~104px desktop */
.section-pad { padding-block: clamp(64px, 8vw, 104px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.02em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--lime);
  opacity: 0.7;
}

h1, h2, h3 { line-height: 1.04; letter-spacing: -0.03em; font-weight: 700; }

.h-display {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-dim); max-width: 56ch; }

/* ───── Glass — Liquid Glass iOS 26 ───── */
.glass {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-stroke);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),    /* reflet top */
    inset 0 -1px 0 rgba(184, 230, 46, 0.15),   /* reflet bottom lime */
    0 8px 32px rgba(0, 0, 0, 0.3),             /* shadow externe */
    0 0 60px rgba(85, 187, 201, 0.12);         /* halo turquoise */
}
/* Bordure dégradée lumineuse 1px (haut → bas) */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.05) 32%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
/* Réfraction diagonale lime → turquoise + lueur supérieure */
.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 38%),
    linear-gradient(135deg,
      rgba(184, 230, 46, 0.08) 0%,
      transparent 35%,
      transparent 65%,
      rgba(85, 187, 201, 0.08) 100%);
  pointer-events: none;
}

/* ───── Boutons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.24s var(--ease-hover), box-shadow 0.24s var(--ease-hover), background 0.24s var(--ease-hover);
  will-change: transform;
}
.btn--primary {
  background: var(--lime);
  color: var(--navy-900);
  box-shadow: 0 8px 30px -8px rgba(184, 230, 46, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 44px -8px rgba(184, 230, 46, 0.75);
  background: var(--lime-soft);
}
.btn--ghost {
  background: rgba(255,255,255,0.03);
  border-color: rgba(184, 230, 46, 0.5);
  color: var(--lime);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--lime);
  background: rgba(184, 230, 46, 0.09);
}
.btn svg { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
  font-weight: 600;
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ════════════════ Aquatic background (méduses + bulles) ════════════════ */
.aquatic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.medusa {
  position: absolute;
  transform: translateY(0);
  animation: drift 16s ease-in-out infinite alternate;
  opacity: var(--medusa-o, 0.55);
}
/* Teinte turquoise (par défaut) — halo signature */
.medusa--turquoise {
  filter: drop-shadow(0 0 22px rgba(85, 187, 201, 0.45));
}
/* Teinte lime — halo lime + colorisation du corps (hue-rotate vers le vert) */
.medusa--lime {
  filter:
    drop-shadow(0 0 16px rgba(184, 230, 46, 0.55))
    drop-shadow(0 0 5px rgba(184, 230, 46, 0.4))
    saturate(1.6) hue-rotate(-150deg) brightness(1.05);
}
.medusa__sway {
  animation: sway 11s ease-in-out infinite alternate, pulse 6s ease-in-out infinite alternate;
}
.medusa img { width: 100%; height: auto; }

@keyframes drift {
  0%   { transform: translateY(-8vh); }
  100% { transform: translateY(10vh); }
}
@keyframes sway {
  0%   { transform: translateX(-2.4vw) rotate(-3deg); }
  100% { transform: translateX(2.4vw) rotate(3deg); }
}
@keyframes pulse {
  0%   { opacity: 0.78; transform: scale(0.97); }
  100% { opacity: 1;    transform: scale(1.03); }
}

.bubble {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.7), rgba(85,187,201,0.18) 60%, transparent 72%);
  border: 1px solid rgba(255,255,255,0.18);
  animation: rise linear infinite;
  opacity: 0;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.55; }
  50%  { transform: translateY(-52vh) translateX(14px); }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-108vh) translateX(-10px); opacity: 0; }
}

/* ════════════════ Nav — capsule glassy lime ════════════════ */
.nav {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 16px 8px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(184, 230, 46, 0.35);
  border-radius: 9999px;
  pointer-events: auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(184, 230, 46, 0.18),
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(184, 230, 46, 0.18);
  max-width: calc(100% - 32px);
  position: relative;
}
.nav__brand { text-decoration: none; display: flex; align-items: center; }
.nav__logo {
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}
.nav__logo .plus { color: var(--lime); margin-left: 2px; display: inline-block; animation: breathe 4s ease-in-out infinite; }

/* Sur desktop, le wrapper menu est transparent au layout (ses enfants
   deviennent enfants directs de la capsule). Sur mobile il devient le drawer. */
.nav__menu { display: contents; }

.nav__capsule { display: flex; }
.nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}
.nav__list a:hover {
  color: var(--lime);
  background: rgba(184, 230, 46, 0.12);
  box-shadow: inset 0 0 0 1px rgba(184, 230, 46, 0.2);
}
.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 8px;
}
.nav__lang a {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  padding: 4px 6px;
  transition: color 240ms ease;
}
.nav__lang a.active { color: var(--lime); }
.nav__lang a:hover { color: var(--lime); }
.nav__lang-sep { color: rgba(255, 255, 255, 0.3); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 4px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform 240ms ease, opacity 240ms ease;
}
/* Burger animé en croix quand ouvert */
.nav.nav-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Responsive : drawer mobile */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__inner { padding: 8px 8px 8px 20px; gap: 12px; }
  .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(184, 230, 46, 0.35);
    border-radius: 22px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 12px 40px rgba(0, 0, 0, 0.3),
      0 0 60px rgba(184, 230, 46, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }
  .nav.nav-open .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__capsule { width: 100%; }
  .nav__list { flex-direction: column; gap: 2px; width: 100%; }
  .nav__list a { display: block; }
  .nav__lang { margin-left: 0; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); width: 100%; }
}

/* Wordmark */
.wordmark {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  font-size: 1.35rem;
}
.wordmark .plus { color: var(--lime); }
.lang-switch {
  font-size: 0.85rem;
  color: var(--ink-faint);
  border: 1px solid var(--glass-stroke);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.25s, border-color 0.25s;
}
.lang-switch:hover { color: var(--lime); border-color: rgba(184,230,46,0.5); }

/* ════════════════ Hero ════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 96px var(--gut) 24px;
  position: relative;
}
/* Halo glassy turquoise au centre du hero */
.hero::after {
  content: "";
  position: absolute;
  inset: 20% 25%;
  background: radial-gradient(ellipse at center, rgba(85, 187, 201, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero__logo {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: clamp(16px, 3.5vh, 32px);
}
.hero__logo .plus { color: var(--lime); display: inline-block; animation: breathe 4s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero h1 {
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #d8f0f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Indicateur SCROLL — compact, ancré tout en bas du hero */
.hero__scroll {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(184, 230, 46, 0.6);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, rgba(184, 230, 46, 0.6), transparent);
  animation: scroll-cue 2s infinite;
}
@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 0.2; }
}

/* ════════════════ Manifeste ════════════════ */
.manifesto { text-align: center; }
.manifesto blockquote {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-style: italic;
  max-width: 18ch;
  margin-inline: auto;
  background: linear-gradient(180deg, #ffffff, var(--turquoise) 160%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifesto cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  color: var(--lime);
  font-weight: 600;
  font-size: 1rem;
}

/* ════════════════ How it works ════════════════ */
.steps__head { text-align: center; margin-bottom: clamp(48px, 8vw, 88px); }
.steps__head .lead { margin-inline: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.step { text-align: center; }
.step__phone {
  position: relative;
  border-radius: 34px;
  padding: 10px;
  margin-bottom: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.6);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.step:hover .step__phone {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px -28px rgba(85,187,201,0.5);
}
/* Cadrage haut des mockups : on montre la zone "héro" de chaque écran
   (en-tête, contenu principal) et on coupe le bas — uniforme sur les 3. */
.step__phone img {
  border-radius: 26px;
  width: 100%;
  aspect-ratio: 624 / 880;
  object-fit: cover;
  object-position: top;
}
.step__num {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--ink-dim); max-width: 32ch; margin-inline: auto; font-size: 0.98rem; }

/* ════════════════ Piliers ════════════════ */
.piliers__head { text-align: center; margin-bottom: clamp(40px, 7vw, 72px); }
.piliers__head h2 { max-width: 16ch; margin-inline: auto; }
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Card pilier avec photo studio */
.pilier-card { display: flex; flex-direction: column; }
.pilier-photo {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(85, 187, 201, 0.1);
  border: 1px solid rgba(184, 230, 46, 0.2);
  box-shadow: 0 4px 24px rgba(2, 18, 34, 0.3);
  margin-bottom: 16px;
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.pilier-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(85, 187, 201, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.pilier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
  transition: transform 600ms ease, filter 400ms ease;
}
.pilier-card:hover .pilier-photo {
  transform: scale(1.04);
  box-shadow: 0 0 32px rgba(184, 230, 46, 0.3);
}
.pilier-card:hover .pilier-photo img {
  filter: saturate(1) brightness(1);
  transform: scale(1.06);
}
.pilier-card h3 { font-weight: 600; font-size: 1.12rem; letter-spacing: -0.02em; }
.pilier-card p {
  margin-top: 5px;
  font-size: 0.9rem;
  color: var(--lime);
  opacity: 0.7;
  letter-spacing: -0.01em;
}

/* ════════════════ Sabrina ════════════════ */
.sabrina-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.sabrina__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-stroke);
  position: relative;
  box-shadow: 0 40px 90px -34px rgba(0,0,0,0.7);
}
.sabrina__photo img { width: 100%; aspect-ratio: 1133/1700; object-fit: cover; }
.sabrina__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2,18,34,0.5));
}
.sabrina__body h2 { margin-bottom: 26px; }
.sabrina__body p { color: var(--ink-dim); font-size: 1.08rem; margin-bottom: 18px; max-width: 50ch; }
.sabrina__body .tm { color: var(--ink); }
.sabrina__link { margin-top: 12px; }

/* ════════════════ Apple TV ════════════════ */
.appletv .glass {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
}
.appletv__body h2 { margin-bottom: 20px; max-width: 14ch; }
.appletv__body p { color: var(--ink-dim); font-size: 1.1rem; margin-bottom: 24px; max-width: 40ch; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  background: rgba(184,230,46,0.1);
  border: 1px solid rgba(184,230,46,0.3);
  padding: 8px 16px;
  border-radius: 999px;
}
.appletv__art {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-500));
  border: 1px solid var(--glass-stroke);
  display: grid;
  place-items: center;
}
.appletv__art img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.appletv__screen {
  position: relative;
  text-align: center;
}
.appletv__screen .wordmark { font-size: clamp(1.4rem, 3vw, 2.2rem); }
.appletv__screen .tvsub { color: var(--ink-dim); font-size: 0.9rem; margin-top: 8px; }
/* socle TV */
.appletv__art::after {
  content: "";
  position: absolute;
  bottom: 8%;
  width: 40%; height: 6px;
  background: radial-gradient(ellipse, rgba(85,187,201,0.4), transparent 70%);
}

/* ════════════════ Pricing ════════════════ */
.pricing__head { text-align: center; margin-bottom: clamp(44px, 7vw, 76px); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border-radius: var(--r-lg);
  /* Pricing cards : blur encore plus prononcé pour se détacher */
  backdrop-filter: blur(45px) saturate(140%);
  -webkit-backdrop-filter: blur(45px) saturate(140%);
  transition: transform 0.28s var(--ease-hover), box-shadow 0.28s var(--ease-hover);
}
.price:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 24px 60px -24px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(184, 230, 46, 0.28);
}
.price--feat {
  background: var(--glass-bg-strong);
  border-color: rgba(184,230,46,0.55);
  box-shadow: 0 30px 80px -30px rgba(184,230,46,0.35);
}
.price__badge {
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--lime);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.price__name { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; color: var(--ink); }
.price__big {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.price__big .cur { font-size: 0.95rem; font-weight: 600; color: var(--ink-dim); letter-spacing: 0; vertical-align: middle; margin-left: 4px; }
.price__then { color: var(--ink-faint); font-size: 0.92rem; margin-bottom: 20px; }
.price__desc { color: var(--ink-dim); font-size: 0.98rem; flex-grow: 1; margin-bottom: 24px; }
.price__equiv { color: var(--lime); font-weight: 600; }
.price .link-arrow { margin-top: auto; }

.pricing__cta { text-align: center; margin-top: clamp(40px, 6vw, 64px); }
.pricing__legal { color: var(--ink-faint); font-size: 0.85rem; margin-top: 18px; max-width: 52ch; margin-inline: auto; }

/* ════════════════ Footer ════════════════ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: clamp(60px, 10vw, 120px);
  padding-block: clamp(56px, 8vw, 88px) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 56px;
}
.footer__brand .wordmark { font-size: 1.5rem; margin-bottom: 14px; }
.footer__brand p { color: var(--ink-faint); font-size: 0.92rem; max-width: 30ch; }
.footer__col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  color: var(--ink-dim);
  font-size: 0.95rem;
  padding: 5px 0;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--lime); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  color: var(--ink-faint);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════ Reveal ════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s var(--ease-reveal), transform 0.75s var(--ease-reveal);
}
.reveal.in { opacity: 1; transform: none; }

/* ════════════════ Responsive ════════════════ */
@media (max-width: 1024px) {
  .sabrina-grid { grid-template-columns: 1fr; }
  .sabrina__photo { max-width: 420px; }
  .appletv .glass { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --r-lg: 22px; }
  .nav-hide-sm { display: none; }
  /* L'indicateur SCROLL est inutile en mobile et entrait en collision avec le CTA */
  .hero__scroll { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; gap: 48px; }
  .piliers-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .price--feat { order: -1; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --gut: 20px; }
  .hero { padding-top: 120px; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .piliers-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pilier-photo { margin-bottom: 10px; }
  .pilier-card h3 { font-size: 1rem; }
  .pilier-card p { font-size: 0.82rem; }
  .footer__top { grid-template-columns: 1fr; }
}

/* ════════════════ Reduced motion ════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .aquatic-bg { display: none; }
  body { background-attachment: scroll; }
}

/* ════════════════ Store badges (Bientôt / Coming soon) ════════════════ */
.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.store-badge {
  position: relative;
  display: inline-block;
  opacity: 0.78;
  transition: opacity 300ms ease, transform 300ms ease, filter 300ms ease;
  text-decoration: none;
}
.store-badge img {
  height: 56px;
  width: auto;
  display: block;
}
.store-badge--soon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(184, 230, 46, 0.0);
  border-radius: 10px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
  pointer-events: none;
}
.store-badge__tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: rgba(184, 230, 46, 0.18);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #B8E62E;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 9px;
  border: 1px solid rgba(184, 230, 46, 0.4);
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 0 12px rgba(184, 230, 46, 0.2);
  z-index: 2;
}
.store-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(184, 230, 46, 0.2));
}
.store-badge--soon:hover::after {
  border-color: rgba(184, 230, 46, 0.4);
  box-shadow: 0 0 24px rgba(184, 230, 46, 0.25);
}
.store-soon-note {
  margin-top: 14px;
  font-size: 13px;
  font-style: italic;
  color: var(--lime);
  opacity: 0.7;
  text-align: center;
}

/* ════════════════ Newsletter ════════════════ */
.newsletter { text-align: center; }
.newsletter__card {
  max-width: 580px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.newsletter h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.newsletter > .wrap > .newsletter__card > p {
  color: var(--ink-dim);
  font-size: 1.02rem;
  margin-bottom: 26px;
  max-width: 42ch;
  margin-inline: auto;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin-inline: auto;
}
.newsletter__form input {
  flex: 1;
  min-width: 0;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  color: #fff;
  font: inherit;
  font-size: 16px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.newsletter__form input::placeholder { color: var(--ink-faint); }
.newsletter__form input:focus {
  outline: none;
  border-color: rgba(184, 230, 46, 0.5);
  box-shadow: 0 0 0 4px rgba(184, 230, 46, 0.15);
  background: rgba(255, 255, 255, 0.10);
}
.newsletter__form button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: var(--lime);
  color: var(--navy-900);
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.newsletter__form button:hover { transform: translateY(-2px); background: var(--lime-soft); }
.newsletter__legal {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
@media (max-width: 768px) {
  .store-badges { gap: 12px; }
  .store-badge img { height: 48px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form button { width: 100%; }
}

/* ════════════════ Trail de bulles au curseur ════════════════ */
.cursor-bubble {
  position: fixed;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(184, 230, 46, 0.4) 40%,
    rgba(85, 187, 201, 0.2) 100%);
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 0 12px rgba(184, 230, 46, 0.4);
  animation: cursor-bubble-rise 1.8s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes cursor-bubble-rise {
  0%   { transform: translateY(0) translateX(0) scale(0.4); opacity: 0; }
  15%  { transform: translateY(-8px) translateX(calc(var(--drift-x) * 0.2)) scale(1); opacity: 0.9; }
  100% { transform: translateY(-60px) translateX(var(--drift-x)) scale(0.5); opacity: 0; }
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-bubble { display: none; }
}

/* ════════════════ Curseur custom (aquatic) ════════════════ */
/* Curseur natif masqué seulement quand le curseur custom est actif
   (classe ajoutée par le JS) — évite une page sans curseur si le JS échoue. */
@media (hover: hover) and (pointer: fine) {
  html.cursor-ready, html.cursor-ready body { cursor: none; }
  html.cursor-ready a, html.cursor-ready button, html.cursor-ready input,
  html.cursor-ready select, html.cursor-ready textarea, html.cursor-ready [role="button"],
  html.cursor-ready .nav__list a, html.cursor-ready .nav__lang a,
  html.cursor-ready .nav__toggle, html.cursor-ready .pilier-card, html.cursor-ready .store-badge {
    cursor: none;
  }
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: screen;
  will-change: transform;
}
.custom-cursor__dot {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(184, 230, 46, 0.7);
}
.custom-cursor__ring {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(184, 230, 46, 0.6);
  border-radius: 50%;
  box-shadow:
    inset 0 0 8px rgba(184, 230, 46, 0.2),
    0 0 12px rgba(184, 230, 46, 0.3);
  transition: transform 200ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.custom-cursor.is-hover .custom-cursor__ring {
  transform: scale(1.5);
  border-color: rgba(184, 230, 46, 1);
  box-shadow:
    inset 0 0 12px rgba(184, 230, 46, 0.4),
    0 0 24px rgba(184, 230, 46, 0.5);
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .custom-cursor { display: none; }
  html, body { cursor: auto; }
}
/* Sécurité supplémentaire : si un appareil tactile est détecté au runtime,
   le JS ajoute .is-touch sur <html> → curseur custom masqué définitivement. */
html.is-touch .custom-cursor { display: none; }
html.is-touch, html.is-touch body { cursor: auto; }

/* ════════════════ Contact ════════════════ */
.contact {
  padding: clamp(64px, 8vw, 104px) var(--gut);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.contact__inner { width: 100%; max-width: 1100px; text-align: center; }
.contact__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.contact__lead {
  font-size: 1rem;
  color: rgba(184, 230, 46, 0.85);
  margin: 0 0 48px;
  font-style: italic;
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 24px;
  border-radius: var(--r-md);
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: transform 240ms var(--ease-hover), box-shadow 240ms var(--ease-hover);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(184, 230, 46, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(184, 230, 46, 0.2);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 230, 46, 0.15);
  border: 1px solid rgba(184, 230, 46, 0.35);
  border-radius: 50%;
  color: var(--lime);
  margin-bottom: 12px;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 230, 46, 0.7);
}
.contact-card__value { font-size: 1rem; font-weight: 500; color: #fff; margin-top: 4px; }
.contact-card__sub { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }

@media (max-width: 768px) {
  .contact__cards { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 28px 20px; }
}
