/* ================================================
   AUR'IA — landing v2
   Refonte inspirée MyFitnessPal
   ================================================ */

:root {
  /* Brand */
  --blue: #1652F0;
  --blue-deep: #0E3FC4;
  --blue-soft: #2B5BF5;
  --blue-tint: #EEF2FF;
  --blue-glow: rgba(22, 82, 240, 0.18);

  /* Neutrals */
  --black: #0B0B12;
  --navy: #1A1A2E;
  --ink: #1F2937;
  --ink-70: rgba(31, 41, 55, 0.72);
  --ink-50: rgba(31, 41, 55, 0.55);
  --gray-50: #F8FAFC;
  --gray-100: #F1F4F9;
  --gray-200: #E5E7EB;
  --muted: #6B7280;
  --white: #FFFFFF;

  /* Accents */
  --gold: #F5B400;
  --gold-deep: #D49100;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--navy); letter-spacing: -0.025em; line-height: 1.1; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.kicker {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-70);
  line-height: 1.55;
  max-width: 640px;
  text-wrap: pretty;
}

/* ============ NAV ============
   2 états : data-state="top" (transparent sur le hero) → data-state="scrolled" (glass blur).
   Toggle dans script.js via window.scrollY > 40px. Apple curve : cubic-bezier(.22,.61,.36,1).
   ============================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s cubic-bezier(.22,.61,.36,1),
    border-color 0.45s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.45s cubic-bezier(.22,.61,.36,1);
}
.nav[data-state="scrolled"] {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(11, 11, 18, 0.07);
  box-shadow: 0 6px 24px rgba(7, 22, 70, 0.06);
}
/* Compat avec ancien selector — quand JS active, "scrolled" prend le dessus */
.nav--onhero { background: transparent; }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 32px;
  transition: height 0.45s cubic-bezier(.22,.61,.36,1);
}
.nav[data-state="scrolled"] .nav__inner { height: 64px; }

/* Brand color crossfade entre états */
.nav .brand { transition: color 0.45s cubic-bezier(.22,.61,.36,1); }
.nav[data-state="scrolled"] .brand { color: var(--navy); }
.nav[data-state="scrolled"] .brand__word .r { color: var(--blue); }
.nav[data-state="scrolled"] .brand__orb {
  background: var(--blue);
  border-color: transparent;
  backdrop-filter: none;
}
.nav[data-state="scrolled"] .brand__orb i { background: #fff; }
.nav[data-state="scrolled"] .brand sup { color: var(--blue); }
/* ============ AUR'IA LOGO SYSTEM (v1.0)
   W1 wordmark "auRia" + S1 waveform orb
   ============ */
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  text-decoration: none;
}
.brand__word {
  display: inline-block;
}
.brand__word .r {
  display: inline-block;
  transform: scaleX(-1);
  color: var(--blue);
  /* Optical centering : après scaleX(-1), le poids visuel du Я tombe à droite
     de sa box ; sans compensation il colle au "u" à gauche et laisse un trou
     à droite avant "ia". On pousse le Я de 0.08em à droite et on tire le "ia"
     de 0.04em vers la gauche pour rééquilibrer optiquement. */
  margin-left: 0.08em;
  margin-right: -0.04em;
}
.brand__orb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}
.brand__orb i {
  display: block;
  width: 2px;
  background: #fff;
  border-radius: 1.5px;
  transform-origin: center;
  animation: brand-bar 1.2s ease-in-out infinite;
}
.brand__orb i:nth-child(1) { height: 6px;  animation-delay: 0s; }
.brand__orb i:nth-child(2) { height: 11px; animation-delay: 0.12s; }
.brand__orb i:nth-child(3) { height: 8px;  animation-delay: 0.24s; }
.brand__orb i:nth-child(4) { height: 13px; animation-delay: 0.36s; }
.brand__orb i:nth-child(5) { height: 7px;  animation-delay: 0.48s; }
@keyframes brand-bar {
  0%, 100% { transform: scaleY(0.55); }
  50%      { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .brand__orb i { animation: none; }
}
.brand sup {
  font-size: 10px;
  font-weight: 500;
  color: var(--blue);
  margin-left: 4px;
  vertical-align: super;
  letter-spacing: 0;
}

/* On dark hero — knockout */
.brand--white { color: var(--white); }
.brand--white .brand__word .r { color: #C9D6FF; }
.brand--white .brand__orb {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.brand--white .brand__orb i { background: #fff; }
.brand--white sup { color: rgba(255, 255, 255, 0.7); }

.brand--white-legacy {
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.brand--white-legacy sup {
  font-size: 11px;
  font-weight: 500;
  vertical-align: super;
  margin-left: 2px;
}
.nav__account {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  transition: background 0.18s;
}
.nav__account:hover { background: rgba(255, 255, 255, 0.20); }
.brand__glyph {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-soft) 100%);
  border-radius: 9px;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.brand__glyph::before {
  content: ""; position: absolute; inset: 6px;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.95) 0 2px, transparent 2px 4px);
  mask: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  animation: dance 1.4s ease-in-out infinite alternate;
}
@keyframes dance { from { transform: scaleY(0.5); } to { transform: scaleY(1.1); } }

/* ============ NAV LINKS + indicateur de section ============ */
.nav__links {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  flex: 0 1 auto;
}
.nav__links a {
  position: relative;
  display: inline-flex; align-items: center;
  height: 36px; padding: 0 14px;
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 9999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav__links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav__links a.is-active { color: #fff; }

.nav[data-state="scrolled"] .nav__links a {
  color: rgba(11, 11, 18, 0.62);
}
.nav[data-state="scrolled"] .nav__links a:hover {
  color: var(--blue-deep);
  background: rgba(22, 82, 240, 0.07);
}
.nav[data-state="scrolled"] .nav__links a.is-active {
  color: var(--blue-deep);
}

/* Indicateur de section active : pill blanche translucide qui glisse */
.nav__indicator {
  position: absolute;
  left: 0; top: 50%;
  height: 36px;
  border-radius: 9999px;
  transform: translateX(0) translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  opacity: 0;
  width: 0;
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1),
    width 0.5s cubic-bezier(.22,.61,.36,1),
    opacity 0.35s ease,
    background 0.45s cubic-bezier(.22,.61,.36,1),
    border-color 0.45s cubic-bezier(.22,.61,.36,1);
  will-change: transform, width;
}
.nav[data-state="scrolled"] .nav__indicator {
  background: rgba(22, 82, 240, 0.08);
  border-color: rgba(22, 82, 240, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .nav__indicator { transition: opacity 0.2s ease; }
}

@media (max-width: 980px) { .nav__links { display: none; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  padding: 14px 24px;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }

.btn--white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 18px 36px;
  box-shadow: 0 14px 32px rgba(7, 22, 70, 0.22);
  min-height: 56px;
}
.btn--white:hover {
  box-shadow: 0 18px 40px rgba(7, 22, 70, 0.26);
}
.btn--white span {
  font-size: 18px;
  transition: transform 0.18s ease;
}
.btn--white:hover span { transform: translateX(3px); }

.btn--ghost-white {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.30);
}
.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.50);
}

.btn--solid-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(22, 82, 240, 0.24);
}
.btn--solid-blue:hover {
  background: var(--blue-deep);
  box-shadow: 0 12px 30px rgba(22, 82, 240, 0.32);
}

.btn--ghost-blue {
  background: var(--white);
  color: var(--blue-deep);
  border-color: rgba(22, 82, 240, 0.20);
}
.btn--ghost-blue:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.btn--white-on-dark {
  background: var(--white);
  color: var(--blue);
}
.btn--white-on-dark:hover {
  background: var(--gray-50);
}

/* ============ NAV CTA + actions ============ */
.nav__actions {
  display: flex; align-items: center; gap: 12px;
}
.nav__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 18px;
  min-height: 40px;
  border-radius: 9999px;
  text-transform: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.18s ease,
    box-shadow 0.25s ease;
}
.nav__cta:hover {
  background: #fff;
  color: var(--blue-deep);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(7, 22, 70, 0.18);
}
.nav[data-state="scrolled"] .nav__cta {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(22, 82, 240, 0.24);
}
.nav[data-state="scrolled"] .nav__cta:hover {
  background: var(--blue-deep);
  box-shadow: 0 10px 26px rgba(22, 82, 240, 0.32);
}

