/* =================================================================
   AGOGE — Landing Athlète
   /css/landing-athlete.css
   ─────────────────────────────────────────────────────────────────
   Charte Visuelle V4.1 « Warm Night »
   Mobile-first · breakpoint principal : 720px (≥ tablet)
   Aucun !important · Aucune lib externe
   ================================================================= */


/* ═══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS  (charte V4.1 alignée app athlète)
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Surfaces — Warm Night */
  --bg:           #0f0f12;
  --surface:      #161619;
  --elevated:     #1c1c21;
  --card:         rgba(255,255,255,.03);
  --card-2:       rgba(255,255,255,.05);

  /* Borders */
  --border:       rgba(148,163,184,.08);
  --border-2:     rgba(148,163,184,.15);

  /* Text */
  --text:         #f1f5f9;
  --text-2:       #94a3b8;
  --muted:        #64748b;

  /* Ember palette (signature) */
  --orange:       #f97316;
  --orange-2:     #ea580c;
  --orange-rgb:   249,115,22;
  --amber:        #fbbf24;
  --rose:         #fb7185;

  /* Sport / pillar accents */
  --emerald:      #34d399;
  --emerald-rgb:  52,211,153;
  --blue:         #60a5fa;
  --blue-rgb:     96,165,250;
  --cyan:         #22d3ee;
  --cyan-rgb:     34,211,238;
  --violet:       #a78bfa;
  --violet-rgb:   167,139,250;

  /* Gradients */
  --grad-ember:   linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #dc2626 100%);
  --grad-orange:  linear-gradient(135deg, #f97316, #ea580c);
  --grad-orion:   linear-gradient(135deg, rgba(167,139,250,.09), rgba(96,165,250,.06));

  /* Radius */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  18px;
  --r-xl:  24px;

  /* Easing — AGOGE */
  --ease:     cubic-bezier(.22, 1, .36, 1);
  --ease-2:   cubic-bezier(.16, 1, .3, 1);

  /* Type */
  --font:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:    1100px;
  --gutter:   clamp(16px, 4vw, 32px);
}


