/* LiftUp — feuille de style partagée par l'accueil et la page coachs.
   Identité inchangée : fond sombre, accents bleu/violet, verre, cadres de
   téléphone. Les pages légales (cgu, confidentialité) gardent leur CSS propre. */

:root {
  --bg: #050507;
  --bg-soft: #0b0b0f;
  --surface: rgba(255,255,255,0.045);
  --surface-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.12);
  --border-strong: rgba(255,255,255,0.2);
  --text: #FFFFFF;
  /* Contrastes relevés : l'ancien texte « faint » (38 % de blanc) était sous
     le seuil AA pour du petit texte. */
  --text-dim: rgba(255,255,255,0.74);
  --text-faint: rgba(255,255,255,0.6);
  --accent: #5A7FFF;
  --accent-2: #8B5CF6;
  --accent-3: #39D98A;
  --tier-premium: #FFC857;
  --danger: #FF9DAF;
  --glass-blur: 20px;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.6);
  --focus: #9DB2FF;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .display {
  font-family: "Unbounded", "Inter", sans-serif;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  padding: 12px 18px; border-radius: 12px; background: #fff; color: #000; font-weight: 700;
}
.skip-link:focus { top: 12px; }

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

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

/* ---------------------------------- fond ambiant ---------------------------------- */
.ambient { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; will-change: transform; }
.glow--1 { width: 640px; height: 640px; top: -220px; left: -160px; background: radial-gradient(circle, var(--accent), transparent 70%); animation: drift1 26s ease-in-out infinite; }
.glow--2 { width: 560px; height: 560px; top: 8%; right: -200px; background: radial-gradient(circle, var(--accent-2), transparent 70%); animation: drift2 32s ease-in-out infinite; }
.glow--3 { width: 500px; height: 500px; bottom: -180px; left: 30%; background: radial-gradient(circle, var(--accent-3), transparent 72%); opacity: 0.18; animation: drift3 38s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px, 80px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-70px, 50px); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-40px) scale(1.08); } }
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shell { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 24px; overflow-x: clip; }
@media (max-width: 480px) { .shell { padding: 0 16px; } }

/* ---------------------------------- verre ---------------------------------- */
.glass {
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 1px 2px rgba(0,0,0,0.2);
}

/* ---------------------------------- boutons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 16px;
  font: 700 15.5px/1.2 "Inter", sans-serif; text-align: center;
  border: 1px solid transparent; cursor: pointer; color: #fff;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px -12px rgba(90,127,255,0.75), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn--secondary {
  background: var(--surface-strong); border-color: var(--border-strong);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn--secondary:hover { background: rgba(255,255,255,0.12); }
.btn--small { min-height: 44px; padding: 0 18px; font-size: 14px; border-radius: 999px; }

/* ---------------------------------- navigation ---------------------------------- */
nav.topbar { position: sticky; top: 0; z-index: 50; padding: 12px 0; }
nav.topbar::before {
  content: ""; position: absolute; inset: -24px 0 -8px 0;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent 100%);
  z-index: -1; pointer-events: none;
}
nav.topbar .inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { nav.topbar .inner { padding: 0 12px; } }
.navbar-pill {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 8px 8px 8px 18px; border-radius: 999px;
  background: rgba(8,8,11,0.6);
  backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 9px; min-height: 44px; }