/* ============ BURGER (mobile) ============ */
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav[data-state="scrolled"] .nav__burger {
  background: rgba(11, 11, 18, 0.04);
  border-color: rgba(11, 11, 18, 0.10);
}
.nav__burger span {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    opacity 0.25s ease,
    background 0.25s ease;
}
.nav[data-state="scrolled"] .nav__burger span { background: var(--navy); }
.nav__burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav__burger span:nth-child(2) { transform: translate(-50%, -50%); }
.nav__burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 980px) {
  .nav__burger { display: block; }
  .nav__cta { display: none; }
}

/* ============ DRAWER mobile ============ */
.nav__drawer {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(11, 14, 32, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  padding: 24px clamp(20px, 5vw, 40px) 32px;
  display: flex; flex-direction: column; gap: 20px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s cubic-bezier(.22,.61,.36,1),
    opacity 0.35s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 55;
}
.nav[data-state="scrolled"] .nav__drawer { top: 64px; }
.nav__drawer[aria-hidden="false"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__drawer-links {
  display: flex; flex-direction: column;
}
.nav__drawer-links a {
  display: block;
  padding: 16px 0;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    color 0.25s ease,
    opacity 0.4s cubic-bezier(.22,.61,.36,1),
    transform 0.4s cubic-bezier(.22,.61,.36,1);
}
.nav__drawer[aria-hidden="false"] .nav__drawer-links a { opacity: 1; transform: translateY(0); }
.nav__drawer[aria-hidden="false"] .nav__drawer-links a:nth-child(1) { transition-delay: 0.06s; }
.nav__drawer[aria-hidden="false"] .nav__drawer-links a:nth-child(2) { transition-delay: 0.12s; }
.nav__drawer[aria-hidden="false"] .nav__drawer-links a:nth-child(3) { transition-delay: 0.18s; }
.nav__drawer[aria-hidden="false"] .nav__drawer-links a:nth-child(4) { transition-delay: 0.24s; }
.nav__drawer-links a:hover { color: #C9D6FF; }
.nav__drawer-cta {
  align-self: stretch;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s cubic-bezier(.22,.61,.36,1) 0.30s,
    transform 0.4s cubic-bezier(.22,.61,.36,1) 0.30s;
}
.nav__drawer[aria-hidden="false"] .nav__drawer-cta { opacity: 1; transform: translateY(0); }

body.nav-locked { overflow: hidden; }

/* ============ HERO (bleu plein) ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #1652F0 0%, #2A4FE0 45%, #5A3DDB 80%, #8B5DF0 100%);
  color: var(--white);
  padding: clamp(120px, 14vw, 160px) 0 clamp(96px, 11vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(160, 100, 255, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(110, 60, 240, 0.25) 0%, transparent 60%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__copy { max-width: 680px; }
.hero__device { transform: translateY(80px); }
@media (max-width: 900px) {
  .hero__device { transform: none; }
}
/* Décorations hero */
.hero__orbs {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #6D3CF0 0%, transparent 70%);
  top: -80px; right: 8%;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #1B5EFF 0%, transparent 70%);
  bottom: -60px; left: -40px;
  animation-delay: -6s;
}
.hero__orb--3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, #B388FF 0%, transparent 70%);
  top: 40%; left: 35%;
  animation-delay: -12s;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.15); }
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 80%);
}
.hero__inner { position: relative; z-index: 1; }