/* ═══════════════════════════════════════════════════════════════
   2. RESET + GLOBAL
   ═══════════════════════════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }


/* ═══════════════════════════════════════════════════════════════
   3. UTILITAIRES (très peu — mobile-first)
   ═══════════════════════════════════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.center    { text-align: center; }
.dot-sep::before { content: '\00B7'; margin: 0 .5em; color: var(--muted); }


/* ═══════════════════════════════════════════════════════════════
   4. BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.005em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 4px 24px rgba(var(--orange-rgb),.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--orange-rgb),.35);
  filter: brightness(1.05);
}
.btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-2);
  color: var(--text-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--text); }
.btn-orion {
  background: rgba(var(--violet-rgb),.12);
  border: 1px solid rgba(var(--violet-rgb),.32);
  color: var(--violet);
}
.btn-orion:hover { background: rgba(var(--violet-rgb),.18); }

/* CTA inline (entre les sections) */
.cta-inline {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.btn-inline {
  padding: 12px 22px;
  font-size: .88rem;
}
.btn-orion-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .88rem;
  background: rgba(var(--violet-rgb),.10);
  border: 1px solid rgba(var(--violet-rgb),.32);
  color: var(--violet);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-orion-inline:hover {
  background: rgba(var(--violet-rgb),.18);
  border-color: rgba(var(--violet-rgb),.5);
  transform: translateY(-2px);
}
.btn-orion-inline svg { width: 18px; height: 18px; }

/* Sub-section title (transition Index dans la section fusionnée) */
.section-subtitle {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
}
.section-subtitle h3 .em {
  background: var(--grad-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Em-orange utility (pour fluidité paragraphe) */
.em-orange {
  color: var(--orange);
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════
   5. NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--gutter);
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), height .3s var(--ease);
}
.nav.scrolled {
  background: rgba(15,15,18,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 56px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: var(--text);                  /* Blanc — cohérence app */
  -webkit-text-fill-color: var(--text);
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-cta {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  background: var(--grad-orange);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  transition: filter .2s ease;
}
.nav-cta:hover { filter: brightness(1.1); }


/* ═══════════════════════════════════════════════════════════════
   6. HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px var(--gutter) 32px;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 720px) {
  .hero { padding: 96px var(--gutter) 48px; }
}
.hero-glow,
.hero-grid { display: none; }
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  border-radius: 100px;
  background: rgba(var(--orange-rgb),.08);
  border: 1px solid rgba(var(--orange-rgb),.18);
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-weight: 900;
  font-size: clamp(1.85rem, 7vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 14px;
}
.hero h1 .h1-eyebrow {
  display: block;
  font-size: clamp(.62rem, 1.6vw, .72rem);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  opacity: .85;
}
.hero h1 .h1-punch {
  display: block;
  font-weight: 900;
  font-size: inherit;
  line-height: 1.08;
}
.hero h1 .em { background: var(--grad-ember); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero h1 .strike { position: relative; display: inline-block; }
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; top: 50%;
  height: 3px;
  background: var(--rose);
  transform: rotate(-3deg);
  border-radius: 2px;
  opacity: .8;
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 22px;
  font-size: clamp(.92rem, 2.6vw, 1.02rem);
  color: var(--text-2);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
@media (min-width: 540px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

.hero-ring-wrap {
  position: relative;
  width: clamp(170px, 44vw, 220px);
  margin: 4px auto 22px;
}
.hero-ring-svg { width: 100%; height: auto; display: block; }
.hero-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-ring-score {
  font-weight: 900;
  font-size: clamp(1.8rem, 6.4vw, 2.6rem);
  background: var(--grad-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.04em;
  line-height: 1;
}
.hero-ring-label {
  font-size: .6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 4px;
}
.hero-ring-level {
  font-size: .76rem;
  color: var(--orange);
  font-weight: 700;
  margin-top: 2px;
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-trust-label {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
}
.hero-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 28px);
  flex-wrap: wrap;
}
/* Cellule fixe : tous les logos ont le MÊME espace pour s'afficher */
.logo-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 32px;
  flex-shrink: 0;
}
.logo-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity .25s ease;
}
.logo-cell img:hover { opacity: 1; }

.hero-normandy {
  margin-top: 22px;
  font-size: .76rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-normandy svg { width: 12px; height: 12px; }


/* ═══════════════════════════════════════════════════════════════
   7. SECTIONS — Patterns réutilisés
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: 64px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .section { padding: 84px var(--gutter); }
}
.section-label {
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 4.6vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -.018em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title .em { background: var(--grad-ember); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc {
  font-size: clamp(.92rem, 2.6vw, 1.02rem);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 600px;
}
.section.center .section-desc { margin-left: auto; margin-right: auto; }
.divider {
  height: 1px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}


/* ═══════════════════════════════════════════════════════════════
   8. SECTION : LE CONSTAT (problème)
   ═══════════════════════════════════════════════════════════════ */
.constat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media (min-width: 720px) {
  .constat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.constat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .3s var(--ease);
}
.constat-card:hover {
  border-color: rgba(var(--orange-rgb),.22);
  background: rgba(var(--orange-rgb),.025);
  transform: translateY(-3px);
}
.constat-card-num {
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .9;                                 /* visible — ce sont des étapes numérotées */
  position: absolute;
  top: 16px; right: 18px;
  pointer-events: none;
  letter-spacing: -.04em;
}
.constat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
  padding-right: 60px;                       /* éviter chevauchement avec numéro */
  min-height: 28px;
}
.constat-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}
.constat-tag {
  margin-top: 32px;
  text-align: center;
  font-size: .92rem;
  color: var(--text-2);
}
.constat-tag strong { color: var(--orange); font-weight: 700; }


/* ═══════════════════════════════════════════════════════════════
   9. SECTION : INDEX (rampe + niveaux + stats)
   ═══════════════════════════════════════════════════════════════ */