.brand svg { width: 22px; height: 22px; }
.brand span { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; font-size: 14px; font-weight: 500; color: var(--text-dim); transition: color .2s; border-radius: 999px; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 720px) { .nav-links { display: none; } }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 32%; flex: none;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text-dim); transition: color .2s, background .2s, border-color .2s;
  overflow: hidden;
}
.social-btn:hover { color: #fff; background: rgba(255,255,255,0.1); border-color: var(--border-strong); }
.social-btn svg { width: 18px; height: 18px; }
.social-btn--instagram { color: #fff; border-color: transparent; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-btn--instagram:hover { filter: brightness(1.1); }

/* ---------------------------------- hero ---------------------------------- */
.hero { padding: 64px 0 40px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; padding: 28px 0 20px; text-align: center; gap: 44px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 8px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 22px;
}
.eyebrow .dot-wrap { width: 20px; height: 20px; border-radius: 50%; background: rgba(57,217,138,0.16); display: flex; align-items: center; justify-content: center; flex: none; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 8px var(--accent-3); }
@media (max-width: 480px) { .eyebrow { font-size: 12.5px; margin-bottom: 16px; } }

.hero h1 { font-size: clamp(30px, 5vw, 62px); font-weight: 800; line-height: 1.06; margin: 0 0 20px; }
.accent-word {
  background: linear-gradient(100deg, var(--accent), var(--accent-2) 60%, var(--accent));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.hero p.lede { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.6; color: var(--text-dim); max-width: 48ch; margin: 0 0 30px; }
@media (max-width: 940px) { .hero p.lede { margin-inline: auto; margin-bottom: 24px; } }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
@media (max-width: 940px) { .cta-row { justify-content: center; } }
@media (max-width: 520px) { .cta-row { flex-direction: column; } .cta-row .btn { width: 100%; padding: 0 14px; font-size: 15px; } }
.access-note { font-size: 13.5px; color: var(--text-faint); margin: 0; max-width: 52ch; }
@media (max-width: 940px) { .access-note { margin-inline: auto; } }

/* ---------------------------------- téléphone (vraies captures) ---------------------------------- */
.hero-mock { display: flex; justify-content: center; align-items: center; perspective: 1600px; }
.phone-stage {
  position: relative; transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(6deg); transition: transform .25s ease-out;
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.phone-glow { position: absolute; inset: -60px; background: radial-gradient(ellipse at 50% 40%, rgba(90,127,255,0.35), transparent 65%); filter: blur(20px); z-index: -1; }

/* Taille pilotée par --w : tout le cadre se dimensionne en proportion. */
.phone {
  --w: 240px;
  position: relative; width: var(--w); aspect-ratio: 300 / 620; flex: none;
  border-radius: calc(var(--w) * 0.153); padding: calc(var(--w) * 0.04);
  background: linear-gradient(155deg, #2a2a30, #0c0c0f 55%);
  box-shadow: 0 60px 100px -30px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.06) inset, 0 2px 0 rgba(255,255,255,0.08) inset;
}
.phone--hero { --w: min(290px, 70vw); }
@media (max-width: 520px) { .phone-glow { inset: -32px; } }
.phone--lg { --w: min(270px, 68vw); }
.phone--md { --w: min(220px, 62vw); }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: calc(var(--w) * 0.12); overflow: hidden; background: #08080a; }
.phone-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-sheen { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,0) 74%, rgba(255,255,255,0.05) 100%); }

/* ---------------------------------- sections ---------------------------------- */
.section { padding: 96px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }
.section-head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.kicker { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8FA7FF; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; margin: 0 0 14px; line-height: 1.15; }
.section-head p { font-size: 16.5px; color: var(--text-dim); margin: 0; }

/* révélation au scroll : uniquement si le JS est actif (sinon tout reste visible) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.js .reveal.in-view { opacity: 1; transform: none; }

/* ---------------------------------- démonstration en 3 étapes ---------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.step { padding: 28px 24px 30px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num { font-family: "Unbounded", sans-serif; font-size: 13px; font-weight: 700; color: #8FA7FF; margin-bottom: 16px; }
.step-visual { min-height: calc(min(220px, 62vw) * 620 / 300); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.step-illustration {
  width: 120px; height: 120px; border-radius: 34px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(90,127,255,0.22), rgba(139,92,246,0.22)); border: 1px solid var(--border-strong);
}
.step-illustration svg { width: 60px; height: 60px; }
.step h3 { font-family: "Inter", sans-serif; font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.step p { font-size: 14.5px; color: var(--text-dim); margin: 0; max-width: 32ch; }

/* ---------------------------------- trois bénéfices ---------------------------------- */
.benefits { display: flex; flex-direction: column; gap: 28px; }
.benefit { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 44px 48px; }
.benefit:nth-child(even) { grid-template-columns: 0.9fr 1.1fr; }
.benefit:nth-child(even) .benefit-visual { order: -1; }
.benefit > * { min-width: 0; }
@media (max-width: 860px) {
  .benefit, .benefit:nth-child(even) { grid-template-columns: minmax(0, 1fr); padding: 32px 22px; gap: 28px; text-align: center; }
  .benefit:nth-child(even) .benefit-visual { order: 0; }
}
.benefit-num { font-family: "Unbounded", sans-serif; font-size: 13px; font-weight: 700; color: #8FA7FF; margin-bottom: 12px; display: block; }
.benefit h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; margin: 0 0 12px; line-height: 1.2; }
.benefit p { font-size: 16px; color: var(--text-dim); margin: 0 0 16px; }
.benefit .usecase {
  font-size: 14.5px; color: var(--text); margin: 0; padding: 14px 16px; border-radius: 16px; text-align: left;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
}
.benefit .usecase strong { display: block; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-3); margin-bottom: 4px; }
.benefit-visual { display: flex; justify-content: center; align-items: center; gap: 0; position: relative; }
.benefit-visual .phone + .phone { margin-left: -70px; margin-top: 44px; }
@media (max-width: 560px) {
  .benefit-visual .phone--lg { --w: min(240px, 54vw); }
  .benefit-visual .phone--md { --w: min(180px, 42vw); }
  .benefit-visual .phone + .phone { margin-left: -48px; margin-top: 36px; }
}

/* ---------------------------------- « Et aussi » ---------------------------------- */
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; margin: 0; padding: 0; }
@media (max-width: 940px) { .more-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .more-grid { grid-template-columns: 1fr; } }
.more-item { padding: 22px 22px 24px; border-radius: 20px; }
.more-item h3 { font-family: "Inter", sans-serif; font-size: 16.5px; font-weight: 700; margin: 0 0 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.more-item p { font-size: 14px; color: var(--text-dim); margin: 0; }
.tag {
  display: inline-block; font: 700 10.5px/1 "Inter", sans-serif; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px; white-space: nowrap;
  background: rgba(57,217,138,0.14); color: #7BE8B0; border: 1px solid rgba(57,217,138,0.28);
}
.tag--soon { background: rgba(255,200,87,0.12); color: var(--tier-premium); border-color: rgba(255,200,87,0.3); }

/* ---------------------------------- offres (secondaire) ---------------------------------- */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 760px) { .offers { grid-template-columns: 1fr; max-width: 460px; } }
.offer { padding: 28px 26px; display: flex; flex-direction: column; }
.offer h3 { font-size: 16px; margin: 0 0 6px; }
.offer .offer-lead { font-size: 14.5px; color: var(--text-dim); margin: 0 0 16px; }
.offer--soon h3 { color: var(--tier-premium); }
.offer--now h3 { color: var(--accent-3); }
.offer .price { display: flex; align-items: baseline; gap: 6px; margin: 0 0 2px; }
.offer .price .num { font-family: "Unbounded", sans-serif; font-size: 28px; font-weight: 800; }
.offer .price .period { font-size: 13px; color: var(--text-dim); }
.offer .price-meta { font-size: 12.5px; color: var(--text-faint); margin: 0 0 16px; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 14px; color: var(--text-dim); display: flex; gap: 9px; line-height: 1.4; }
.check-list li svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--accent-3); }
.offers-note { font-size: 13px; color: var(--text-faint); text-align: center; margin: 24px auto 0; max-width: 60ch; }
.offers-note a, .inline-link { color: #A9BBFF; text-decoration: underline; text-underline-offset: 3px; }
.offers-note a:hover, .inline-link:hover { color: #fff; }

/* ---------------------------------- FAQ ---------------------------------- */
.faq-layout { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 56px; align-items: start; max-width: 1080px; margin: 0 auto; }
.faq-aside { position: sticky; top: 96px; }
.faq-aside h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; margin: 0 0 12px; line-height: 1.15; }
.faq-aside p { font-size: 15.5px; color: var(--text-dim); margin: 0; }
.faq-cats { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.faq-cats a {
  display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 14px; border-radius: 14px;
  font-size: 15px; font-weight: 600; color: var(--text-dim); transition: background .2s, color .2s;
}
.faq-cats a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.faq-cats svg { width: 20px; height: 20px; flex: none; color: #8FA7FF; }

.faq-main { min-width: 0; }
.faq-group { margin-bottom: 40px; scroll-margin-top: 96px; }
.faq-group-head { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; }
.faq-group-head .ico {
  width: 40px; height: 40px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(90,127,255,0.25), rgba(139,92,246,0.25)); border: 1px solid var(--border-strong); color: #C9D4FF;
}
.faq-group-head .ico svg { width: 20px; height: 20px; }
.faq-group-head h3 { font-size: 18px; margin: 0; font-family: "Inter", sans-serif; font-weight: 700; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item { border-radius: 18px; overflow: hidden; transition: border-color .25s, background .25s, box-shadow .25s; scroll-margin-top: 96px; }
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: rgba(90,127,255,0.5); background: rgba(90,127,255,0.07); box-shadow: inset 3px 0 0 var(--accent); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 60px; padding: 14px 22px; font-size: 16px; font-weight: 600; line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 10px; height: 10px; flex: none; margin-top: -4px;
  border-right: 2px solid var(--text-dim); border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg); transition: transform .25s, margin .25s, border-color .25s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; border-color: #fff; }
.faq-item .answer { padding: 0 22px 22px; font-size: 15px; color: var(--text-dim); animation: faqIn .3s ease; }
.faq-item .answer p { margin: 0 0 10px; }
.faq-item .answer p:last-child { margin-bottom: 0; }
.faq-item .answer ol { margin: 0; padding-left: 22px; }
.faq-item .answer li { margin-bottom: 6px; padding-left: 4px; }
.faq-item .answer .link-button { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; min-height: 44px; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.faq-contact { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 28px; }
.faq-contact h3 { font-family: "Inter", sans-serif; font-size: 18px; font-weight: 700; margin: 0 0 4px; }
.faq-contact p { margin: 0; color: var(--text-dim); font-size: 15px; }

@media (max-width: 860px) {
  .faq-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .faq-aside { position: static; text-align: center; }
  .faq-cats { flex-direction: row; gap: 8px; overflow-x: auto; padding: 4px 2px 8px; margin-top: 20px; scrollbar-width: none; }
  .faq-cats::-webkit-scrollbar { display: none; }
  .faq-cats li { flex: none; }
  .faq-cats a { border: 1px solid var(--border); background: rgba(255,255,255,0.05); border-radius: 999px; white-space: nowrap; min-height: 44px; }
  .faq-item summary { padding: 14px 18px; }
  .faq-item .answer { padding: 0 18px 20px; }
  .faq-contact { padding: 22px 20px; }
}

/* ---------------------------------- CTA final ---------------------------------- */
.cta-band { position: relative; padding: 68px 32px; border-radius: 32px; text-align: center; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 30% 20%, rgba(90,127,255,0.25), transparent 55%), radial-gradient(ellipse at 80% 90%, rgba(139,92,246,0.22), transparent 55%);
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 14px; line-height: 1.15; }
.cta-band p { color: var(--text-dim); font-size: 16.5px; margin: 0 auto 30px; max-width: 46ch; }
.cta-band .cta-row { justify-content: center; margin-bottom: 14px; }
.cta-band .access-note { margin-inline: auto; }
@media (max-width: 480px) { .cta-band { padding: 48px 20px; border-radius: 26px; } }

/* ---------------------------------- pied de page ---------------------------------- */
footer { padding: 32px 0 56px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.footer-brand svg { width: 20px; height: 20px; }
.footer-brand span { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text-faint); }
.footer-inner nav { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-inner nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 10px; color: var(--text-dim); }
.footer-inner nav a:hover { color: var(--text); }
@media (max-width: 720px) { .footer-inner nav { margin-left: -10px; } }
@media (max-width: 720px) { footer { padding-bottom: calc(112px + env(safe-area-inset-bottom)); } }

/* ---------------------------------- CTA fixe mobile ---------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(5,5,7,0.96) 70%, rgba(5,5,7,0));
  transform: translateY(110%); transition: transform .3s ease; pointer-events: none;
}
.sticky-cta .row { display: flex; gap: 8px; max-width: 520px; margin: 0 auto; }
.sticky-cta .btn--primary { flex: 1; min-width: 0; }
.sticky-cta .btn--secondary { flex: none; padding: 0 16px; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  .sticky-cta.is-visible { transform: none; pointer-events: auto; }
}

/* ---------------------------------- formulaire Android (dialog natif) ---------------------------------- */
dialog.android-dialog {
  width: min(460px, calc(100vw - 24px)); max-height: calc(100dvh - 24px); overflow: auto;
  padding: 28px 24px 24px; border-radius: 26px; color: var(--text);
  background: #0e0e13; border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
}
dialog.android-dialog::backdrop { background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.dialog-close {
  position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text-dim);
}
.dialog-close:hover { color: #fff; background: rgba(255,255,255,0.12); }
.dialog-close svg { width: 18px; height: 18px; }
.android-dialog h2 { font-size: 22px; margin: 0 40px 8px 0; line-height: 1.2; }
.android-dialog .dialog-lead { font-size: 15px; color: var(--text-dim); margin: 0 0 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field input[type="email"] {
  width: 100%; min-height: 52px; padding: 0 16px; border-radius: 14px; font: 500 16px "Inter", sans-serif; /* 16px : pas de zoom auto sur iOS */
  color: #fff; background: rgba(255,255,255,0.06); border: 1px solid var(--border-strong);
}
.field input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { font-size: 13px; color: var(--text-faint); margin: 12px 0 18px; }
.form-message { font-size: 14.5px; margin: 0 0 16px; padding: 12px 14px; border-radius: 14px; }
.form-message[hidden] { display: none; }
.form-message--error { background: rgba(255,157,175,0.1); border: 1px solid rgba(255,157,175,0.4); color: #FFC2CD; }
.form-message--error a { text-decoration: underline; }
.form-success { text-align: center; padding: 8px 0 4px; }
.form-success[hidden], form[hidden] { display: none; }
.form-success .tick { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: rgba(57,217,138,0.16); color: var(--accent-3); }
.form-success .tick svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 20px; margin: 0 0 8px; font-family: "Unbounded", sans-serif; }
.form-success p { color: var(--text-dim); font-size: 15px; margin: 0 0 20px; }
.android-dialog .btn { width: 100%; }
.btn[disabled] { opacity: 0.7; cursor: progress; transform: none; }

/* ---------------------------------- pages secondaires (coachs) ---------------------------------- */
.page-hero { padding: 56px 0 24px; text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(28px, 4.4vw, 48px); line-height: 1.1; margin: 0 0 16px; }
.page-hero p { font-size: 17px; color: var(--text-dim); margin: 0 auto 24px; max-width: 54ch; }
.prose-card { padding: 30px 28px; max-width: 720px; margin: 0 auto 20px; }
.prose-card h2 { font-size: 20px; margin: 0 0 14px; font-family: "Inter", sans-serif; font-weight: 700; }
.prose-card p { color: var(--text-dim); margin: 0 0 12px; font-size: 15.5px; }
.prose-card p:last-child { margin-bottom: 0; }
@media (max-width: 480px) { .prose-card { padding: 24px 20px; } }

/* ---------------------------------- grands écrans ---------------------------------- */
@media (min-width: 1500px) {
  .shell, nav.topbar .inner { max-width: 1360px; }
  .hero h1 { font-size: clamp(38px, 4.2vw, 76px); }
  .hero p.lede { font-size: 19.5px; }
  .phone--hero { --w: 320px; }
  .section-head { max-width: 720px; }
  .section-head h2 { font-size: clamp(28px, 2.6vw, 46px); }
  .section-head p { font-size: 17.5px; }
}
@media (min-width: 1900px) { .shell, nav.topbar .inner { max-width: 1520px; } }