.hero__live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__live strong { font-weight: 700; color: #fff; }
.hero__live-stars {
  display: inline-flex; gap: 1px;
  color: #F5B400;
}
.hero__live-stars svg { width: 12px; height: 12px; }

.hero__lead em { font-style: normal; font-weight: 600; color: #fff; }

.hero__ctas {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.hero__play {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: #fff;
}
.hero__play-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.30);
  display: grid; place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.hero__play:hover .hero__play-icon { background: rgba(255, 255, 255, 0.28); transform: scale(1.06); }

/* Variante "Parle-lui maintenant" — vrai bouton secondaire qui pointe vers l'iPhone */
.hero__play--demo {
  position: relative;
  padding: 12px 22px 12px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.hero__play--demo:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 24px rgba(20, 10, 60, 0.35);
}
.hero__play-icon--mic {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E5FF 100%);
  color: #2B5BF5;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 16px rgba(43, 91, 245, 0.35);
  animation: hero-mic-pulse 2.4s ease-in-out infinite;
}
.hero__play--demo:hover .hero__play-icon--mic { transform: scale(1.1); animation: none; }
@keyframes hero-mic-pulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(43, 91, 245, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50%      { box-shadow: 0 6px 16px rgba(43, 91, 245, 0.45), 0 0 0 8px rgba(255, 255, 255, 0); }
}

.hero__proof {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__live-counter {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 13px 7px 11px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__live-counter strong { color: #fff; font-weight: 700; }
.hero__live-counter em {
  font-style: normal;
  color: #B5FFD8;
  font-weight: 600;
}
.hero__live-counter-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2EE08A;
  box-shadow: 0 0 0 0 rgba(46, 224, 138, 0.6);
  animation: ring-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
.hero__proof-bar {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.hero__proof-stat { display: flex; flex-direction: column; gap: 2px; }
.hero__proof-stat strong {
  font-size: 22px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.hero__proof-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
  max-width: 200px;
}
.hero__proof-sep {
  width: 1px; height: 36px;
  background: rgba(255, 255, 255, 0.18);
}

/* ============ PHONE ============ */
.phone {
  position: relative;
  width: clamp(280px, 24vw, 360px);
  aspect-ratio: 320 / 660;
  filter: drop-shadow(0 50px 100px rgba(20, 10, 60, 0.55));
}
.phone__shell {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1F1F2A 0%, #0A0A12 100%);
  border-radius: 52px;
  padding: 9px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.14),
    inset 0 0 0 2.5px rgba(0,0,0,0.7),
    inset 0 0 0 4px rgba(255,255,255,0.06);
}
.phone__island {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 6;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(180, 150, 255, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(120, 160, 255, 0.55) 0%, transparent 65%),
    linear-gradient(180deg, #FBF9FF 0%, #EEEAFB 50%, #E2DBF6 100%);
  border-radius: 44px;
  padding: 56px 18px 22px;
  display: flex; flex-direction: column;
  overflow: hidden;
  color: #1A1530;
}
.phone__status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600;
  color: #1A1530;
  padding: 0 8px;
  margin-bottom: 8px;
}
.phone__status-right { display: inline-flex; align-items: center; gap: 4px; }
.phone__home {
  width: 110px; height: 4px;
  border-radius: 2px;
  background: rgba(26, 21, 48, 0.45);
  margin: auto auto 0;
}

.callui {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-top: 14px;
  position: relative;
}
.callui__head {
  display: flex; flex-direction: column; align-items: center;
}
.callui__brand {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em;
  color: #1A1530;
}
.callui__tag {
  font-size: 11px;
  color: rgba(26, 21, 48, 0.55);
  margin-top: 4px;
  transition: color 0.3s;
}
.callui__orb-wrap {
  position: relative;
  flex: 1;
  display: grid; place-items: center;
  width: 100%;
  margin: 8px 0;
}
.callui__nudge {
  position: absolute;
  top: 10px; left: 50%;
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #2B5BF5 0%, #6D3CF0 100%);
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: -0.005em;
  padding: 9px 14px;
  border: 0;
  border-radius: 9999px;
  box-shadow:
    0 10px 24px rgba(43, 91, 245, 0.45),
    0 3px 8px rgba(45, 75, 224, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  cursor: pointer;
  animation: nudge-pulse 2.5s ease-in-out infinite;
  z-index: 5;
  transition: transform 0.2s, box-shadow 0.2s;
}
.callui__nudge:hover {
  transform: translateX(-50%) scale(1.06);
  box-shadow:
    0 14px 30px rgba(43, 91, 245, 0.55),
    0 4px 10px rgba(45, 75, 224, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.callui__nudge:active { transform: translateX(-50%) scale(0.98); }
.callui__nudge::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: #6D3CF0;
}
.callui__nudge-finger {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  animation: nudge-finger-tap 1.6s ease-in-out infinite;
}
@keyframes nudge-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0)    scale(1); }
  50%      { transform: translateX(-50%) translateY(-3px) scale(1.05); }
}
@keyframes nudge-finger-tap {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(-2px); }
  60%      { transform: translateY(1px); }
}
.callui__cta {
  margin-top: auto;
  margin-bottom: 14px;
  align-self: center;
  font-size: 11.5px;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #2B5BF5 0%, #6D3CF0 100%);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow:
    0 10px 22px rgba(43, 91, 245, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
}
.callui__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(43, 91, 245, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.callui__cta:active { transform: translateY(0); }

/* ============ HANGUP BUTTON ============ */
.callui__hangup {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: inline-flex; align-items: center; gap: 7px;
  background: #E5342B;
  color: #fff;
  font-size: 11.5px; font-weight: 700;
  padding: 9px 16px 9px 12px;
  border: 0; border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(229, 52, 43, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.15s;
  z-index: 6;
}
.callui__hangup svg {
  transform: rotate(135deg);
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}
.callui__hangup:hover { background: #C92A22; }

/* ============ WAVEFORM (24 bars autour de l'orb) ============ */
.orb__wave {
  position: absolute;
  inset: -12px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 4;
}
.orb__wave > span {
  --amp: 0.15;
  position: absolute;
  width: 3px;
  height: calc(8px + var(--amp) * 22px);
  background: linear-gradient(180deg, #6D8BFF 0%, #B775FF 100%);
  border-radius: 2px;
  transform-origin: center;
  transition: height 0.08s ease-out;
  box-shadow: 0 0 6px rgba(140, 120, 255, 0.6);
}
/* 24 bars distributed around a circle */
.orb__wave > span:nth-child(1)  { transform: rotate(0deg)    translateY(-58%); }
.orb__wave > span:nth-child(2)  { transform: rotate(15deg)   translateY(-58%); }
.orb__wave > span:nth-child(3)  { transform: rotate(30deg)   translateY(-58%); }
.orb__wave > span:nth-child(4)  { transform: rotate(45deg)   translateY(-58%); }
.orb__wave > span:nth-child(5)  { transform: rotate(60deg)   translateY(-58%); }
.orb__wave > span:nth-child(6)  { transform: rotate(75deg)   translateY(-58%); }
.orb__wave > span:nth-child(7)  { transform: rotate(90deg)   translateY(-58%); }
.orb__wave > span:nth-child(8)  { transform: rotate(105deg)  translateY(-58%); }
.orb__wave > span:nth-child(9)  { transform: rotate(120deg)  translateY(-58%); }
.orb__wave > span:nth-child(10) { transform: rotate(135deg)  translateY(-58%); }
.orb__wave > span:nth-child(11) { transform: rotate(150deg)  translateY(-58%); }
.orb__wave > span:nth-child(12) { transform: rotate(165deg)  translateY(-58%); }
.orb__wave > span:nth-child(13) { transform: rotate(180deg)  translateY(-58%); }
.orb__wave > span:nth-child(14) { transform: rotate(195deg)  translateY(-58%); }
.orb__wave > span:nth-child(15) { transform: rotate(210deg)  translateY(-58%); }
.orb__wave > span:nth-child(16) { transform: rotate(225deg)  translateY(-58%); }
.orb__wave > span:nth-child(17) { transform: rotate(240deg)  translateY(-58%); }
.orb__wave > span:nth-child(18) { transform: rotate(255deg)  translateY(-58%); }
.orb__wave > span:nth-child(19) { transform: rotate(270deg)  translateY(-58%); }
.orb__wave > span:nth-child(20) { transform: rotate(285deg)  translateY(-58%); }
.orb__wave > span:nth-child(21) { transform: rotate(300deg)  translateY(-58%); }
.orb__wave > span:nth-child(22) { transform: rotate(315deg)  translateY(-58%); }
.orb__wave > span:nth-child(23) { transform: rotate(330deg)  translateY(-58%); }
.orb__wave > span:nth-child(24) { transform: rotate(345deg)  translateY(-58%); }

/* ============ STATES ============ */
/* idle : pulsation périodique pour attirer l'œil */
.callui[data-state="idle"] .orb__sphere { animation: orb-breathe 3s ease-in-out infinite, orb-attention 5s ease-in-out infinite; }
@keyframes orb-attention {
  0%, 78%, 100% { box-shadow:
    0 30px 50px -10px rgba(60, 60, 200, 0.55),
    0 0 80px rgba(140, 110, 255, 0.55),
    inset 0 -20px 36px rgba(0,0,0,0.4),
    inset 0 8px 18px rgba(255,255,255,0.45); }
  85%, 92% { box-shadow:
    0 30px 50px -10px rgba(60, 60, 200, 0.7),
    0 0 120px rgba(140, 110, 255, 0.85),
    0 0 0 14px rgba(140, 110, 255, 0.18),
    inset 0 -20px 36px rgba(0,0,0,0.4),
    inset 0 8px 18px rgba(255,255,255,0.55); }
}

/* connecting : nudge disparaît, status change */
.callui[data-state="onboarding"] .callui__nudge,
.callui[data-state="connecting"] .callui__nudge,
.callui[data-state="active"]     .callui__nudge,
.callui[data-state="error"]      .callui__nudge,
.callui[data-state="post"]       .callui__nudge,
.callui[data-state="ended"]      .callui__nudge { opacity: 0; pointer-events: none; animation: none; }

/* active : waveform visible, hangup visible, cta caché */
.callui[data-state="active"] .orb__wave { opacity: 1; }
.callui[data-state="active"] .callui__hangup {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.callui[data-state="active"]     .callui__cta,
.callui[data-state="connecting"] .callui__cta,
.callui[data-state="ended"]      .callui__cta { opacity: 0; pointer-events: none; }
.callui[data-state="active"] .callui__tag { color: #2A6BFF; }

/* connecting state */
.callui[data-state="connecting"] .orb__sphere { animation: orb-breathe 0.8s ease-in-out infinite; }

/* ============ SUBSTATES (active : joining → greeting → live) ============ */
/* Tag/status text plus prononcé pendant connecting + joining */
.callui[data-state="connecting"] .callui__tag,
.callui[data-substate="joining"] .callui__tag,
.callui[data-substate="greeting"] .callui__tag {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 13px;
}
/* Dots animés "..." après le status pendant les phases d'attente */
.callui[data-state="connecting"] .callui__tag::after,
.callui[data-substate="joining"] .callui__tag::after {
  content: "";
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: currentColor;
  margin-left: 6px;
  animation: status-dot 1.2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes status-dot {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Connecting : rings plus rapides + énergiques pour signaler "ça travaille" */
.callui[data-state="connecting"] .orb__ring,
.callui[data-substate="joining"] .orb__ring {
  animation-duration: 1.6s;
}

/* Joining : orb continue de pulser fort */
.callui[data-substate="joining"] .orb__sphere {
  animation: orb-breathe 0.9s ease-in-out infinite;
}

/* Greeting : AUR'IA parle — la waveform driven by setAmplitude prend le relai.
   On annule l'animation auto pour ne pas créer de conflit avec l'amplitude réelle. */
.callui[data-substate="greeting"] .orb__sphere {
  animation: orb-breathe 2.4s ease-in-out infinite;
}
.callui[data-substate="greeting"] .orb__wave { opacity: 0.55; }

/* Live : c'est à toi — halo vert phosphorescent + REC dot + status renforcé */
.callui[data-substate="live"] .orb__sphere {
  animation: orb-live 2s ease-in-out infinite;
}
.callui[data-substate="live"] .orb__ring {
  animation-duration: 2.4s;
  border-color: rgba(91, 255, 158, 0.45);
}
@keyframes orb-live {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 30px 50px -10px rgba(60, 60, 200, 0.55),
      0 0 60px rgba(91, 255, 158, 0.35),
      0 0 0 0 rgba(91, 255, 158, 0.4),
      inset 0 -20px 36px rgba(0,0,0,0.4),
      inset 0 8px 18px rgba(255,255,255,0.45);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 30px 50px -10px rgba(60, 60, 200, 0.6),
      0 0 100px rgba(91, 255, 158, 0.55),
      0 0 0 14px rgba(91, 255, 158, 0.18),
      inset 0 -20px 36px rgba(0,0,0,0.4),
      inset 0 8px 18px rgba(255,255,255,0.5);
  }
}
.callui[data-substate="live"] .callui__tag {
  color: #5BFF9E;
  text-shadow: 0 0 10px rgba(91, 255, 158, 0.4);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 14px;
  animation: callui-tag-live-in 0.4s ease-out 1;
}
@keyframes callui-tag-live-in {
  0%   { transform: scale(0.92); opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); }
}
.callui[data-substate="live"] .callui__tag::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5BFF9E;
  box-shadow: 0 0 8px #5BFF9E, 0 0 16px rgba(91, 255, 158, 0.6);
  margin-right: 8px;
  animation: rec-blink 1.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes rec-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .callui[data-substate="live"] .orb__sphere { animation: none; }
  .callui[data-state="connecting"] .callui__tag::after,
  .callui[data-substate="joining"] .callui__tag::after { animation: none; }
  .callui[data-substate="live"] .callui__tag::before { animation: none; }
}

/* ============ OVERLAYS ============ */
.callui__overlay {
  position: absolute;
  inset: 56px 18px 22px;
  background: rgba(251, 249, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 22px 18px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  z-index: 10;
  opacity: 0; pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.25s, transform 0.25s;
}
.callui[data-state="onboarding"] [data-role="onboarding"],
.callui[data-state="error"] [data-role="error"],
.callui[data-state="post"] [data-role="post"] {
  opacity: 1; pointer-events: auto; transform: scale(1);
}
.callui__overlay-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2B5BF5 0%, #6D3CF0 100%);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 10px 22px rgba(45, 75, 224, 0.35);
}
.callui__overlay-icon--err {
  background: linear-gradient(135deg, #E5342B 0%, #B92218 100%);
  box-shadow: 0 10px 22px rgba(229, 52, 43, 0.35);
}
.callui__overlay-title {
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #1A1530;
  margin-bottom: 6px;
}
.callui__overlay-title em {
  font-style: normal;
  background: linear-gradient(90deg, #2B5BF5 0%, #6D3CF0 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.callui__overlay-sub {
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(26, 21, 48, 0.65);
  margin-bottom: 14px;
  max-width: 220px;
}
.callui__overlay-tips {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  align-self: stretch;
}
.callui__overlay-tips li {
  font-size: 11px;
  color: rgba(26, 21, 48, 0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.callui__overlay-tips li::before {
  content: "";
  position: absolute;
  left: 4px; top: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2B5BF5 0%, #6D3CF0 100%);
}
.callui__overlay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2B5BF5 0%, #6D3CF0 100%);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 11px 16px;
  border: 0; border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(45, 75, 224, 0.4);
  margin-top: auto;
  letter-spacing: 0.01em;
  transition: transform 0.15s, box-shadow 0.15s;
}
.callui__overlay-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(45, 75, 224, 0.5);
}
.callui__overlay-btn--ghost {
  background: #1A1530;
  box-shadow: 0 8px 18px rgba(26, 21, 48, 0.3);
}

/* ============ POST-DEMO FORM ============ */
.callui__post-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 700;
  color: #1B7F4F;
  background: rgba(27, 127, 79, 0.12);
  padding: 4px 9px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.callui__form {
  display: flex; flex-direction: column; gap: 8px;
  align-self: stretch;
  margin-top: 4px;
}
.callui__field {
  display: flex; flex-direction: column; gap: 3px;
  text-align: left;
}
.callui__field span {
  font-size: 9.5px; font-weight: 600;
  color: rgba(26, 21, 48, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.callui__field input,
.callui__field select {
  font-size: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(26, 21, 48, 0.15);
  border-radius: 10px;
  background: #fff;
  color: #1A1530;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.callui__field input:focus,
.callui__field select:focus {
  border-color: #2B5BF5;
  box-shadow: 0 0 0 3px rgba(43, 91, 245, 0.15);
}
.callui__form .callui__overlay-btn {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.callui__form-trust {
  font-size: 9.5px;
  color: rgba(26, 21, 48, 0.5);
  text-align: center;
  margin-top: 4px;
}

/* hover: nudge l'orb un peu */
.orb { transition: transform 0.2s; }
.orb:hover { transform: translateY(-2px); }

/* ============ ORB — sphère vocale dans le phone ============ */
.orb {
  position: relative;
  width: 70%;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  padding: 0;
  margin: auto 0;
}
.orb__sphere {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 72% 82%, rgba(190, 110, 255, 0.7) 0%, transparent 48%),
    radial-gradient(circle at 50% 50%, #7A92FF 0%, #4863F0 30%, #2638C8 65%, #0E1F8A 100%);
  box-shadow:
    0 30px 50px -10px rgba(60, 60, 200, 0.55),
    0 0 80px rgba(140, 110, 255, 0.55),
    inset 0 -20px 36px rgba(0,0,0,0.4),
    inset 0 8px 18px rgba(255,255,255,0.45);
  transition: transform 0.25s ease;
  z-index: 3;
  animation: orb-breathe 3s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.orb:hover .orb__sphere { transform: scale(1.08); }
.orb:active .orb__sphere { transform: scale(0.98); }
.orb__shine {
  position: absolute;
  top: 12%; left: 18%;
  width: 38%; height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.55) 0%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}
.orb__ring {
  position: absolute; inset: 0; margin: auto;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(90, 80, 220, 0.45);
  pointer-events: none;
  animation: orb-ring 3s ease-out infinite;
  opacity: 0;
}
.orb__ring--2 { animation-delay: 1s; }
.orb__ring--3 { animation-delay: 2s; }
@keyframes orb-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0;   }
}
.hero__chip {
  position: absolute;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  font-size: 12px; font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(7, 22, 70, 0.28);
  white-space: nowrap;
  animation: chip-float 4s ease-in-out infinite;
}
.hero__chip--ring {
  top: 6%; left: -14%;
  color: #0E3FC4;
}
.hero__chip--sms {
  bottom: 18%; right: -12%;
  color: #1B7F4F;
  animation-delay: 1.6s;
}
.hero__chip-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  animation: ring-pulse 1.6s ease-out infinite;
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 1100px) {
  .hero__chip { display: none; }
}

/* Marquee bottom */
.hero__marquee {
  position: relative; z-index: 1;
  margin-top: clamp(48px, 6vw, 80px);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero__marquee-track {
  display: inline-flex; gap: 22px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 22px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero__title {
  color: var(--white);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: clamp(20px, 2.5vw, 30px);
}
.hero__hl {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  padding: 0 14px;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero__lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: clamp(28px, 3vw, 40px);
  font-weight: 400;
}
.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 3vw, 36px);
}
.hero__pills {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero__pills li {
  font-size: 13px; font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
}

/* App mobile screen — DEMO mic */
.app--demo {
  display: flex; flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(22, 82, 240, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F1FF 100%);
}
.app__demo-head { margin-bottom: 18px; }
.app__demo-eyebrow {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1652F0;
  background: rgba(22, 82, 240, 0.10);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.app__demo-title {
  font-size: 19px; font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0B0B12;
  margin-bottom: 6px;
}
.app__demo-sub {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(11, 11, 18, 0.6);
  max-width: 220px;
  margin: 0 auto;
}

.mic {
  position: relative;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  margin: 6px auto 18px;
}
.mic::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(22, 82, 240, 0.35);
  animation: mic-orbit 10s linear infinite;
}
.mic::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6D3CF0;
  box-shadow: 0 0 12px #6D3CF0;
  top: -10px; left: 50%;
  transform-origin: 50% 80px;
  animation: mic-orbit 4s linear infinite;
}
@keyframes mic-orbit {
  to { transform: rotate(360deg); }
}
.mic__core {
  position: relative;
  width: 104px; height: 104px;
  border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.45) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, #5D85FF 0%, #1652F0 55%, #0A2EAA 100%);
  color: #fff;
  box-shadow:
    0 18px 44px rgba(22, 82, 240, 0.65),
    0 0 0 1px rgba(255,255,255,0.2),
    inset 0 -6px 14px rgba(0, 0, 0, 0.25),
    inset 0 4px 8px rgba(255, 255, 255, 0.45);
  transition: transform 0.18s ease;
  z-index: 2;
  animation: mic-breathe 2.4s ease-in-out infinite;
}
@keyframes mic-breathe {
  0%, 100% { box-shadow: 0 18px 44px rgba(22, 82, 240, 0.65), 0 0 0 1px rgba(255,255,255,0.2), inset 0 -6px 14px rgba(0,0,0,0.25), inset 0 4px 8px rgba(255,255,255,0.45); }
  50%      { box-shadow: 0 22px 56px rgba(22, 82, 240, 0.85), 0 0 0 2px rgba(255,255,255,0.25), inset 0 -6px 14px rgba(0,0,0,0.25), inset 0 4px 8px rgba(255,255,255,0.45); }
}
.mic:hover .mic__core { transform: scale(1.06); }
.mic:active .mic__core { transform: scale(0.96); }
.mic__halo {
  position: absolute;
  inset: 50%;
  width: 104px; height: 104px;
  margin: -52px 0 0 -52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 60, 240, 0.50) 0%, rgba(22, 82, 240, 0.30) 50%, rgba(22, 82, 240, 0) 80%);
  border: 1.5px solid rgba(109, 60, 240, 0.4);
  animation: mic-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.mic__halo--2 { animation-delay: 0.8s; }
.mic__halo--3 { animation-delay: 1.6s; }
@keyframes mic-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  70% { transform: scale(1.6); opacity: 0; }  100% { transform: scale(1.6); opacity: 0; }
}

.mic__waves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 32px;
  margin-top: 4px;
  padding: 0 18px;
}
.mic__waves i {
  display: block;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2B5BF5 0%, #6D3CF0 100%);
  animation: mic-wave 1.1s ease-in-out infinite;
  opacity: 0.85;
}
.mic__waves i:nth-child(odd)  { animation-delay: 0.05s; }
.mic__waves i:nth-child(3n)   { animation-delay: 0.15s; height: 14px; }
.mic__waves i:nth-child(4n)   { animation-delay: 0.25s; height: 22px; }
.mic__waves i:nth-child(5n)   { animation-delay: 0.35s; height: 10px; }
.mic__waves i:nth-child(7n)   { animation-delay: 0.45s; height: 26px; }
@keyframes mic-wave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1;   }
}

.mic__cta {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding-top: 6px;
}
.mic__cta strong {
  font-size: 13px; font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #0B0B12;
  letter-spacing: -0.01em;
}
.mic__cta-hint {
  font-size: 10px;
  color: rgba(11, 11, 18, 0.5);
  margin-top: 2px;
}
.mic__cta-arrow {
  display: inline-flex;
  color: #1652F0;
  margin-bottom: 4px;
  animation: arrow-bounce 1.4s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(6px); opacity: 1; }
}

.app__home-bar {
  width: 110px; height: 4px;
  border-radius: 2px;
  background: #0B0B12;
  margin: 8px auto;
}
.app__tabbar { padding: 0; border-top: 0; margin: auto -12px -10px; background: transparent; display: block; }
.app__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px 12px;
}
.app__title {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 18px; font-weight: 700;
  color: #0B0B12;
  letter-spacing: -0.02em;
}
.app__streak {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 13px; font-weight: 700;
  color: #1652F0;
}
.app__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 0 6px 14px;
  border-bottom: 1px solid rgba(11, 11, 18, 0.06);
  margin-bottom: 12px;
}
.app__week > div {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.app__week span {
  font-size: 9px; font-weight: 600;
  color: rgba(11, 11, 18, 0.5);
  letter-spacing: 0.04em;
}
.app__day {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(11, 11, 18, 0.18);
  display: grid; place-items: center;
}
.app__day--done {
  background: #1652F0;
  border-color: #1652F0;
  color: #fff;
}
.app__day--today {
  outline: 1.5px solid #1652F0;
  outline-offset: 1.5px;
}
.app__metric {
  padding: 0 8px 10px;
  border-bottom: 1px solid rgba(11, 11, 18, 0.06);
  margin-bottom: 10px;
}
.app__metric-row strong {
  font-size: 11px; font-weight: 600;
  color: rgba(11, 11, 18, 0.6);
  letter-spacing: 0.02em;
}
.app__metric-big {
  display: flex; align-items: baseline; gap: 4px;
  margin: 4px 0 6px;
}
.app__metric-num {
  font-size: 22px; font-weight: 700;
  color: #0B0B12;
  letter-spacing: -0.025em;
}
.app__metric-cap {
  font-size: 11px;
  color: rgba(11, 11, 18, 0.55);
}
.app__metric-side {
  margin-left: auto;
  font-size: 10px; font-weight: 600;
  color: #1652F0;
}
.app__progress {
  height: 5px;
  background: rgba(22, 82, 240, 0.14);
  border-radius: 3px;
  overflow: hidden;
}
.app__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1652F0, #6D3CF0);
  border-radius: 3px;
}
.app__triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(11, 11, 18, 0.06);
  margin-bottom: 10px;
}
.app__triple-cell {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 7px 8px;
  display: flex; flex-direction: column; gap: 2px;
}
.app__triple-cap {
  font-size: 9px;
  color: rgba(11, 11, 18, 0.55);
  letter-spacing: 0.02em;
}
.app__triple-cell strong {
  font-size: 14px; font-weight: 700;
  color: #0B0B12;
}
.app__triple-cell strong span {
  font-size: 10px; font-weight: 500;
  color: rgba(11, 11, 18, 0.45);
}
.app__bar {
  height: 3px;
  background: rgba(11, 11, 18, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 3px;
}
.app__bar i { display: block; height: 100%; border-radius: 2px; }
.app__diary-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 8px 6px;
}
.app__diary-head strong {
  font-size: 13px; font-weight: 700;
  color: #0B0B12;
}
.app__diary-head span {
  font-size: 10px; color: #1652F0; font-weight: 600;
}
.app__diary-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px;
}
.app__diary-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.app__diary-text {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
}
.app__diary-text strong {
  font-size: 11px; font-weight: 600;
  color: #0B0B12;
}
.app__diary-text span {
  font-size: 9.5px;
  color: rgba(11, 11, 18, 0.55);
}
.app__log {
  font-size: 9.5px; font-weight: 700;
  background: rgba(22, 82, 240, 0.10);
  color: #1652F0;
  padding: 5px 10px;
  border-radius: 999px;
}
.app__tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 8px 4px 4px;
  border-top: 1px solid rgba(11, 11, 18, 0.06);
  margin: 4px -12px -18px;
  background: #fff;
}
.app__tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 8.5px; font-weight: 500;
  color: rgba(11, 11, 18, 0.45);
  position: relative;
}
.app__tab--active { color: #0B0B12; }
.app__tab--fab { position: relative; }
.app__fab {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #1652F0;
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 400;
  margin-top: -10px;
  box-shadow: 0 6px 14px rgba(22, 82, 240, 0.5);
  line-height: 1;
}
.hero__device {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  transition: filter 0.4s ease;
}
/* iPhone entier cliquable quand la démo est en idle */
.hero__device.is-clickable { cursor: pointer; }
.hero__device.is-clickable:hover .phone {
  filter:
    drop-shadow(0 60px 90px rgba(20, 10, 60, 0.55))
    drop-shadow(0 30px 40px rgba(20, 10, 60, 0.35))
    drop-shadow(-30px 20px 60px rgba(180, 140, 255, 0.55));
}
/* Flash quand on clique sur "Parle-lui maintenant →" */
.hero__device.is-flashing { animation: device-flash 1.2s ease-out 1; }
@keyframes device-flash {
  0%   { filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0)); transform: scale(1); }
  30%  { filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.85)); transform: scale(1.03); }
  100% { filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0)); transform: scale(1); }
}
.phone {
  position: relative;
  width: clamp(260px, 22vw, 340px);
  aspect-ratio: 320 / 660;
  filter:
    drop-shadow(0 60px 90px rgba(20, 10, 60, 0.55))
    drop-shadow(0 30px 40px rgba(20, 10, 60, 0.35))
    drop-shadow(-30px 20px 50px rgba(140, 90, 255, 0.28));
  animation: phone-tilt 8s ease-in-out infinite alternate;
  transform-style: preserve-3d;
}
@keyframes phone-tilt {
  from { transform: perspective(1200px) rotateY(-12deg) rotateX(6deg) rotateZ(-1deg); }
  to   { transform: perspective(1200px) rotateY(-7deg) rotateX(3deg) rotateZ(0.5deg); }
}
.phone__side {
  position: absolute;
  width: 4px;
  background: linear-gradient(90deg, #1A1A22 0%, #5C5C70 35%, #8A8AA0 50%, #5C5C70 65%, #1A1A22 100%);
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.25);
}
.phone__side--top { top: 110px; left: -3px; height: 38px; }
.phone__side--top::before, .phone__side--top::after {
  content: ""; position: absolute; left: 0;
  width: 4px; height: 60px;
  background: inherit; border-radius: inherit;
  box-shadow: inherit;
}
.phone__side--top::before { top: 60px; }
.phone__side--top::after { top: 130px; height: 60px; }
.phone__side--bottom { top: 130px; right: -3px; height: 80px; }
.phone__shell {
  position: relative;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 18%, transparent 82%, rgba(255,255,255,0.18) 100%),
    linear-gradient(160deg, #3A3A48 0%, #1A1A24 50%, #0A0A12 100%);
  border-radius: 50px;
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 0 0 2.5px rgba(0, 0, 0, 0.7),
    inset 0 0 0 4px rgba(255, 255, 255, 0.10),
    inset 0 0 0 6px rgba(0, 0, 0, 0.45),
    /* ridge-light along the top-right edge to sell the tilt */
    20px 30px 40px -10px rgba(0, 0, 0, 0.35),
    -2px 0 0 rgba(255,255,255,0.12);
}
.phone__shell::before {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
  z-index: 4;
}
.phone__island {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #000;
  border-radius: 999px;
  z-index: 6;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), inset 0 0 6px rgba(0,0,0,0.8);
}
.phone__island::before {
  content: "";
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #15151D;
  box-shadow: inset 0 0 1px rgba(255,255,255,0.15);
}
.phone__island::after {
  content: "";
  position: absolute;
  right: 12px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5478FF 0%, #1A2EAA 50%, #050518 100%);
  box-shadow: 0 0 6px rgba(84, 120, 255, 0.5), inset 0 0 1px rgba(255,255,255,0.3);
}
.phone__app-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 6px 10px;
}
.phone__app-id {
  display: flex; align-items: center; gap: 9px;
  min-width: 0;
}
.phone__app-glyph {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2B5BF5 0%, #6D3CF0 100%);
  color: #fff;
  font-size: 13px; font-weight: 700;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(45, 75, 224, 0.4);
}
.phone__app-id strong {
  display: block;
  font-size: 12.5px; font-weight: 600;
  color: #0B0B12;
  letter-spacing: -0.01em;
}
.phone__app-id span {
  display: block;
  font-size: 10px;
  color: rgba(11, 11, 18, 0.5);
  margin-top: 1px;
}
.phone__app-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF3B30;
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5);
  animation: ring-pulse 1.6s ease-out infinite;
}