.idx-ramp {
  position: relative;
  margin: 40px 0 22px;
  padding: 0 4px;
}
.idx-ramp-bar {
  position: relative;
  height: 14px;
  border-radius: 100px;
  background:
    linear-gradient(90deg,
      #06b6d4 0%, #06b6d4 20%,
      #3b82f6 20%, #3b82f6 40%,
      #10b981 40%, #10b981 55%,
      #f97316 55%, #f97316 70%,
      #e11d48 70%, #e11d48 85%,
      #a855f7 85%, #a855f7 100%
    );
  box-shadow:
    0 4px 16px rgba(0,0,0,.4),
    0 0 14px rgba(249,115,22,.08),
    0 0 22px rgba(168,85,247,.06),
    inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
}
.idx-ramp-bar::after {
  /* Shimmer sweep — discret */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  background-size: 30% 100%;
  background-repeat: no-repeat;
  background-position: -30% 0;
  animation: rampShimmer 5s ease-in-out infinite;
  border-radius: inherit;
}
@keyframes rampShimmer {
  0%   { background-position: -30% 0; }
  70%  { background-position: 130% 0; }
  100% { background-position: 130% 0; }
}
.idx-ramp-glow {
  position: absolute;
  inset: -8px -6px;
  background:
    linear-gradient(90deg,
      #06b6d4 0%, #06b6d4 20%,
      #3b82f6 20%, #3b82f6 40%,
      #10b981 40%, #10b981 55%,
      #f97316 55%, #f97316 70%,
      #e11d48 70%, #e11d48 85%,
      #a855f7 85%, #a855f7 100%
    );
  filter: blur(14px);
  opacity: .16;
  border-radius: 100px;
  z-index: -1;
  pointer-events: none;
  animation: rampPulse 5s ease-in-out infinite;
}
@keyframes rampPulse {
  0%, 100% { opacity: .12; }
  50%      { opacity: .22; }
}
.idx-ramp-labels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 14px;
}
.idx-ramp-label {
  text-align: center;
  font-size: .62rem;
  letter-spacing: .3px;
}
.idx-ramp-label .lvl-name {
  display: block;
  font-weight: 700;
  font-size: .72rem;
  margin-bottom: 2px;
}
.idx-ramp-label .lvl-range {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: .58rem;
}
@media (min-width: 540px) {
  .idx-ramp-label { font-size: .7rem; }
  .idx-ramp-label .lvl-name { font-size: .82rem; }
  .idx-ramp-label .lvl-range { font-size: .65rem; }
}