.phone__card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(11, 11, 40, 0.08);
}
.phone__card h4 {
  font-size: 13.5px; font-weight: 600;
  color: #0B0B12;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.phone__card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}
.phone__card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  color: #FF3B30;
  background: rgba(255, 59, 48, 0.10);
  padding: 4px 9px;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}
.phone__card-tag--mute {
  color: rgba(11, 11, 18, 0.55);
  background: rgba(11, 11, 18, 0.06);
}
.phone__card-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF3B30;
  animation: ring-pulse 1.6s ease-out infinite;
}
.phone__card-prio {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px; font-weight: 700;
  color: #D49100;
  background: rgba(245, 180, 0, 0.18);
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.12em;
}
.phone__card-tel {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(11, 11, 18, 0.6);
  margin-bottom: 6px;
}
.phone__card-msg {
  font-size: 11.5px;
  line-height: 1.45;
  color: #1F2937;
}
.phone__card-actions {
  display: flex; gap: 6px;
  margin-top: 10px;
}
.phone__card-btn {
  flex: 1;
  font-size: 11px; font-weight: 600;
  padding: 8px 10px;
  border-radius: 9999px;
  background: rgba(11, 11, 18, 0.05);
  color: #0B0B12;
  transition: background 0.15s;
}
.phone__card-btn:hover { background: rgba(11, 11, 18, 0.10); }
.phone__card-btn--primary {
  background: #1652F0;
  color: #fff;
}
.phone__card-btn--primary:hover { background: #0E3FC4; }
.phone__card--quiet { opacity: 0.78; }

.hero__floater {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 12px; font-weight: 600;
  padding: 9px 14px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(7, 22, 70, 0.22);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero__floater--ring {
  top: 8%; left: -10%;
  animation-delay: 0s;
}
.hero__floater--check {
  bottom: 14%; right: -8%;
  animation-delay: 1.5s;
  color: #1B7F4F;
}
.hero__floater-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF4E26;
  box-shadow: 0 0 0 0 rgba(255, 78, 38, 0.6);
  animation: ring-pulse 1.6s ease-out infinite;
}
@keyframes ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 78, 38, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255, 78, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 78, 38, 0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 1024px) {
  .hero__floater { display: none; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: left; }
  .hero__device { order: 2; }
  .hero__copy { order: 1; max-width: none; }
  .phone { margin: 0 auto; }
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.trust__lead {
  font-size: 14px; color: var(--ink-70); font-weight: 500;
  line-height: 1.4;
}
.trust__metric {
  display: flex; flex-direction: column; gap: 2px;
  padding-left: 18px;
  border-left: 1px solid var(--gray-200);
}
.trust__metric strong {
  font-size: 22px; font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
}
.trust__metric span {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__lead { grid-column: 1 / -1; }
  .trust__metric { padding-left: 0; border-left: 0; }
}

/* ============ REVIEWS (noir, étoiles dorées) ============ */
.reviews {
  background: var(--black);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(22, 82, 240, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(245, 180, 0, 0.12) 0%, transparent 60%);
}
.reviews .container { position: relative; z-index: 1; }

.reviews__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.reviews__stars {
  display: inline-flex; gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}
.reviews__stars svg {
  width: 28px; height: 28px;
  filter: drop-shadow(0 4px 12px rgba(245, 180, 0, 0.4));
}
.reviews__title {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.reviews__title em {
  font-style: normal;
  color: var(--gold);
}

.reviews__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .reviews__rail { grid-template-columns: 1fr; } }
.review {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.review:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 180, 0, 0.35);
}
.review__quote {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  flex: 1;
  text-wrap: pretty;
}
.review__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-style: normal;
}
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue) 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.review__author strong {
  display: block;
  color: var(--white);
  font-size: 14px; font-weight: 600;
}
.review__author span {
  display: block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

/* ============ HOW (1-2-3) ============ */
.how {
  background: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.how__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.how__head .section-lead { margin: 0 auto; }

.how__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 140px);
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  position: relative;
}
.step--media-right .step__copy { order: 1; }
.step--media-right .step__media { order: 2; }
.step--media-left .step__media { order: 1; }
.step--media-left .step__copy { order: 2; }

/* Décalage vertical doux pour créer le rythme MyFitnessPal */
.how__stack > .step:nth-child(2) {
  position: relative;
  background:
    radial-gradient(1200px 400px at 80% 20%, rgba(44, 91, 255, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(7, 22, 70, 0.08), transparent 60%),
    #EAF0FF;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(80px, 10vw, 130px) max(24px, calc(50vw - var(--container)/2 + 24px));
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  /* Fade haut + bas pour éviter la coupure dure avec les sections blanches */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.how__stack > .step:nth-child(3) { margin-top: clamp(24px, 4vw, 48px); }

/* Photos qui débordent légèrement vers les bords du viewport */
.how__stack > .step:nth-child(1) .step__media { margin-right: -40px; }
.how__stack > .step:nth-child(2) .step__media { margin-left: -40px; }
.how__stack > .step:nth-child(3) .step__media { margin-right: -40px; }

.step__copy {
  max-width: 460px;
  position: relative;
}

.step__num {
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 800;
  line-height: 0.85;
  color: var(--blue);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  font-feature-settings: "lnum";
}
.step__title {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
  text-wrap: balance;
}
  line-height: 0.85;
  color: var(--blue);
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}
.step__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.step__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-70);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.step__list {
  display: flex; flex-direction: column; gap: 10px;
}
.step__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.step__list svg {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.step__media { display: flex; justify-content: center; }

.step__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-tint) 0%, #DCE5FF 100%);
  box-shadow: 0 32px 70px rgba(7, 22, 70, 0.18);
}
.step__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.step__photo-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  background: rgba(11, 11, 18, 0.75);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.step__photo-tag svg {
  color: #FF4E26;
  animation: ring-pulse 1.6s ease-out infinite;
  border-radius: 50%;
}