.idx-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.idx-stat {
  text-align: center;
  padding: 18px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.idx-stat-val {
  font-weight: 900;
  font-size: clamp(1.4rem, 5vw, 2rem);
  background: var(--grad-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
  line-height: 1;
}
.idx-stat-label {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════
   10. SECTION : PILIERS (pillars fill + cards)
   ═══════════════════════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 36px;
}
@media (min-width: 720px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 960px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.pillar-card:hover { transform: translateY(-2px); }
.pillar-card.cyan:hover    { border-color: rgba(var(--cyan-rgb),.4); }
.pillar-card.orange:hover  { border-color: rgba(var(--orange-rgb),.4); }
.pillar-card.emerald:hover { border-color: rgba(var(--emerald-rgb),.4); }
.pillar-card.blue:hover    { border-color: rgba(var(--blue-rgb),.4); }
.pillar-card.violet:hover  { border-color: rgba(var(--violet-rgb),.4); }
.pillar-card.amber:hover   { border-color: rgba(251,191,36,.4); }

.pillar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.pillar-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 16px; height: 16px; stroke-width: 2.2; }
.pillar-card.cyan    .pillar-icon { background: rgba(var(--cyan-rgb),.12);    color: var(--cyan); }
.pillar-card.orange  .pillar-icon { background: rgba(var(--orange-rgb),.12);  color: var(--orange); }
.pillar-card.emerald .pillar-icon { background: rgba(var(--emerald-rgb),.12); color: var(--emerald); }
.pillar-card.blue    .pillar-icon { background: rgba(var(--blue-rgb),.12);    color: var(--blue); }
.pillar-card.violet  .pillar-icon { background: rgba(var(--violet-rgb),.12);  color: var(--violet); }
.pillar-card.amber   .pillar-icon { background: rgba(251,191,36,.12);         color: var(--amber); }

.pillar-name {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
}
.pillar-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.pillar-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.pillar-bar {
  flex: 1;
  height: 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
}
.pillar-bar-fill {
  position: relative;
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 1.4s var(--ease);
  /* Glow visible quand remplie */
  filter: saturate(1.15);
}
.pillar-bar-fill::before {
  /* Shine top — donne du relief */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,0));
  border-radius: inherit;
  pointer-events: none;
}
.pillar-bar-fill::after {
  /* Bright moving tip */
  content: '';
  position: absolute;
  right: -2px; top: -2px; bottom: -2px;
  width: 6px;
  background: rgba(255,255,255,.6);
  filter: blur(3px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s ease .8s;
}
.pillar-bar-fill[style*="width"]::after { opacity: 1; }

/* Box-shadow par couleur de pilier (glow externe) */
.pillar-card.cyan    .pillar-bar-fill { box-shadow: 0 0 12px rgba(34,211,238,.45); }
.pillar-card.orange  .pillar-bar-fill { box-shadow: 0 0 12px rgba(249,115,22,.5); }
.pillar-card.emerald .pillar-bar-fill { box-shadow: 0 0 12px rgba(52,211,153,.45); }
.pillar-card.blue    .pillar-bar-fill { box-shadow: 0 0 12px rgba(96,165,250,.45); }
.pillar-card.violet  .pillar-bar-fill { box-shadow: 0 0 12px rgba(167,139,250,.45); }
.pillar-card.amber   .pillar-bar-fill { box-shadow: 0 0 12px rgba(251,191,36,.5); }

.pillar-bar-pct {
  font-size: .82rem;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  min-width: 36px;
  text-align: right;
}

.pillar-card.cyan    .pillar-bar-fill { background: linear-gradient(90deg, rgba(var(--cyan-rgb),.7),    var(--cyan));    box-shadow: 0 0 8px rgba(var(--cyan-rgb),.45),    inset 0 1px 0 rgba(255,255,255,.15); }
.pillar-card.orange  .pillar-bar-fill { background: linear-gradient(90deg, var(--orange-2),              var(--orange));  box-shadow: 0 0 8px rgba(var(--orange-rgb),.45),  inset 0 1px 0 rgba(255,255,255,.15); }
.pillar-card.emerald .pillar-bar-fill { background: linear-gradient(90deg, rgba(var(--emerald-rgb),.7), var(--emerald)); box-shadow: 0 0 8px rgba(var(--emerald-rgb),.4),  inset 0 1px 0 rgba(255,255,255,.15); }
.pillar-card.blue    .pillar-bar-fill { background: linear-gradient(90deg, rgba(var(--blue-rgb),.7),    var(--blue));    box-shadow: 0 0 8px rgba(var(--blue-rgb),.4),     inset 0 1px 0 rgba(255,255,255,.15); }
.pillar-card.violet  .pillar-bar-fill { background: linear-gradient(90deg, rgba(var(--violet-rgb),.7),  var(--violet));  box-shadow: 0 0 8px rgba(var(--violet-rgb),.4),   inset 0 1px 0 rgba(255,255,255,.15); }
.pillar-card.amber   .pillar-bar-fill { background: linear-gradient(90deg, rgba(251,191,36,.7),         var(--amber));   box-shadow: 0 0 8px rgba(251,191,36,.4),          inset 0 1px 0 rgba(255,255,255,.15); }

.pillar-card.cyan    .pillar-bar-pct { color: var(--cyan); }
.pillar-card.orange  .pillar-bar-pct { color: var(--orange); }
.pillar-card.emerald .pillar-bar-pct { color: var(--emerald); }
.pillar-card.blue    .pillar-bar-pct { color: var(--blue); }
.pillar-card.violet  .pillar-bar-pct { color: var(--violet); }
.pillar-card.amber   .pillar-bar-pct { color: var(--amber); }


/* ═══════════════════════════════════════════════════════════════
   11. SECTION : ✦ ORION DEMO INTERVIEW
   Identité Orion — charte V4.1 §2 cristallisation
   ═══════════════════════════════════════════════════════════════ */
.orion-section {
  position: relative;
}
.orion-band {
  position: relative;
  background: var(--grad-orion);
  border: 1px solid rgba(var(--violet-rgb),.22);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  margin-top: 32px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .orion-band { padding: 32px 28px; }
}
.orion-band::before {
  content: '';
  position: absolute;
  top: 0; left: -30%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--orange-rgb),.9) 40%, rgba(var(--violet-rgb),.9) 60%, transparent);
  pointer-events: none;
}
.orion-band.swept::before {
  animation: fobSweep 1.5s var(--ease) .4s 1 forwards;
}
@keyframes fobSweep {
  0%   { left: -30%; }
  100% { left: 130%; }
}

.orion-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.orion-star {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 0 1px rgba(var(--violet-rgb),.3), 0 4px 16px rgba(var(--violet-rgb),.4);
  animation: orionFabStarPulse 2.6s ease-in-out infinite;
}
@keyframes orionFabStarPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.06); opacity: .92; }
}
.orion-id {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.orion-id-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
}
.orion-id-sub {
  font-size: .7rem;
  color: var(--violet);
  letter-spacing: .5px;
  font-weight: 600;
  text-transform: uppercase;
}
.orion-live-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(52,211,153,.10);
  border: 1px solid rgba(52,211,153,.25);
  color: #34d399;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.orion-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,.7);
  animation: liveDotPulse 1.6s ease-in-out infinite;
}
@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}