/* Player audio — refonte cohérente avec la card SMS */
.player {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid rgba(7, 22, 70, 0.06);
  border-radius: 22px;
  padding: 24px 24px 20px;
  animation: phoneGlow 3.4s ease-in-out infinite, phoneFloat 5.2s ease-in-out infinite;
  will-change: box-shadow, transform;
}
.player__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.player__from {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue, #2C5BFF);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.player__when {
  font-size: 11px;
  color: rgba(7, 22, 70, 0.45);
  display: inline-flex; align-items: center; gap: 5px;
}
.player__when::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: livePing 1.6s ease-out infinite;
}
.player__lead {
  font-size: 15px;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.4;
}
.player__lead strong { font-weight: 600; color: var(--navy); }
.player__lines {
  list-style: none;
  margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.player__lines li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--navy);
  opacity: 0;
  animation: lineSlideIn 0.6s cubic-bezier(.22,.61,.36,1) forwards;
}
.player__lines li:nth-child(1) { animation-delay: 0.10s; }
.player__lines li:nth-child(2) { animation-delay: 0.22s; }
.player__lines li:nth-child(3) { animation-delay: 0.34s; }
.player__lines li > span { flex: 1; font-weight: 500; }

.player__playblock {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #F4F7FF, #E8EFFF);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.player__playblock::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: deadlineShimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.player__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue, #2C5BFF);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(44, 91, 255, 0.35);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  position: relative; z-index: 1;
}
.player__btn:hover {
  transform: scale(1.06);
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(44, 91, 255, 0.50);
}