/* Conversation */
.orion-conv {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;          /* CLS-safe : reserved space */
}
.orion-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: orionMsgIn .35s var(--ease) both;
}
@keyframes orionMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.orion-msg-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  color: #fff;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.orion-msg-bubble {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(var(--violet-rgb),.15);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.55;
  max-width: 100%;
}
.orion-msg-bubble strong { color: var(--violet); font-weight: 700; }

.orion-msg-user {
  flex-direction: row-reverse;
}
.orion-msg-user .orion-msg-bubble {
  background: rgba(var(--orange-rgb),.10);
  border-color: rgba(var(--orange-rgb),.28);
  color: var(--text);
}
.orion-msg-user .orion-msg-avatar {
  background: var(--grad-orange);
}

/* Chips */
.orion-chips-hint {
  margin: 12px 0 8px 36px;
  padding: 6px 14px 6px 12px;
  background: rgba(var(--violet-rgb),.10);
  border: 1px solid rgba(var(--violet-rgb),.32);
  border-radius: 100px;
  font-size: .76rem;
  color: var(--violet);
  font-weight: 700;
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: orionHintBob 1.6s ease-in-out infinite;
}
.orion-hint-star {
  color: var(--violet);
  font-size: .85rem;
  line-height: 1;
}
@keyframes orionHintBob {
  0%, 100% { transform: translateY(0); opacity: .92; }
  50%      { transform: translateY(-3px); opacity: 1; }
}

.orion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  padding-left: 36px;
  animation: orionMsgIn .35s var(--ease) .15s both;
}
/* Attention state — pulse vif pour appeler à l'action */
.orion-chips-attention .orion-chip {
  animation: orionChipBreath 1.8s ease-in-out infinite;
  background: rgba(var(--violet-rgb),.10);
  border-color: rgba(var(--violet-rgb),.4);
}
.orion-chips-attention .orion-chip:nth-child(1) { animation-delay: 0s; }
.orion-chips-attention .orion-chip:nth-child(2) { animation-delay: .15s; }
.orion-chips-attention .orion-chip:nth-child(3) { animation-delay: .30s; }
.orion-chips-attention .orion-chip:nth-child(4) { animation-delay: .45s; }
@keyframes orionChipBreath {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(var(--violet-rgb), 0);
    border-color: rgba(var(--violet-rgb),.40);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(var(--violet-rgb), .14), 0 4px 16px rgba(var(--violet-rgb),.18);
    border-color: rgba(var(--violet-rgb),.7);
    transform: translateY(-1px);
  }
}
.orion-chips-attention .orion-chip:hover,
.orion-chips-attention .orion-chip:active {
  animation: none;
}
.orion-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(var(--violet-rgb),.06);
  border: 1px solid rgba(var(--violet-rgb),.22);
  color: var(--violet);
  font-size: .82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.orion-chip:hover {
  background: rgba(var(--violet-rgb),.12);
  border-color: rgba(var(--violet-rgb),.4);
  transform: translateY(-1px);
}
.orion-chip:active { transform: translateY(0); }
.orion-chip svg { width: 14px; height: 14px; }
.orion-chip.disabled {
  opacity: .35;
  pointer-events: none;
}
.orion-chip.selected {
  background: rgba(var(--orange-rgb),.10);
  border-color: rgba(var(--orange-rgb),.4);
  color: var(--orange);
}