.waveform {
  flex: 1;
  display: flex; align-items: center; gap: 3px;
  height: 36px;
  position: relative; z-index: 1;
}
.waveform .bar {
  flex: 1;
  background: var(--gray-200);
  border-radius: 2px;
  min-height: 4px;
  transition: background 0.15s ease;
}
.waveform .bar.played { background: var(--blue-soft); }
.waveform .bar.active { background: var(--blue); }

.player__quote {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
  padding: 12px 14px;
  background: rgba(7, 22, 70, 0.04);
  border-radius: 10px;
  margin: 0 0 14px;
  border-left: 3px solid var(--blue, #2C5BFF);
}
.player__metiers {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.metier-tab {
  font-size: 12px; font-weight: 500;
  color: var(--ink-70);
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.15s ease;
}
.metier-tab:hover { border-color: var(--blue); color: var(--blue); }
.metier-tab.is-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* SMS card — sobre, minimaliste, ultra lisible */
.step__phone {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
@keyframes phoneGlow {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(7, 22, 70, 0.04),
      0 24px 60px -12px rgba(7, 22, 70, 0.16),
      0 8px 20px -8px rgba(7, 22, 70, 0.08),
      0 0 0 1px rgba(44, 91, 255, 0.10),
      0 0 30px rgba(44, 91, 255, 0.18);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(7, 22, 70, 0.04),
      0 28px 70px -10px rgba(7, 22, 70, 0.20),
      0 12px 28px -8px rgba(7, 22, 70, 0.12),
      0 0 0 1px rgba(44, 91, 255, 0.28),
      0 0 60px rgba(44, 91, 255, 0.45);
  }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.step__phone-frame {
  background: var(--white);
  border-radius: 22px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(7, 22, 70, 0.06);
  animation: phoneGlow 3.4s ease-in-out infinite, phoneFloat 5.2s ease-in-out infinite;
  will-change: box-shadow, transform;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255, 0, 0, 0)); }
  50%      { transform: scale(1.15); filter: drop-shadow(0 0 8px rgba(255, 50, 50, 0.7)); }
}
.step__phone-lead {
  font-size: 15px;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.4;
}
.step__phone-lead::first-letter {
  /* le 🔴 emoji pulse */
  display: inline-block;
}
.step__phone-lead {
  position: relative;
}
.step__phone-lead strong {
  font-weight: 600;
  color: var(--navy);
}
.step__phone-top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.step__phone-from {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue, #2C5BFF);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.step__phone-when {
  font-size: 11px;
  color: rgba(7, 22, 70, 0.45);
  display: inline-flex; align-items: center; gap: 5px;
}
.step__phone-when::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: livePing 1.6s ease-out infinite;
}
@keyframes livePing {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.step__phone-lines {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.step__phone-lines li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--navy);
  opacity: 0;
  animation: lineSlideIn 0.6s cubic-bezier(.22,.61,.36,1) forwards;
}
.step__phone-lines li:nth-child(1) { animation-delay: 0.10s; }
.step__phone-lines li:nth-child(2) { animation-delay: 0.22s; }
.step__phone-lines li:nth-child(3) { animation-delay: 0.34s; }
.step__phone-lines li:nth-child(4) { animation-delay: 0.46s; }
@keyframes lineSlideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step__phone-lines li > span {
  flex: 1;
  font-weight: 500;
}
.step__phone-deadline {
  margin-top: 16px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #F4F7FF, #E8EFFF);
  border-radius: 12px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}
.step__phone-deadline::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: deadlineShimmer 3s ease-in-out infinite;
}
@keyframes deadlineShimmer {
  0%   { left: -100%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}
.step__phone-deadline strong {
  color: var(--blue, #2C5BFF);
  font-weight: 700;
}
.step__phone-actions {
  display: flex; gap: 8px;
  margin-top: 18px;
}
.step__phone-cta {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(7, 22, 70, 0.05);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.step__phone-cta:hover {
  background: rgba(7, 22, 70, 0.09);
  transform: translateY(-1px);
}
.step__phone-cta--primary {
  background: var(--blue, #2C5BFF);
  color: #fff;
  box-shadow: 0 6px 18px rgba(44, 91, 255, 0.35);
}
.step__phone-cta--primary:hover {
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(44, 91, 255, 0.50);
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .step { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .how__stack { gap: 60px; }
  .step--media-right .step__copy,
  .step--media-left .step__copy { order: 2; }
  .step--media-right .step__media,
  .step--media-left .step__media { order: 1; }
  .step__copy { max-width: none; padding: 0; background: transparent; }
  /* Reset des chevauchements en mobile */
  .how__stack > .step:nth-child(1) .step__media,
  .how__stack > .step:nth-child(2) .step__media,
  .how__stack > .step:nth-child(3) .step__media {
    margin: 0;
    transform: none;
  }
}

/* ============ WHY ============ */
.why {
  background: var(--gray-50);
  padding: clamp(72px, 10vw, 120px) 0;
}
.why__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why__grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-glow);
  box-shadow: 0 18px 40px rgba(22, 82, 240, 0.10);
}
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-deep);
  display: grid; place-items: center;
}
.why-card h3 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}
.why-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-70);
}

/* ============ METIERS ============ */
.metiers {
  background: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.metiers__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.metiers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .metiers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .metiers__grid { grid-template-columns: 1fr; } }

.metier {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.metier:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 18px 40px rgba(22, 82, 240, 0.10);
}
.metier__icon {
  font-size: 32px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--blue-tint);
  border-radius: 14px;
}
.metier h3 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.metier p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
  flex: 1;
}
.metier__tag {
  align-self: flex-start;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(22, 82, 240, 0.10);
  color: var(--blue-deep);
  padding: 4px 10px;
  border-radius: 4px;
}
.metier--soon {
  background: linear-gradient(135deg, var(--blue-tint) 0%, var(--white) 100%);
  border-style: dashed;
  border-color: var(--blue-glow);
}
.metier--soon .metier__icon { background: var(--white); }
.metier--soon .metier__tag {
  background: rgba(11, 11, 18, 0.06);
  color: var(--muted);
}

/* ============ PRICING ============ */
.pricing {
  background: var(--gray-50);
  padding: clamp(72px, 10vw, 120px) 0;
}
.pricing__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.pricing__head .section-lead { margin: 0 auto; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.price {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price:hover {
  transform: translateY(-3px);
  border-color: var(--blue-glow);
  box-shadow: 0 22px 48px rgba(22, 82, 240, 0.10);
}
.price__badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(245, 180, 0, 0.36);
}
.price__name {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.price__amount {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.price__amount strong {
  font-size: 56px; font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.price__amount span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.price__minutes {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--blue-deep);
  background: var(--blue-tint);
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 500;
}
.price__target {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.55;
  margin-bottom: 22px;
  min-height: 60px;
}
.price__list {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.price__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.price__list svg {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}
.price__cta {
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  padding: 14px 24px;
}

.price--featured {
  background: var(--black);
  border-color: var(--blue);
  transform: translateY(-8px);
  box-shadow: 0 32px 60px rgba(22, 82, 240, 0.32);
}
.price--featured:hover {
  transform: translateY(-11px);
  box-shadow: 0 40px 80px rgba(22, 82, 240, 0.40);
}
.price--featured .price__name { color: var(--blue-soft); }
.price--featured .price__amount strong { color: var(--white); }
.price--featured .price__amount span { color: rgba(255, 255, 255, 0.7); }
.price--featured .price__minutes {
  background: rgba(43, 91, 245, 0.20);
  color: var(--white);
}
.price--featured .price__target { color: rgba(255, 255, 255, 0.78); }
.price--featured .price__list li { color: rgba(255, 255, 255, 0.92); }
.price--featured .price__list svg { color: var(--blue-soft); }

/* Beta founder banner */
.beta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  color: var(--white);
  position: relative; overflow: hidden;
  box-shadow: 0 28px 56px rgba(22, 82, 240, 0.24);
}
.beta::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(245, 180, 0, 0.18) 0%, transparent 60%);
}
.beta__copy { position: relative; z-index: 1; max-width: 600px; }
.beta__pill {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
}
.beta__title {
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.beta__title em {
  font-style: normal;
  color: var(--gold);
}
.beta__copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}
.beta .btn { position: relative; z-index: 1; }

/* ============ FAQ ============ */
.faq {
  background: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.faq__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--blue-glow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--navy);
  position: relative;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; font-weight: 400;
  color: var(--blue);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--blue); }
.faq-item__a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--ink-70);
  line-height: 1.65;
}

/* ============ CTA FINAL ============ */
.cta {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--black) 100%);
  color: var(--white);
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 255, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(245, 180, 0, 0.16) 0%, transparent 60%);
}
.cta__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta__title {
  color: var(--white);
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta__title em {
  font-style: normal;
  color: var(--gold);
}
.cta__lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 36px;
}
.cta__buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.cta__sig {
  margin-top: 36px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer__brand p {
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.55;
  margin: 14px 0 16px;
  max-width: 280px;
}
.footer__col h5 {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer__col ul {
  display: flex; flex-direction: column; gap: 8px;
}
.footer__col a, .footer__col li {
  font-size: 13.5px;
  color: var(--ink-70);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--blue); }
.footer__legal {
  border-top: 1px solid var(--gray-200);
  margin-top: 40px; padding-top: 20px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ MOBILE TWEAKS ============ */
@media (max-width: 760px) {
  /* === HERO === */
  .hero { padding-top: 96px; padding-bottom: 32px; }
  .hero__inner {
    gap: 36px;
    padding-left: 4px; padding-right: 4px;
  }
  .hero__copy { display: flex; flex-direction: column; }

  /* Title : tighter, punchy */
  .hero__title {
    font-size: clamp(44px, 12.5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
  }
  .hero__hl { padding: 0 10px; border-radius: 6px; }

  /* Lead : un peu plus petit, max-width pour lisibilité */
  .hero__lead {
    font-size: 16.5px;
    line-height: 1.45;
    margin-bottom: 24px;
    max-width: 36ch;
  }

  /* Badge live : compacter le texte qui peut wrap */
  .hero__live {
    font-size: 11.5px;
    padding: 6px 12px 6px 10px;
    margin-bottom: 22px;
    line-height: 1.3;
    flex-wrap: wrap;
  }
  .hero__live-stars svg { width: 11px; height: 11px; }

  /* CTAs : full-width stack */
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero__ctas > * { width: 100%; justify-content: center; }

  /* Phone : un poil plus petit + ombre tilt désactivée pour clarté */
  .phone {
    width: clamp(240px, 78vw, 300px);
    margin: 0 auto;
  }
  /* Sur mobile, on garde le phone droit pour ne pas bouffer l'espace */
  .phone, .hero__device { transform: none !important; animation: none !important; }
  .hero__device { order: 2; }
  .hero__copy { order: 1; }

  /* Chips flottants désactivés sur mobile (déjà off à 1100px) — sécurité */
  .hero__chip { display: none; }
  .hero__floater { display: none; }

  /* Proof : compact + plein largeur */
  .hero__proof {
    margin-top: 24px;
    padding-top: 20px;
    gap: 12px;
  }
  .hero__live-counter {
    font-size: 12px;
    padding: 6px 11px 6px 9px;
  }
  .hero__proof-bar { gap: 14px; }
  .hero__proof-stat strong { font-size: 18px; }
  .hero__proof-stat span { font-size: 11.5px; max-width: 160px; }
  .hero__proof-sep { display: none; }

  /* Marquee plus discret */
  .hero__marquee { margin-top: 36px; padding: 10px 0; }
  .hero__marquee-track { font-size: 11px; gap: 14px; }

  /* === NAV === */
  .nav__inner { height: 64px; gap: 12px; }
  .brand--white { font-size: 22px; }
  .nav__account { width: 36px; height: 36px; }

  /* === RESTE === */
  .reviews__title { font-size: clamp(32px, 8vw, 48px); }
  .step__num { font-size: 96px; line-height: 0.85; }
  .step__title { font-size: 30px; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-3px); }
  .beta { padding: 28px; }
  .cta__title { font-size: clamp(36px, 9vw, 56px); }
}

/* === Très petit (iPhone SE etc.) === */
@media (max-width: 380px) {
  .hero__title { font-size: 40px; }
  .hero__lead { font-size: 15.5px; }
  .phone { width: min(72vw, 260px); }
}