/* Typing indicator */
.orion-typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(var(--violet-rgb),.15);
  border-radius: var(--r-md);
}
.orion-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
  animation: orionTyping 1.4s ease-in-out infinite;
}
.orion-typing span:nth-child(2) { animation-delay: .15s; }
.orion-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes orionTyping {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

/* Reset CTA */
.orion-reset {
  margin-top: 18px;
  text-align: center;
  font-size: .78rem;
}
.orion-reset button {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
  font-weight: 600;
}
.orion-reset button:hover { color: #c4b5fd; }


/* ═══════════════════════════════════════════════════════════════
   12. ORION DEMO — Composants séance (vélo/course/trail) + renfo
   Doit ressembler aux VRAIS composants planner et renfo de l'app
   ═══════════════════════════════════════════════════════════════ */
.session-card {
  background: var(--elevated);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  margin-top: 12px;
  overflow: hidden;
  animation: sessionReveal .5s var(--ease) both;
}
@keyframes sessionReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.session-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.session-sport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.session-sport svg { width: 12px; height: 12px; }
.session-sport.velo    { background: rgba(59,130,246,.12);  color: #3b82f6; }
.session-sport.gravel  { background: rgba(245,158,11,.12);  color: #f59e0b; }
.session-sport.vtt     { background: rgba(16,185,129,.12);  color: #10b981; }
.session-sport.course  { background: rgba(244,63,94,.12);   color: #f43f5e; }
.session-sport.trail   { background: rgba(34,211,238,.12);  color: #22d3ee; }
.session-sport.renfo   { background: rgba(139,92,246,.12);  color: #8b5cf6; }
.session-title {
  flex: 1;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  letter-spacing: -.005em;
}
.session-duration {
  font-size: .78rem;
  color: var(--text-2);
  font-weight: 600;
}

/* ─── Render séance · timeline horizontale (réplique exacte du builder AGOGE) ─── */
.session-render {
  padding: 14px 14px 8px;
  position: relative;
}
.session-render-svg {
  display: block;
  width: 100%;
  height: auto;
  background: #0c0c0f;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.session-render-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: .68rem;
  color: var(--muted);
  font-weight: 500;
}
.session-render-legend .leg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.session-render-legend .leg .swatch {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 2px;
}
/* Block list (sous le render — détail textuel court) */
.session-blocks-text {
  padding: 0 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.block-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.02);
  border-left: 3px solid currentColor;
  font-size: .82rem;
}
.block-line[data-zone="z1"] { color: #22d3ee; }
.block-line[data-zone="z2"] { color: #60a5fa; }
.block-line[data-zone="z3"] { color: #34d399; }
.block-line[data-zone="z4"] { color: var(--orange); }
.block-line[data-zone="z5"] { color: var(--rose); }
.block-line .bl-name { flex: 1; color: var(--text); font-weight: 600; letter-spacing: -.005em; }
.block-line .bl-meta { color: var(--text-2); font-weight: 500; font-size: .72rem; }
.block-line .bl-meta .zone-pill { margin-left: 6px; }

/* Zone pills standalone (utilisé dans block-line, legend, autres) */
.zone-pill {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .3px;
  background: rgba(255,255,255,.06);
}
.zone-pill.z1 { background: rgba(34,211,238,.16);  color: #22d3ee; }
.zone-pill.z2 { background: rgba(96,165,250,.16);  color: #60a5fa; }
.zone-pill.z3 { background: rgba(52,211,153,.16);  color: #34d399; }
.zone-pill.z4 { background: rgba(249,115,22,.16);  color: var(--orange); }
.zone-pill.z5 { background: rgba(251,113,133,.18); color: var(--rose); }

.session-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  font-size: .72rem;
  color: var(--muted);
}
.session-foot strong { color: var(--text-2); font-weight: 700; }
.session-foot .rpe-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .68rem;
}
.rpe-pill.low  { background: rgba(52,211,153,.14); color: #34d399; }
.rpe-pill.mid  { background: rgba(251,191,36,.14); color: var(--amber); }
.rpe-pill.high { background: rgba(249,115,22,.14); color: var(--orange); }
.rpe-pill.max  { background: rgba(251,113,133,.14); color: var(--rose); }

/* Renfo session — exos avec GIF mockup */
.renfo-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.renfo-ex {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: var(--r-sm);
  background: rgba(139,92,246,.04);
  border: 1px solid rgba(139,92,246,.08);
  align-items: center;
}
.renfo-ex-gif {
  width: 56px; height: 56px;
  border-radius: var(--r-xs);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.renfo-ex-gif img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.renfo-ex-gif .fallback-silhouette {
  width: 60%; height: 60%;
  color: rgba(139,92,246,.6);
  animation: silhouettePulse 1.6s ease-in-out infinite;
}
@keyframes silhouettePulse {
  0%, 100% { transform: scale(1)   translateY(0);    opacity: .9; }
  50%      { transform: scale(.94) translateY(-1px); opacity: 1; }
}
.renfo-ex-gif::after {
  /* Shimmer hint pour suggérer animation/GIF */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(var(--orange-rgb),.05) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: gifShine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gifShine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.renfo-ex-info { flex: 1; min-width: 0; }
.renfo-ex-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.renfo-ex-target {
  font-size: .76rem;
  color: var(--text-2);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.renfo-ex-target .num { color: var(--text); font-weight: 700; }
.renfo-ex-target .rpe-pill {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 100px;
  font-size: .66rem;
  font-weight: 800;
}

/* CTA inside Orion */
.orion-cta-inline {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(var(--orange-rgb),.06), rgba(var(--violet-rgb),.04));
  border: 1px solid rgba(var(--orange-rgb),.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 540px) {
  .orion-cta-inline { flex-direction: row; align-items: center; }
}
.orion-cta-inline .txt {
  flex: 1;
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.5;
}
.orion-cta-inline .txt strong { color: var(--text); font-weight: 700; }

.orion-disclaimer {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(var(--violet-rgb),.05);
  border: 1px solid rgba(var(--violet-rgb),.12);
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.orion-disclaimer svg { width: 16px; height: 16px; color: var(--violet); flex-shrink: 0; margin-top: 2px; }
.orion-disclaimer strong { color: var(--text); font-weight: 700; }


/* ═══════════════════════════════════════════════════════════════
   13. SECTION : COMMUNAUTÉ + MULTI-SPORT
   ═══════════════════════════════════════════════════════════════ */
.comm-mockup {
  max-width: 460px;
  margin: 36px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.comm-mockup-bar {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
}
.comm-mockup-bar svg { width: 16px; height: 16px; color: var(--orange); }
.comm-post {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.025);
}
.comm-post:last-child { border-bottom: none; }
.comm-post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.comm-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .75rem;
  color: #fff;
  flex-shrink: 0;
}
.comm-name { font-weight: 700; font-size: .82rem; color: var(--text); }
.comm-time { font-size: .68rem; color: var(--muted); }
.comm-txt { font-size: .85rem; color: var(--text-2); line-height: 1.55; }
.comm-stats {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  font-size: .74rem;
  color: var(--muted);
}
.comm-stats span { display: inline-flex; align-items: center; gap: 4px; }
.comm-stats svg { width: 14px; height: 14px; }

.sports-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}
.sport-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border-2);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
}
.sport-pill svg { width: 14px; height: 14px; }
.sport-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.sport-pill[data-sp="velo-route"] .dot { background: #3b82f6; }
.sport-pill[data-sp="gravel"]     .dot { background: #f59e0b; }
.sport-pill[data-sp="vtt"]        .dot { background: #10b981; }
.sport-pill[data-sp="course"]     .dot { background: #f43f5e; }
.sport-pill[data-sp="trail"]      .dot { background: #22d3ee; }
.sport-pill[data-sp="renfo"]      .dot { background: #8b5cf6; }

.comm-features {
  margin-top: 26px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   14. SECTION : TÉMOIGNAGES BÊTA
   ═══════════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 720px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; left: 18px;
  font-size: 3.2rem;
  color: rgba(var(--orange-rgb),.15);
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-quote {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin: 14px 0 18px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .82rem;
  animation: avatarRingPop .55s var(--ease) .12s both;
}
@keyframes avatarRingPop {
  0%   { transform: scale(.82); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}
.testi-name { font-weight: 700; font-size: .88rem; color: var(--text); }
.testi-role { font-size: .72rem; color: var(--muted); margin-top: 1px; }

.testi-stats {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.testi-stat {
  text-align: center;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-width: 140px;
}
.testi-stat-val {
  font-weight: 900;
  font-size: 1.4rem;
  background: var(--grad-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testi-stat-label {
  font-size: .68rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}
.testi-disclaimer {
  margin-top: 22px;
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════
   14b. SECTION : APERÇU DE L'APP (mockups SVG provisoires)
   À remplacer par vraies captures iPhone 15 Pro 393×852 quand prêtes
   ═══════════════════════════════════════════════════════════════ */
.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
.preview-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .25s var(--ease);
}
.preview-card:hover { border-color: rgba(var(--orange-rgb),.22); }
.preview-card-glow {
  position: absolute;
  top: -40%; left: 50%;
  width: 120%;
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(var(--orange-rgb),.06), transparent 70%);
  pointer-events: none;
}
.preview-phone {
  position: relative;
  width: 200px;
  height: 410px;
  background: linear-gradient(180deg, #0a0a0c, #111114);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.05);
  box-shadow:
    0 0 0 2px rgba(255,255,255,.025),
    0 20px 50px rgba(0,0,0,.45);
  overflow: hidden;
  z-index: 1;
}
.preview-phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.preview-phone-screen {
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.preview-phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.preview-phone-screen svg {
  padding: 30px 14px 14px;
  width: 100%;
  height: auto;
}
.preview-card-label {
  margin-top: 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
}
.preview-card-desc {
  margin-top: 4px;
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 240px;
}

/* ───────────────────────────────────────
   Vidéo démo (mode exécution renfo)
   ─────────────────────────────────────── */
.demo-video-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.demo-video-phone {
  position: relative;
  width: clamp(240px, 70vw, 320px);
  aspect-ratio: 430 / 932;
  background: linear-gradient(180deg, #0a0a0c, #111114);
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 0 0 2px rgba(255,255,255,.025),
    0 24px 60px rgba(0,0,0,.55),
    0 0 80px rgba(var(--orange-rgb),.08);
  overflow: hidden;
}
.demo-video-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.demo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--bg);
}

/* ───────────────────────────────────────
   Galerie bonus (7 captures)
   ─────────────────────────────────────── */
/* ───────────────────────────────────────
   Gallery — Swiper horizontal (mobile)
   + Grid (tablette/desktop)
   ─────────────────────────────────────── */
.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
  padding: 6px var(--gutter) 18px;
  margin: 36px calc(var(--gutter) * -1) 0;
  scroll-behavior: smooth;
}
.gallery-grid::-webkit-scrollbar { display: none; }

@media (min-width: 720px) {
  /* Tablette+ : on retombe en grille classique */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    overflow: visible;
    padding: 0;
    margin: 36px 0 0;
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 calc(50% - 22px);
  scroll-snap-align: center;
}
@media (min-width: 720px) {
  .gallery-card { flex: initial; }
}

.gallery-phone {
  position: relative;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 430 / 932;
  background: linear-gradient(180deg, #0a0a0c, #111114);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.05);
  box-shadow:
    0 12px 32px rgba(0,0,0,.45);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-card:hover .gallery-phone {
  transform: translateY(-4px);
  box-shadow:
    0 18px 44px rgba(0,0,0,.55),
    0 0 0 1px rgba(var(--orange-rgb),.18);
}
.gallery-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.gallery-card-label {
  margin-top: 12px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
}

/* Hint scroll mobile uniquement */
.gallery-grid::after {
  content: '';
  flex: 0 0 var(--gutter);
}
@media (min-width: 720px) {
  .gallery-grid::after { display: none; }
}

/* Common mockup styles inside phones */
.mu-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.05);
  margin-bottom: 8px;
}
.mu-bar.s { width: 60%; }
.mu-bar.m { width: 75%; }
.mu-bar.l { width: 100%; }
.mu-pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .3px;
}


.faq-list {
  margin-top: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: .96rem;
  color: var(--text);
  letter-spacing: -.005em;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--orange-rgb),.08);
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.faq-q-icon svg { width: 12px; height: 12px; }
details[open] .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════
   16. CTA FINAL
   ═══════════════════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 56px var(--gutter) 80px;
  text-align: center;
  overflow: hidden;
}
.cta-final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(560px, 90vw);
  height: 280px;
  background: radial-gradient(ellipse, rgba(var(--orange-rgb),.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 5.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.cta-final h2 .em { background: var(--grad-ember); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-final p { color: var(--text-2); font-size: 1rem; margin-bottom: 28px; }
.cta-final .btn { padding: 16px 32px; font-size: .98rem; }
.cta-trust {
  margin-top: 24px;
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .3px;
}


/* ═══════════════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px var(--gutter) 60px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}
.footer-logo {
  display: inline-block;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 14px 0;
}
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-coach-link {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  background: rgba(var(--orange-rgb),.06);
  border: 1px solid rgba(var(--orange-rgb),.18);
  color: var(--orange);
  font-weight: 600;
  font-size: .82rem;
}
.footer-coach-link:hover { background: rgba(var(--orange-rgb),.12); }


/* ═══════════════════════════════════════════════════════════════
   18. REVEAL ON SCROLL — variantes expressives
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .20s; }
.reveal-d3 { transition-delay: .30s; }
.reveal-d4 { transition-delay: .40s; }

/* Variantes */
.reveal-scale {
  opacity: 0;
  transform: scale(.88);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Boost shimmer sur certaines section-titles quand visibles */
.section-title.reveal.visible::after {
  content: '';
  display: none;
}


/* ═══════════════════════════════════════════════════════════════
   19. ACCESSIBILITY — prefers-reduced-motion
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   20. SKIP LINK (a11y)
   ═══════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .85rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }
