/* ============================================================
   Nala : Premium Wellness Design System
   Dark-first, serif + sans-serif, scroll animations
   ============================================================ */

/* --- Accessibility --- */
.skip-link{position:absolute;left:-9999px;z-index:9999;padding:.75em 1.25em;background:#D4A574;color:#0B0F1A;font-weight:700;border-radius:0 0 8px 0;text-decoration:none}
.skip-link:focus{left:0;top:0}

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

:root{
  /* Backgrounds */
  --bg-primary:#0B0F1A;
  --bg-secondary:#111827;
  --bg-card:#1A1F2E;
  --bg-card-hover:#232839;

  /* Text */
  --text:#F0F0F5;
  --text-sec:#9CA3AF;
  --text-muted:#6B7280;

  /* Gold accent */
  --gold:#D4A574;
  --gold-light:#E0B88A;
  --gold-dim:rgba(212,165,116,.12);

  /* Narrator accents */
  --accent-nala:#D4A574;
  --accent-soren:#6B8EB5;
  --accent-luna:#F4A6C1;
  --accent-noam:#5B8C6E;
  --accent-alma:#9B7EC8;
  --accent-lila:#C4A882;
  --accent-zara:#4A6FA5;

  /* Utility */
  --border:rgba(255,255,255,.06);
  --glass:rgba(26,31,46,.65);
  --glass-border:rgba(255,255,255,.08);
  --radius:16px;
  --radius-sm:10px;
  --max-w:1100px;

  /* Gradients */
  --gradient-hero:linear-gradient(180deg,#0B0F1A 0%,#1a1040 50%,#0B0F1A 100%);
  --gradient-card:linear-gradient(135deg,rgba(212,165,116,.06) 0%,rgba(155,126,200,.06) 100%);
}

html{scroll-behavior:smooth}

body{
  font-family:'DM Sans',system-ui,-apple-system,sans-serif;
  background:var(--bg-primary);
  color:var(--text);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  /* clip preserve position:sticky descendants (.nav top fixed when scrolling)
     contrairement a hidden qui cree un nouveau contexte de scroll */
  overflow-x:clip;
}
html{overflow-x:clip}

/* Grain overlay */
body::after{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.035;
  z-index:9999;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:256px 256px;
}

a{color:var(--gold);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold-light);text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* Typography — Playfair Display for headings */
h1,h2,h3{font-family:'Playfair Display',Georgia,serif;font-weight:600;line-height:1.2;color:var(--text);overflow-wrap:break-word;word-wrap:break-word;hyphens:auto}
img,svg,video,iframe{max-width:100%;height:auto}
h1{font-size:clamp(2.25rem,5.5vw,3.5rem);letter-spacing:-.02em}
h2{font-size:clamp(1.5rem,3.5vw,2.25rem);margin-bottom:.75rem}
h3{font-size:1.2rem;margin-bottom:.5rem}
p{margin-bottom:1rem;color:var(--text-sec)}

/* Badge / label typography */
.badge,.label,.section-label,.hero-badge,.trust-item{
  font-family:'Space Grotesk','DM Sans',sans-serif;
}

/* --- Navigation --- */
.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(11,15,26,.85);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--glass-border);
  padding:0 2rem;
  transition:background .3s;
}
.nav-inner{max-width:var(--max-w);margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:64px}
.nav-logo{font-size:1.3rem;font-weight:700;color:var(--gold);letter-spacing:.5px}
.nav-logo img{height:30px;width:auto}
.nav-links{display:flex;align-items:center;gap:1.5rem}
.nav-links a{color:var(--text-sec);font-size:.875rem;font-weight:500;transition:color .2s}
.nav-links a:hover{color:var(--text)}
.nav-links a.btn-gold{color:#0B0F1A;font-weight:600}
.nav-links a.btn-gold:hover{color:#0B0F1A}
.nav-lang{position:relative}
.nav-lang summary{list-style:none;cursor:pointer;color:var(--text-sec);font-size:.875rem;font-weight:600;padding:.4rem .75rem;border:1px solid rgba(255,255,255,.12);border-radius:8px;transition:border-color .2s,color .2s;user-select:none;display:inline-flex;align-items:center;gap:.45rem}
.nav-lang summary::-webkit-details-marker{display:none}
.nav-lang summary::marker{content:''}
.nav-lang summary::after{content:'';display:inline-block;width:.5rem;height:.5rem;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-top:-3px;transition:transform .2s}
.nav-lang[open] summary::after{transform:rotate(-135deg);margin-top:3px}
.nav-lang summary:hover{border-color:var(--gold,#d4a574);color:var(--text)}
.nav-lang[open] summary{border-color:var(--gold,#d4a574);color:var(--text)}
.nav-lang-menu{position:absolute;top:calc(100% + .5rem);right:0;background:#0B0F1A;border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:.4rem 0;min-width:200px;box-shadow:0 12px 32px rgba(0,0,0,.4);list-style:none;margin:0;z-index:200}
.nav-lang-menu li{margin:0;padding:0}
.nav-lang-menu a{display:flex;align-items:center;justify-content:space-between;padding:.55rem 1rem;color:var(--text-sec);font-size:.875rem;font-weight:500;text-decoration:none;transition:background .15s,color .15s;border-radius:0}
.nav-lang-menu a:hover{background:rgba(212,165,116,.08);color:var(--text)}
.nav-lang-menu a[aria-current=page]{color:var(--gold,#d4a574);font-weight:600;background:rgba(212,165,116,.05)}
.nav-lang-soon{font-size:.7rem;letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted,#8a8576);background:rgba(255,255,255,.05);padding:.15rem .45rem;border-radius:999px;margin-left:.65rem}
.nav-anchor{font-size:.8rem !important;color:var(--text-muted) !important;text-transform:uppercase;letter-spacing:.5px}
.nav-anchor:hover{color:var(--gold) !important}

/* Hamburger */
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:8px;flex-direction:column;gap:5px;z-index:101}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);transition:transform .25s,opacity .25s}

/* --- Buttons --- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.85rem 2rem;border-radius:50px;
  font-family:'DM Sans',sans-serif;font-weight:600;font-size:.95rem;
  border:none;cursor:pointer;
  transition:transform .2s,box-shadow .2s,background .2s;
  text-decoration:none;
}
.btn:hover{transform:translateY(-2px);text-decoration:none;color:inherit}
.btn-gold{background:var(--gold);color:#0B0F1A}
.btn-gold:hover{background:var(--gold-light);color:#0B0F1A;box-shadow:0 8px 32px rgba(212,165,116,.3)}
.btn-outline{background:transparent;border:1.5px solid rgba(212,165,116,.4);color:var(--gold)}
.btn-outline:hover{background:rgba(212,165,116,.08);border-color:var(--gold);color:var(--gold)}
.btn-sm{padding:.55rem 1.2rem;font-size:.82rem}
.btn-lg{font-size:1.1rem;padding:1.1rem 3rem}

/* Pulse animation on primary CTA */
@keyframes pulse-glow{
  0%,100%{box-shadow:0 0 0 0 rgba(212,165,116,.4)}
  50%{box-shadow:0 0 0 12px rgba(212,165,116,0)}
}
.btn-pulse{animation:pulse-glow 2.5s ease-in-out infinite}

/* --- Hero --- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  background:var(--gradient-hero);
}

/* Aurora mesh effect */
.hero::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%,rgba(155,126,200,.12) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 40%,rgba(74,111,165,.1) 0%,transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%,rgba(212,165,116,.08) 0%,transparent 50%);
  animation:aurora 12s ease-in-out infinite alternate;
}
@keyframes aurora{
  0%{opacity:.6;transform:scale(1) translate(0,0)}
  100%{opacity:1;transform:scale(1.05) translate(1%,-1%)}
}

.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(11,15,26,.2) 0%,rgba(11,15,26,.8) 100%)}

.hero-content{
  position:relative;z-index:1;
  text-align:center;
  padding:2rem 1.5rem;
  max-width:720px;
}

.hero-badge{
  display:inline-block;
  background:rgba(212,165,116,.1);
  color:var(--gold);
  font-size:.72rem;font-weight:600;
  text-transform:uppercase;letter-spacing:2.5px;
  padding:.45rem 1.25rem;
  border-radius:50px;
  margin-bottom:2rem;
  border:1px solid rgba(212,165,116,.2);
}

.hero h1{color:var(--text);margin-bottom:1.25rem}
.hero-sub{font-size:1.15rem;color:var(--text-sec);max-width:520px;margin:0 auto 2.5rem;line-height:1.7}
.hero-reassurance{font-size:.85rem;color:var(--text-muted);margin-top:1.25rem;letter-spacing:.3px}

/* Scroll indicator */
.scroll-indicator{
  margin-top:3rem;
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  color:var(--text-muted);font-size:.75rem;letter-spacing:1px;text-transform:uppercase;
}
.scroll-indicator svg{animation:bounce-down 2s ease-in-out infinite}
@keyframes bounce-down{
  0%,100%{transform:translateY(0);opacity:.5}
  50%{transform:translateY(8px);opacity:1}
}

/* Hero stagger animations */
@keyframes fade-up{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-badge{animation:fade-up .7s ease-out both;animation-delay:.1s}
.hero h1{animation:fade-up .7s ease-out both;animation-delay:.3s}
.hero-sub{animation:fade-up .7s ease-out both;animation-delay:.5s}
.hero .btn{animation:fade-up .7s ease-out both;animation-delay:.7s}
.hero-store-badge{animation:fade-up .7s ease-out both;animation-delay:.8s}
.hero-reassurance{animation:fade-up .7s ease-out both;animation-delay:.95s}
.scroll-indicator{animation:fade-up .7s ease-out both;animation-delay:1.2s}

/* Hero CTA stack — empile CTA + badge + pill + reassurance, centré, gap uniforme */
.hero-cta-stack{
  display:flex;flex-direction:column;align-items:center;
  gap:1.1rem;
  width:100%;
  margin-top:0;
}
.hero-cta-stack > *{max-width:100%}
.hero-cta-stack .hero-reassurance{align-self:stretch}

/* Hero Play Store badge (sous le CTA) */
.hero-store-badge{
  display:block;
  margin:0;
  line-height:0;
  transition:transform .2s ease,filter .2s ease;
}
.hero-store-badge img{
  height:54px;width:auto;display:block;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.35));
}
.hero-store-badge:hover{transform:translateY(-2px)}
.hero-store-badge:hover img{filter:drop-shadow(0 6px 16px rgba(0,0,0,.45))}

/* Hero pricing pill (pastille prix sous badge) */
.hero-pricing-pill{
  display:inline-flex;align-items:center;gap:8px;
  margin:0;
  padding:8px 16px;
  background:rgba(212,165,116,.08);
  border:1px solid rgba(212,165,116,.28);
  border-radius:999px;
  color:rgba(255,255,255,.92);
  font-size:.875rem;font-weight:500;line-height:1.4;
  max-width:100%;
  text-align:center;
}
.hero-pricing-pill__icon{color:var(--gold);font-weight:700;flex-shrink:0}

/* Override hero-reassurance margin (controlled by stack gap) */
.hero-cta-stack .hero-reassurance{margin-top:.25rem}

@media(max-width:540px){
  .hero-cta-stack{gap:.9rem}
  .hero-store-badge img{height:48px}
  .hero-pricing-pill{font-size:.8rem;padding:7px 14px}
}

/* ── Hero grid 2-col + phone mockup (standards 2026) ── */
.hero-grid{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  align-items:center;
  width:100%;max-width:1200px;
  padding:0 1.5rem;
}
@media(min-width:960px){
  .hero{justify-content:center}
  .hero-grid{
    grid-template-columns:1.1fr 1fr;
    gap:3.5rem;
    padding:0 2rem;
  }
  .hero-content{
    text-align:left;
    max-width:none;
    padding:0;
    margin:0;
  }
  .hero-content .hero-badge,
  .hero-content h1,
  .hero-content .hero-sub{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }
  .hero-cta-stack{align-items:flex-start}
  .hero-cta-stack .hero-pricing-pill{align-self:flex-start;text-align:left}
  .hero-cta-stack .hero-reassurance{text-align:left;align-self:flex-start}
  .scroll-indicator{align-items:flex-start;margin-left:0}
}

/* ============================================================
   HERO 2026 v2 : "Pulse Aurora"
   Spectacular meditation orb with orbiting expert portraits.
   Stack: CSS conic-gradient + radial-gradient + pure transforms
        + canvas particles (vanilla JS, hero-animation.js).
   4 independent motions : orb breath (7s), conic spin (28s+45s),
   orbit revolutions (24s/32s/40s/52s), 70 canvas particles drift.
   Asset cost: 0 new (reuses /images/narrators/*.webp).
   ============================================================ */

.hero-visual{
  position:relative;
  display:flex;justify-content:center;align-items:center;
  min-height:540px;
  container-type:inline-size;
  container-name:hero-visual;
  animation:fade-up 1s ease-out both;
  animation-delay:.3s;
}

.pulse-aurora{
  position:relative;
  width:min(560px,100%);
  aspect-ratio:1 / 1;
  isolation:isolate;
}

/* Canvas particles layer (drift outward, fade, breathing glow) */
.pulse-aurora__canvas{
  position:absolute;inset:-8%;
  width:116%;height:116%;
  z-index:1;
  pointer-events:none;
}

/* Soft purple-gold halo (breathing) */
.pulse-aurora__halo{
  position:absolute;inset:-12%;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 50%,rgba(212,165,116,.30) 0%,transparent 60%),
    radial-gradient(ellipse 85% 80% at 50% 55%,rgba(76,52,128,.38) 0%,transparent 72%),
    radial-gradient(ellipse 38% 28% at 50% 40%,rgba(255,240,210,.12) 0%,transparent 55%);
  filter:blur(14px);
  animation:halo-breath 7s ease-in-out infinite;
}
@keyframes halo-breath{
  0%,100%{transform:scale(.94);opacity:.78}
  50%{transform:scale(1.08);opacity:1}
}

/* Central orb : 3 layered gradients (2 conic + 1 radial core + ring) */
.pulse-aurora__orb{
  position:absolute;
  top:50%;left:50%;
  width:54%;aspect-ratio:1/1;
  transform:translate(-50%,-50%);
  z-index:3;
  border-radius:50%;
  animation:orb-breath 7s ease-in-out infinite;
}
@keyframes orb-breath{
  0%,100%{transform:translate(-50%,-50%) scale(.96)}
  50%{transform:translate(-50%,-50%) scale(1.04)}
}

.pulse-aurora__orb-conic{
  position:absolute;inset:0;
  border-radius:50%;
  background:conic-gradient(
    from 0deg,
    rgba(212,165,116,.05) 0deg,
    rgba(212,165,116,.65) 60deg,
    rgba(255,235,200,.85) 110deg,
    rgba(212,165,116,.45) 170deg,
    rgba(76,52,128,.30) 240deg,
    rgba(44,122,170,.55) 300deg,
    rgba(212,165,116,.05) 360deg
  );
  filter:blur(10px);
  opacity:.85;
  animation:conic-spin 28s linear infinite;
  mix-blend-mode:screen;
}
.pulse-aurora__orb-conic--rev{
  inset:8%;
  background:conic-gradient(
    from 180deg,
    rgba(168,185,230,.20) 0deg,
    rgba(212,165,116,.55) 90deg,
    rgba(255,240,210,.45) 180deg,
    rgba(76,52,128,.50) 270deg,
    rgba(168,185,230,.20) 360deg
  );
  filter:blur(8px);
  animation:conic-spin-rev 45s linear infinite;
  opacity:.7;
}
@keyframes conic-spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes conic-spin-rev{
  from{transform:rotate(360deg)}
  to{transform:rotate(0deg)}
}

.pulse-aurora__orb-core{
  position:absolute;inset:18%;
  border-radius:50%;
  background:
    radial-gradient(circle at 38% 32%,rgba(255,250,235,.95) 0%,rgba(255,235,200,.55) 22%,rgba(212,165,116,.45) 45%,transparent 70%),
    radial-gradient(circle at 50% 50%,rgba(212,165,116,.85) 0%,rgba(76,52,128,.55) 55%,rgba(11,15,26,.85) 100%);
  box-shadow:
    inset 0 0 60px rgba(255,235,200,.35),
    inset 0 -20px 40px rgba(76,52,128,.45),
    0 0 80px rgba(212,165,116,.45);
  animation:core-pulse 7s ease-in-out infinite;
}
@keyframes core-pulse{
  0%,100%{box-shadow:inset 0 0 40px rgba(255,235,200,.25),inset 0 -20px 40px rgba(76,52,128,.45),0 0 50px rgba(212,165,116,.35)}
  50%{box-shadow:inset 0 0 80px rgba(255,235,200,.55),inset 0 -20px 40px rgba(76,52,128,.45),0 0 120px rgba(212,165,116,.65)}
}

.pulse-aurora__orb-ring{
  position:absolute;inset:-6%;
  border-radius:50%;
  border:1px solid rgba(212,165,116,.30);
  box-shadow:0 0 0 1px rgba(255,255,255,.04) inset;
  animation:ring-pulse 7s ease-in-out infinite;
  pointer-events:none;
}
@keyframes ring-pulse{
  0%,100%{transform:scale(1);opacity:.55}
  50%{transform:scale(1.06);opacity:.95}
}

/* Orbit tracks : each portrait sits on its own orbit, full rotation. */
.pulse-aurora__orbit{
  position:absolute;
  top:50%;left:50%;
  border-radius:50%;
  pointer-events:none;
  z-index:4;
  transform-origin:center center;
}
.pulse-aurora__orbit--a{ /* Kiran, large slow orbit */
  width:78%;height:78%;
  margin:-39% 0 0 -39%;
  animation:orbit-spin 24s linear infinite;
}
.pulse-aurora__orbit--b{ /* Alma */
  width:88%;height:88%;
  margin:-44% 0 0 -44%;
  animation:orbit-spin 32s linear infinite reverse;
  animation-delay:-8s;
}
.pulse-aurora__orbit--c{ /* Soren */
  width:96%;height:96%;
  margin:-48% 0 0 -48%;
  animation:orbit-spin 40s linear infinite;
  animation-delay:-18s;
}
.pulse-aurora__orbit--d{ /* Nala, outer slow */
  width:104%;height:104%;
  margin:-52% 0 0 -52%;
  animation:orbit-spin 52s linear infinite reverse;
  animation-delay:-30s;
}
@keyframes orbit-spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

/* Planets (portraits) : positioned at top of orbit, counter-rotate so face stays upright */
.pulse-aurora__planet{
  position:absolute;
  top:0;left:50%;
  margin:0;
  width:18%;aspect-ratio:1/1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  overflow:hidden;
  animation:planet-counter 24s linear infinite;
}
.pulse-aurora__orbit--a .pulse-aurora__planet{width:22%;animation:planet-counter 24s linear infinite}
.pulse-aurora__orbit--b .pulse-aurora__planet{width:17%;animation:planet-counter 32s linear infinite reverse;animation-delay:-8s}
.pulse-aurora__orbit--c .pulse-aurora__planet{width:17%;animation:planet-counter 40s linear infinite;animation-delay:-18s}
.pulse-aurora__orbit--d .pulse-aurora__planet{width:16%;animation:planet-counter 52s linear infinite reverse;animation-delay:-30s}
@keyframes planet-counter{
  from{transform:translate(-50%,-50%) rotate(0deg)}
  to{transform:translate(-50%,-50%) rotate(-360deg)}
}
.pulse-aurora__orbit--b .pulse-aurora__planet,
.pulse-aurora__orbit--d .pulse-aurora__planet{
  /* reverse parent => positive counter-rotation */
  animation-direction:normal;
}
.pulse-aurora__orbit--b .pulse-aurora__planet{animation-name:planet-counter-rev}
.pulse-aurora__orbit--d .pulse-aurora__planet{animation-name:planet-counter-rev}
@keyframes planet-counter-rev{
  from{transform:translate(-50%,-50%) rotate(0deg)}
  to{transform:translate(-50%,-50%) rotate(360deg)}
}

.pulse-aurora__planet img{
  display:block;
  width:100%;height:100%;
  object-fit:cover;
  border-radius:50%;
  border:1.5px solid rgba(212,165,116,.55);
  box-shadow:
    0 12px 36px -6px rgba(0,0,0,.65),
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 0 22px -4px rgba(212,165,116,.55);
}
.pulse-aurora__orbit--a .pulse-aurora__planet img{
  border:2px solid rgba(212,165,116,.75);
  box-shadow:
    0 18px 44px -6px rgba(0,0,0,.75),
    0 0 0 2px rgba(212,165,116,.25) inset,
    0 0 32px -4px rgba(212,165,116,.75);
}

/* Outer ring : 9 satellites supporting (Lila, Zara, Elena, Noam, Tao, Maya, Luna, Onyx, Enzo)
   distributed every 40 degrees, slow counter-rotation = visible motion + true 13 experts count. */
.pulse-aurora__outer-ring{
  position:absolute;
  top:50%;left:50%;
  width:122%;height:122%;
  margin:-61% 0 0 -61%;
  border-radius:50%;
  pointer-events:none;
  z-index:3;
  animation:orbit-spin 75s linear infinite reverse;
}
.pulse-aurora__satellite{
  position:absolute;
  top:50%;left:50%;
  width:10%;aspect-ratio:1/1;
  margin:0;
  /* Place at --angle on ring edge. translateY -450% pushes satellite ~45% out from ring center
     (relative to satellite own size = 10% of ring, so 450% = 45% of ring radius). */
  transform:translate(-50%,-50%) rotate(var(--angle,0deg)) translateY(-450%);
  border-radius:50%;
  overflow:hidden;
}
.pulse-aurora__satellite img{
  display:block;
  width:100%;height:100%;
  object-fit:cover;
  border-radius:50%;
  border:1px solid rgba(212,165,116,.40);
  box-shadow:
    0 5px 14px -3px rgba(0,0,0,.55),
    0 0 14px -2px rgba(212,165,116,.40);
  opacity:.82;
  /* Counter-rotation : annule
     (a) le tilt initial du satellite (rotate(--angle) bake dans son transform)
     (b) la rotation du parent outer-ring (75s reverse = -360deg).
     Resultat : visage strictement droit a tout instant. */
  animation:satellite-upright 75s linear infinite;
  transform-origin:center center;
}
@keyframes satellite-upright{
  from{transform:rotate(calc(-1 * var(--angle,0deg)))}
  to{transform:rotate(calc(-1 * var(--angle,0deg) + 360deg))}
}

/* "13 experts" caption : floating below orb */
.pulse-aurora__caption{
  position:absolute;
  left:50%;bottom:-.6rem;
  transform:translateX(-50%);
  display:flex;align-items:baseline;gap:.5rem;
  padding:.5rem 1.1rem;
  background:rgba(11,15,26,.78);
  border:1px solid rgba(212,165,116,.32);
  border-radius:999px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:6;
  white-space:nowrap;
  animation:caption-fade 1.2s ease-out .9s both;
}
@keyframes caption-fade{
  from{opacity:0;transform:translateX(-50%) translateY(8px)}
  to{opacity:1;transform:translateX(-50%) translateY(0)}
}
.pulse-aurora__caption-count{
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.4rem;font-weight:700;
  color:var(--gold,#D4A574);
  line-height:1;
}
.pulse-aurora__caption-label{
  font-size:.74rem;
  color:rgba(255,255,255,.80);
  text-transform:uppercase;letter-spacing:.14em;
}

/* Container queries : graceful scaling */
@container hero-visual (max-width:480px){
  .hero-visual{min-height:400px}
  .pulse-aurora__caption-count{font-size:1.2rem}
  .pulse-aurora__caption-label{font-size:.66rem;letter-spacing:.12em}
}

/* Mobile fallback : stack under content + simplification de l'animation */
@media(max-width:959px){
  .hero-visual{order:2;margin-top:1.5rem;min-height:440px}
  .hero-content{order:1}
  .pulse-aurora{width:min(440px,90%)}
}
/* Portrait / narrow viewport : cache les 9 satellites outer (trop bruyant <720px),
   garde orbe + 4 inner planets, centre le texte hero. */
@media(max-width:720px){
  .pulse-aurora__outer-ring{display:none}
  .hero-content{
    text-align:center;
    align-items:center;
  }
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-reassurance{text-align:center}
  .hero-cta-stack{align-items:center}
}
@media(max-width:540px){
  .hero-visual{min-height:380px}
  .pulse-aurora{width:min(340px,92%)}
}

/* Accessibility : respect reduce-motion */
@media(prefers-reduced-motion:reduce){
  .pulse-aurora__canvas{display:none}
  .pulse-aurora__halo,
  .pulse-aurora__orb,
  .pulse-aurora__orb-conic,
  .pulse-aurora__orb-conic--rev,
  .pulse-aurora__orb-core,
  .pulse-aurora__orb-ring,
  .pulse-aurora__orbit,
  .pulse-aurora__planet,
  .pulse-aurora__outer-ring,
  .pulse-aurora__satellite,
  .pulse-aurora__caption{
    animation:none !important;
    transition:none !important;
  }
  .pulse-aurora__orb{transform:translate(-50%,-50%) scale(1) !important}
  .pulse-aurora__halo{transform:scale(1) !important;opacity:.95 !important}
  .pulse-aurora__orb-ring{transform:scale(1) !important;opacity:.7 !important}
  /* Static layout : place portraits at fixed cardinal points */
  .pulse-aurora__orbit--a{transform:rotate(15deg)}
  .pulse-aurora__orbit--b{transform:rotate(110deg)}
  .pulse-aurora__orbit--c{transform:rotate(215deg)}
  .pulse-aurora__orbit--d{transform:rotate(305deg)}
  .pulse-aurora__planet{transform:translate(-50%,-50%) rotate(0deg) !important}
  .pulse-aurora__orbit--a .pulse-aurora__planet{transform:translate(-50%,-50%) rotate(-15deg) !important}
  .pulse-aurora__orbit--b .pulse-aurora__planet{transform:translate(-50%,-50%) rotate(-110deg) !important}
  .pulse-aurora__orbit--c .pulse-aurora__planet{transform:translate(-50%,-50%) rotate(-215deg) !important}
  .pulse-aurora__orbit--d .pulse-aurora__planet{transform:translate(-50%,-50%) rotate(-305deg) !important}
}

/* ── Award/Trust strip (Fondamental #2 audit 2026-05-22 + standards 2026) ── */
.award-strip{
  position:relative;
  padding:2rem 1.5rem 2.5rem;
  margin:0 auto;
}
.award-strip-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
  max-width:1100px;
  margin:0 auto;
}
@media(min-width:720px){
  .award-strip-inner{grid-template-columns:repeat(3,1fr);gap:1.5rem}
}

.award-card{
  position:relative;
  padding:1.5rem 1.25rem;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,0.025),rgba(212,165,116,0.04));
  border:1px solid rgba(212,165,116,0.2);
  text-align:center;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),border-color .25s ease;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
@supports not (backdrop-filter:blur(1px)){
  .award-card{background:linear-gradient(180deg,rgba(11,15,26,0.6),rgba(11,15,26,0.4))}
}
.award-card:hover{
  transform:translateY(-3px);
  border-color:rgba(212,165,116,0.4);
}

.award-card-value{
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
  margin-bottom:.75rem;
}
.award-stars{
  display:inline-flex;gap:2px;
  color:var(--gold);
}
.award-stars svg{width:18px;height:18px}
.award-number{
  font-family:'Playfair Display',serif;
  font-size:2.4rem;font-weight:700;
  line-height:1;
  color:var(--gold);
  letter-spacing:.01em;
  text-shadow:0 0 24px rgba(212,165,116,0.25);
}
.award-card-label{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--text-primary);
  font-weight:600;
  margin-bottom:.35rem;
}
.award-card-sublabel{
  font-size:.78rem;
  color:var(--text-muted);
  font-style:italic;
  letter-spacing:.02em;
}

/* Reveal scroll-driven (standards 2026) */
@supports (animation-timeline:view()){
  .award-card{
    animation:award-reveal linear both;
    animation-timeline:view();
    animation-range:entry 0% cover 30%;
  }
  @keyframes award-reveal{
    from{opacity:0;transform:translateY(28px)}
    to{opacity:1;transform:translateY(0)}
  }
}

/* ── Fondamental #3 : Glow gold hero-badge + scale-in key-facts (standards 2026) ── */
/* Glow gold scroll-driven sur hero-badge (effet wow au scroll-in) */
.hero-badge{position:relative}
@supports (animation-timeline:view()){
  .hero-badge{
    box-shadow:0 0 0 0 rgba(212,165,116,0);
    animation:badge-glow ease-out both;
    animation-timeline:view();
    animation-range:entry 0% cover 20%;
  }
  @keyframes badge-glow{
    from{box-shadow:0 0 0 0 rgba(212,165,116,0)}
    50%{box-shadow:0 0 24px 2px rgba(212,165,116,0.35)}
    to{box-shadow:0 0 16px 1px rgba(212,165,116,0.18)}
  }
}

/* Scale-in scroll-driven sur key-facts (count-up visual proxy) */
@supports (animation-timeline:view()){
  .key-fact{
    animation:keyfact-pop ease-out both;
    animation-timeline:view();
    animation-range:entry 0% cover 40%;
  }
  @keyframes keyfact-pop{
    from{opacity:0;transform:scale(0.6) translateY(20px)}
    60%{opacity:1;transform:scale(1.06) translateY(0)}
    to{opacity:1;transform:scale(1) translateY(0)}
  }
  .key-fact-value{
    background:linear-gradient(135deg,var(--gold) 0%,#e6c489 50%,var(--gold) 100%);
    background-size:200% 200%;
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:gold-shimmer 3s ease-in-out infinite;
  }
  @keyframes gold-shimmer{
    0%,100%{background-position:0% 50%}
    50%{background-position:100% 50%}
  }
}

@media(prefers-reduced-motion:reduce){
  .award-card,.hero-badge,.hero-badge-countup{
    animation:none !important;
    transform:none !important;
  }
  .award-card:hover{transform:none !important}
}

@media(max-width:540px){
  .award-strip{padding:1.25rem 1rem 1.75rem}
  .award-card{padding:1.25rem 1rem}
  .award-number{font-size:2rem}
  .award-stars svg{width:15px;height:15px}
}

/* --- Key Facts Strip --- */
.key-facts-strip{
  display:flex;flex-wrap:wrap;justify-content:center;gap:2.5rem;
  padding:2rem 2rem;
  background:rgba(15,19,32,.85);
  border-top:1px solid rgba(212,175,55,.12);
  border-bottom:1px solid rgba(212,175,55,.12);
}
.key-fact{
  display:flex;flex-direction:column;align-items:center;gap:.35rem;
  min-width:120px;
}
.key-fact-icon{
  color:var(--gold);opacity:.8;
  width:28px;height:28px;
}
.key-fact-icon svg{width:28px;height:28px}
.key-fact-value{
  font-family:'Playfair Display',serif;
  font-size:1.7rem;font-weight:700;
  color:var(--gold);
  line-height:1.1;
}
.key-fact-label{
  font-size:.78rem;color:var(--text-sec);
  text-transform:uppercase;letter-spacing:1px;
  text-align:center;
}

/* --- Trust Banner --- */
.trust-banner{
  display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;
  padding:1.25rem 2rem;
  background:var(--glass);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--glass-border);
}
.trust-item{
  display:flex;align-items:center;gap:.5rem;
  font-size:.78rem;color:var(--text-sec);
  text-transform:uppercase;letter-spacing:1.2px;
  white-space:nowrap;
}
.trust-icon{width:18px;height:18px;opacity:.7;flex-shrink:0}
.trust-icon svg{width:100%;height:100%;fill:currentColor}

/* --- Social Proof Section --- */
.social-proof-section{
  padding:3.5rem 2rem;
  background:var(--bg-secondary);
  border-bottom:1px solid var(--border);
}

/* Google Play badge */
.sp-play-badge{
  display:inline-flex;align-items:center;gap:.75rem;
  background:#1a1a1a;
  border:1.5px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:.7rem 1.5rem .7rem 1.1rem;
  color:var(--text);
  text-decoration:none;
  transition:border-color .3s,transform .2s,box-shadow .3s;
  margin-bottom:2.5rem;
}
.sp-play-badge:hover{
  border-color:rgba(255,255,255,.3);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,.3);
  text-decoration:none;
  color:var(--text);
}
.sp-play-icon{
  width:24px;height:24px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.sp-play-icon svg{width:24px;height:24px}
.sp-play-text{display:flex;flex-direction:column;text-align:left;line-height:1.2}
.sp-play-small{
  font-family:'Space Grotesk','DM Sans',sans-serif;
  font-size:.55rem;text-transform:uppercase;letter-spacing:1px;
  color:var(--text-sec);
}
.sp-play-big{
  font-family:'DM Sans',sans-serif;
  font-size:1.05rem;font-weight:600;
  color:var(--text);letter-spacing:.3px;
}

/* Stats row */
.sp-stats{
  display:flex;justify-content:center;align-items:center;gap:3rem;
  margin-bottom:2.5rem;
  flex-wrap:wrap;
}
.sp-stat{
  display:flex;flex-direction:column;align-items:center;gap:.35rem;
}
.sp-stat-icon{
  width:28px;height:28px;color:var(--gold);opacity:.75;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.2rem;
}
.sp-stat-icon svg{width:100%;height:100%}
.sp-stat-value{
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.5rem;font-weight:600;color:var(--text);
  line-height:1;
}
.sp-stat-label{
  font-family:'Space Grotesk','DM Sans',sans-serif;
  font-size:.7rem;text-transform:uppercase;letter-spacing:1.5px;
  color:var(--text-muted);
}

/* Testimonials (placeholder — uncomment when ready) */
.sp-testimonials{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.25rem;max-width:900px;margin:0 auto 2.5rem;
}
.sp-testimonial{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.5rem;text-align:left;
}
.sp-testimonial-text{
  font-size:.92rem;color:var(--text-sec);
  line-height:1.6;margin-bottom:.75rem;
  font-style:italic;
}
.sp-testimonial-author{display:flex;flex-direction:column;gap:.15rem}
.sp-testimonial-name{font-size:.85rem;font-weight:600;color:var(--text)}
.sp-testimonial-role{font-size:.72rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}

/* Trust guarantees row */
.sp-guarantees{
  display:flex;justify-content:center;align-items:center;gap:2rem;
  flex-wrap:wrap;
  padding-top:.5rem;
}
.sp-guarantee{
  display:flex;align-items:center;gap:.45rem;
  font-family:'Space Grotesk','DM Sans',sans-serif;
  font-size:.72rem;color:var(--text-muted);
  text-transform:uppercase;letter-spacing:1px;
  white-space:nowrap;
}
.sp-guarantee-icon{
  width:16px;height:16px;flex-shrink:0;opacity:.6;
  display:flex;align-items:center;justify-content:center;
}
.sp-guarantee-icon svg{width:100%;height:100%}

/* --- Sections --- */
.section{padding:6rem 2rem}
.section-inner{max-width:var(--max-w);margin:0 auto}
.section-alt{background:var(--bg-secondary)}
.section-label{
  display:inline-block;
  font-size:.7rem;font-weight:600;
  text-transform:uppercase;letter-spacing:2.5px;
  color:var(--gold);
  margin-bottom:1rem;
}

/* --- Feature Sections (alternating layout) --- */
.feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.feature-row.reverse .feature-text{order:2}
.feature-row.reverse .feature-visual{order:1}
.feature-text h2{margin-bottom:.75rem}
.feature-text p{max-width:480px;font-size:1.05rem;line-height:1.75}
.feature-checks{margin-top:1.5rem;display:flex;flex-direction:column;gap:.75rem}
.feature-check{
  display:flex;align-items:center;gap:.75rem;
  font-size:.95rem;color:var(--text-sec);
}
.feature-check-icon{
  width:22px;height:22px;flex-shrink:0;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.feature-check-icon svg{width:14px;height:14px}
.feature-visual{
  display:flex;align-items:center;justify-content:center;
}
.feature-img{
  width:100%;max-width:380px;
  border-radius:var(--radius);
  object-fit:cover;
  box-shadow:0 16px 48px rgba(0,0,0,.3);
  border:1px solid var(--border);
  transition:transform .4s ease,box-shadow .4s ease;
}
.feature-img:hover{
  transform:scale(1.03);
  box-shadow:0 24px 64px rgba(0,0,0,.4);
}

/* --- Cards --- */
.card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.75rem;
  transition:border-color .25s,transform .25s,box-shadow .25s;
}
.card:hover{border-color:rgba(212,165,116,.2);transform:translateY(-2px);box-shadow:0 8px 32px rgba(0,0,0,.2)}

/* --- Grids --- */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}

/* --- Pourquoi Nala (selling points) --- */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin-top:2.5rem;
}
.why-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem 1.5rem;
  text-align:center;
  transition:border-color .25s,transform .25s;
}
.why-card:hover{border-color:rgba(212,165,116,.15);transform:translateY(-2px)}
.why-card-icon{
  width:48px;height:48px;margin:0 auto 1rem;
  color:var(--gold);opacity:.8;
}
.why-card-icon svg{width:100%;height:100%}
.why-card h3{font-size:1rem;margin-bottom:.4rem}
.why-card p{font-size:.88rem;color:var(--text-muted);margin:0;line-height:1.5}

/* --- Narrator Hero Card (Nala) --- */
.narrator-hero{
  display:flex;gap:2rem;align-items:center;
  max-width:680px;margin:0 auto 2.5rem;padding:2rem;
  background:linear-gradient(135deg,rgba(212,165,116,.08),rgba(184,135,74,.04));
  border:1px solid rgba(184,135,74,.25);
  border-radius:var(--radius);text-align:left;
}
.narrator-hero img{
  width:160px;height:160px;border-radius:50%;
  border:3px solid var(--gold);object-fit:cover;flex-shrink:0;
}
.narrator-hero-content h3{color:var(--gold);font-size:1.5rem;margin:0 0 .3rem}
.narrator-hero-badge{
  display:inline-block;
  font-family:'Space Grotesk',sans-serif;font-size:.65rem;font-weight:600;
  text-transform:uppercase;letter-spacing:1.5px;
  padding:.25rem .8rem;border-radius:50px;
  background:rgba(212,165,116,.15);color:var(--gold);
  border:1px solid rgba(212,165,116,.25);
  margin-bottom:.75rem;
}
.narrator-hero-content p{color:var(--text-sec);font-size:.95rem;line-height:1.6;margin:.75rem 0 0}
.narrator-hero .narrator-sessions{margin-top:.75rem;display:inline-block}

/* --- Narrator Compact Grid (4 cols) --- */
.narrator-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.25rem;max-width:900px;margin:0 auto;
  justify-content:center;
}
.narrator-card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem 1rem;
  text-align:center;display:flex;flex-direction:column;align-items:center;
  transition:transform .3s,box-shadow .3s;
}
.narrator-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.25)}
.narrator-card img{
  width:100px;height:100px;border-radius:50%;
  object-fit:cover;margin-bottom:.75rem;
  border:2px solid var(--narrator-color,var(--gold));
}
.narrator-card h3{color:var(--narrator-color,var(--gold));font-size:1rem;margin:0 0 .4rem}
.narrator-specialty{
  font-family:'Space Grotesk',sans-serif;font-size:.65rem;
  text-transform:uppercase;letter-spacing:1px;
  padding:.2rem .6rem;border-radius:50px;
  background:color-mix(in srgb,var(--narrator-color,var(--gold)) 15%,transparent);
  color:var(--narrator-color,var(--gold));
  border:1px solid color-mix(in srgb,var(--narrator-color,var(--gold)) 30%,transparent);
  margin-bottom:.5rem;display:inline-block;
}
.narrator-tagline{font-size:.8rem;color:var(--text-sec);line-height:1.4;margin:0 0 .4rem}
.narrator-sessions{
  font-family:'Space Grotesk',sans-serif;font-size:.65rem;
  color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;
  margin-top:auto;
}
.narrator-grid-compact{grid-template-columns:repeat(5,1fr);gap:1rem}
.narrator-card-compact{padding:1rem .75rem}
.narrator-card-compact img{width:72px;height:72px;margin-bottom:.5rem}
.narrator-card-compact h3{font-size:.9rem;margin:0 0 .3rem}
.narrator-tagline-compact{font-size:.75rem;color:var(--text-muted);line-height:1.3;margin:0;max-height:2.6em;overflow:hidden}

/* --- Phone Mockups / Screenshots --- */
.screenshots-scroll{
  display:flex;gap:1.5rem;overflow-x:auto;
  padding:2rem 0 1rem;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  justify-content:center;
}
.screenshots-scroll::-webkit-scrollbar{height:4px}
.screenshots-scroll::-webkit-scrollbar-track{background:transparent}
.screenshots-scroll::-webkit-scrollbar-thumb{background:var(--border);border-radius:4px}
.phone-frame{
  flex:0 0 auto;width:180px;scroll-snap-align:center;
  background:var(--bg-card);
  border-radius:28px;padding:8px;
  border:1.5px solid rgba(255,255,255,.08);
  box-shadow:0 8px 40px rgba(0,0,0,.3);
  transition:transform .3s;
}
.phone-frame:hover{transform:translateY(-4px)}
.phone-screen{border-radius:22px;aspect-ratio:9/20;overflow:hidden;display:flex;align-items:center;justify-content:center}

/* --- Video — Cinematic Showcase --- */
.video-section{position:relative;background:var(--bg-primary)}
.video-title{font-size:clamp(1.75rem,4vw,2.5rem);margin-bottom:.5rem}

.video-showcase{
  position:relative;
  max-width:360px;
  margin:0 auto;
  padding:3px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(212,165,116,.3),rgba(155,126,200,.2),rgba(74,111,165,.2));
}
@media(min-width:768px){.video-showcase{max-width:320px}}
.video-showcase::before{
  content:'';
  position:absolute;inset:-8px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(212,165,116,.15),rgba(155,126,200,.08),rgba(74,111,165,.08));
  filter:blur(20px);
  z-index:-1;
}

.video-container{
  border-radius:18px;overflow:hidden;
  position:relative;
  background:#000;
  aspect-ratio:9/16;
}
.demo-video{width:100%;height:100%;display:block;background:#000;object-fit:cover}

/* Play button overlay */
.video-play{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  background:rgba(11,15,26,.45);
  cursor:pointer;
  transition:background .4s,opacity .4s;
}
.video-play:hover{background:rgba(11,15,26,.25)}
.video-play.hidden{opacity:0;pointer-events:none}
.video-play-btn{
  width:80px;height:80px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.15);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:transform .3s,background .3s,box-shadow .3s;
}
.video-play:hover .video-play-btn{
  transform:scale(1.1);
  background:rgba(255,255,255,.2);
  box-shadow:0 0 40px rgba(212,165,116,.2);
}
.video-play-btn svg{width:28px;height:28px;fill:#fff;margin-left:4px}

/* --- Pricing --- */
.pricing-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.5rem;max-width:720px;margin:2rem auto 0;
}
.pricing-grid.pricing-grid-3{
  grid-template-columns:1fr 1fr 1fr;
  max-width:960px;
}
.pricing-grid.pricing-grid-4{
  grid-template-columns:repeat(4,1fr);
  max-width:1200px;
  gap:1.25rem;
}
@media (max-width:1024px){
  .pricing-grid.pricing-grid-4{grid-template-columns:1fr 1fr;max-width:720px}
}
@media (max-width:560px){
  .pricing-grid.pricing-grid-4{grid-template-columns:1fr;max-width:420px}
}
.pricing-card{
  background:var(--glass);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid var(--glass-border);
  border-radius:var(--radius);
  padding:2.5rem 2rem;
  text-align:left;
  position:relative;
  transition:border-color .3s,transform .3s;
}
.pricing-card:hover{transform:translateY(-3px)}
.pricing-card.free{border-color:rgba(255,255,255,.15)}
.pricing-card.premium{border-color:var(--gold)}
.pricing-card.student{border-color:var(--accent-luna)}
.pricing-card.student::before{
  content:'';position:absolute;inset:-1px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,rgba(244,166,193,.15),rgba(212,165,116,.08));
  z-index:-1;
}
.student-badge{background:var(--accent-luna) !important;color:#0B0F1A !important}
.student-badge span{font-weight:800}
.btn-student{background:var(--accent-luna);color:#0B0F1A}
.btn-student:hover{background:#f7b8d1;color:#0B0F1A}
.pricing-card.premium::before{
  content:'';position:absolute;inset:-1px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,rgba(212,165,116,.2),rgba(155,126,200,.1));
  z-index:-1;
}
.pricing-card.platinum{border-color:#9b7ec8}
.pricing-card.platinum::before{
  content:'';position:absolute;inset:-1px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,rgba(155,126,200,.25),rgba(212,165,116,.12));
  z-index:-1;
}
.platinum-badge{background:#9b7ec8 !important;color:#0B0F1A !important}
.btn-platinum{background:linear-gradient(135deg,#9b7ec8,#7b5fb0);color:#fff}
.btn-platinum:hover{background:linear-gradient(135deg,#ad94d5,#8f72c1);color:#fff}
.pricing-popular{
  position:absolute;top:-12px;right:20px;
  font-family:'Space Grotesk',sans-serif;
  font-size:.68rem;font-weight:600;
  text-transform:uppercase;letter-spacing:1.5px;
  background:var(--gold);color:#0B0F1A;
  padding:.3rem 1rem;border-radius:50px;
}
.pricing-card h3{font-size:1.15rem;color:var(--gold);margin-bottom:.75rem}
.pricing-price{font-size:2rem;font-weight:700;color:var(--text);margin-bottom:.25rem}
.pricing-alt{font-size:.88rem;color:var(--text-muted);margin-bottom:.35rem}
.pricing-savings{font-size:.82rem;font-weight:600;color:var(--gold);margin-bottom:1.25rem;background:rgba(212,175,55,.1);border-radius:6px;padding:.3rem .7rem;display:inline-block}
.pricing-features{list-style:none;padding:0;margin:0 0 1.5rem}
.pricing-features li{list-style:none}
.pricing-features li{
  padding:.45rem 0;font-size:.9rem;color:var(--text-sec);
  display:flex;align-items:center;gap:.6rem;
}
.pricing-features li svg{width:16px;height:16px;flex-shrink:0;color:var(--gold)}
.pricing-card .btn{width:100%;justify-content:center;margin-top:auto}
.btn-pricing{padding:.85rem 1.5rem;font-size:.9rem}

/* --- Section CTA --- */
.btn-section-cta{margin-top:1.75rem;display:inline-flex;padding:.75rem 1.75rem;font-size:.95rem}

/* --- Comparison Table --- */
.comparison-table{width:100%;max-width:760px;margin:0 auto;overflow-x:auto;-webkit-overflow-scrolling:touch}
.comparison-table table{width:100%;border-collapse:collapse;border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden}
.comparison-table thead{background:rgba(212,165,116,.08)}
.comparison-table th{padding:.85rem 1rem;text-align:center;font-size:.9rem;font-weight:600;color:var(--gold);border-bottom:1px solid var(--border)}
.comparison-table th:first-child{text-align:left}
.comparison-table td{padding:.7rem 1rem;border-bottom:1px solid rgba(255,255,255,.06);font-size:.9rem;color:var(--text-sec)}
.comparison-table tbody th{padding:.7rem 1rem;font-size:.9rem;font-weight:500;border-bottom:1px solid rgba(255,255,255,.06);color:var(--text-main)}
.comparison-table .feature-name{text-align:left;color:var(--text-main);font-weight:500}
.comparison-table .plan-col{text-align:center;min-width:64px}
.comparison-table .premium-col{background:rgba(212,165,116,.035)}
.comparison-table .platinum-col{background:rgba(212,165,116,.08)}
.comparison-table th.platinum-col{color:var(--gold);background:rgba(212,165,116,.14);border-left:1px solid rgba(212,165,116,.25);border-right:1px solid rgba(212,165,116,.25);font-weight:700;letter-spacing:.3px}
.comparison-table td.platinum-col{border-left:1px solid rgba(212,165,116,.1);border-right:1px solid rgba(212,165,116,.1)}
.comparison-table .cmp-yes{color:var(--gold);font-size:1.1rem;font-weight:700}
.comparison-table .cmp-no{color:var(--text-muted);font-size:1rem}
.comparison-table .cmp-text{color:var(--gold);font-weight:600;font-size:.85rem}
.comparison-table tr:last-child td{border-bottom:none}

/* --- FAQ --- */
.faq{max-width:700px}
.faq details{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  margin-bottom:.75rem;
  overflow:hidden;
  transition:background .2s;
}
.faq details[open]{background:var(--bg-card)}
.faq summary{
  cursor:pointer;font-weight:600;font-size:1rem;
  color:var(--text);
  list-style:none;
  display:flex;justify-content:space-between;align-items:center;
  padding:1.15rem 1.25rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:'';
  width:20px;height:20px;flex-shrink:0;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23D4A574' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition:transform .3s ease;
}
.faq details[open] summary::after{transform:rotate(180deg)}
.faq .faq-answer{padding:0 1.25rem 1.15rem;color:var(--text-sec);font-size:.95rem;line-height:1.7}

/* --- CTA Inline (discret, dans les articles) --- */
.cta-inline{margin:1.5rem 0;padding:.6rem 0;font-size:.95rem}
.cta-inline a{color:var(--gold);text-decoration:none;font-weight:500;transition:opacity .2s}
.cta-inline a:hover{opacity:.8;text-decoration:underline}

/* --- Sovaluna Hero Card (remplace le bloc "bientôt disponible") --- */
.sovaluna-hero{padding-top:2rem;padding-bottom:2rem}
.sovaluna-card{
  max-width:1000px;margin:0 auto;
  display:grid;grid-template-columns:minmax(240px,320px) 1fr;gap:2.5rem;
  align-items:center;
  background:radial-gradient(circle at top left,rgba(155,142,222,0.10),transparent 55%),linear-gradient(145deg,rgba(255,255,255,0.015),rgba(212,165,116,0.04));
  border:1px solid rgba(212,165,116,.22);
  border-radius:24px;
  padding:2.25rem;
  position:relative;overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.25),0 0 0 1px rgba(212,165,116,.06) inset;
}
.sovaluna-card::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(circle at 85% 20%,rgba(212,165,116,0.08),transparent 40%);
}
.sovaluna-card-visual{position:relative;display:flex;flex-direction:column;align-items:center;gap:.85rem}
.sovaluna-card-visual img{
  width:100%;max-width:260px;aspect-ratio:1/1;
  border-radius:20px;object-fit:cover;
  border:1px solid rgba(212,165,116,.25);
  box-shadow:0 12px 40px rgba(0,0,0,.35);
}
.sovaluna-narrator-label{
  font-size:.8rem;color:var(--text-muted);letter-spacing:.3px;
  text-align:center;font-weight:500;
}
.sovaluna-card-body{position:relative;z-index:1}
.sovaluna-badge{
  display:inline-block;padding:.35rem .8rem;
  background:rgba(212,165,116,.14);color:var(--gold);
  font-size:.72rem;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;
  border:1px solid rgba(212,165,116,.3);border-radius:999px;
  margin-bottom:1rem;
}
.sovaluna-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,5vw,3rem);
  color:#fff;margin:0 0 .5rem;letter-spacing:-.5px;
}
.sovaluna-subtitle{
  font-size:1.05rem;color:var(--text-sec);line-height:1.55;
  margin:0 0 1.25rem;max-width:520px;
}
.sovaluna-features{list-style:none;padding:0;margin:0 0 1.5rem;display:flex;flex-direction:column;gap:.7rem}
.sovaluna-features li{
  display:flex;align-items:flex-start;gap:.7rem;
  color:var(--text-sec);font-size:.92rem;line-height:1.5;
}
.sovaluna-check{
  flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  background:rgba(212,165,116,.15);color:var(--gold);
}
.sovaluna-check svg{width:13px;height:13px}
.sovaluna-cta-row{display:flex;flex-wrap:wrap;gap:.85rem;align-items:center}
.sovaluna-cta-row .btn-section-cta{margin-top:0}
@media (max-width:720px){
  .sovaluna-card{grid-template-columns:1fr;padding:1.75rem;gap:1.5rem;text-align:center}
  .sovaluna-card-visual img{max-width:200px}
  .sovaluna-features li{text-align:left}
  .sovaluna-cta-row{justify-content:center}
}

/* --- CTA Box --- */
.cta-box{
  background:linear-gradient(135deg,rgba(212,165,116,.08),rgba(74,111,165,.06));
  border:1px solid rgba(212,165,116,.15);
  border-radius:var(--radius);
  padding:4rem 2.5rem;
  text-align:center;
  margin:0 auto;
}
.cta-box h2{color:var(--gold);font-size:clamp(1.5rem,3vw,2.25rem)}
.cta-box p{max-width:520px;margin:1rem auto;font-size:1.05rem}

/* --- Footer --- */
.footer{border-top:1px solid var(--border);padding:3.5rem 2rem 2rem;background:var(--bg-primary)}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:flex;flex-wrap:wrap;gap:2.5rem;justify-content:space-between}
.footer-col{min-width:180px}
.footer-col h4{
  font-family:'Space Grotesk',sans-serif;
  font-size:.75rem;text-transform:uppercase;letter-spacing:2px;
  color:var(--gold);margin-bottom:.75rem;
}
.footer-col a{display:block;color:var(--text-muted);font-size:.875rem;margin-bottom:.5rem;transition:color .2s}
.footer-col a:hover{color:var(--text)}
.footer-social{display:flex;gap:1rem;margin-top:.75rem}
.footer-social a{color:var(--text-muted);transition:color .2s}
.footer-social a:hover{color:var(--gold)}
.footer-social svg{width:20px;height:20px}
.footer-bottom{max-width:var(--max-w);margin:2rem auto 0;padding-top:1.5rem;border-top:1px solid var(--border);text-align:center;color:var(--text-muted);font-size:.8rem}

/* --- SEO Footer Links --- */
.seo-footer-links{max-width:var(--max-w);margin:0 auto;padding:3rem 2rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem}
.seo-footer-links h4{
  font-family:'Space Grotesk',sans-serif;
  font-size:.75rem;text-transform:uppercase;letter-spacing:2px;
  color:var(--gold);margin-bottom:.75rem;
}
.seo-footer-links a{display:block;color:var(--text-muted);font-size:.85rem;margin-bottom:.45rem;transition:color .2s}
.seo-footer-links a:hover{color:var(--text)}

/* --- Article (blog/seo pages) --- */
.article{max-width:720px}
.article h2{margin-top:2.5rem;font-family:'Playfair Display',serif}
.article p{font-size:1.05rem;line-height:1.8}
.article ul,.article ol{margin:1rem 0 1.5rem 1.5rem;color:var(--text-sec)}
.article li{margin-bottom:.5rem}
.article strong{color:var(--text)}
.article em{color:var(--gold)}

/* --- Blog Cards --- */
.blog-card{display:block;color:inherit}
.blog-card:hover{text-decoration:none}
.blog-card .blog-meta{font-size:.8rem;color:var(--text-muted);margin-bottom:.5rem}
.blog-card h3{font-family:'Playfair Display',serif;color:var(--text);margin-bottom:.5rem;transition:color .2s}
.blog-card:hover h3{color:var(--gold)}
.blog-card .blog-excerpt{font-size:.9rem;color:var(--text-sec)}

/* --- Comparison Table --- */
.compare-table{width:100%;border-collapse:collapse;margin:2rem 0}
.compare-table th,.compare-table td{padding:.75rem 1rem;text-align:left;border-bottom:1px solid var(--border);font-size:.9rem}
.compare-table th{color:var(--text);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:1px}
.compare-table td{color:var(--text-sec)}
.compare-table td:first-child{color:var(--text);font-weight:500}
.compare-table td:nth-child(2){color:var(--gold);font-weight:600}
.compare-table thead th{border-bottom:2px solid var(--gold)}

/* --- Scroll Reveal Animations --- */
.reveal{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.from-left{transform:translateX(-32px)}
.reveal.from-right{transform:translateX(32px)}
.revealed{opacity:1;transform:translate(0,0)}

/* Stagger delays */
.reveal-d1{transition-delay:.1s}
.reveal-d2{transition-delay:.2s}
.reveal-d3{transition-delay:.3s}
.reveal-d4{transition-delay:.4s}

/* --- Accessibility --- */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .reveal{opacity:1;transform:none}
  .hero-badge,.hero h1,.hero-sub,.hero .btn,.hero-store-badge,.hero-reassurance,.scroll-indicator{
    animation:none;opacity:1;transform:none;
  }
}

/* --- Responsive: Tablet (768px) --- */
@media(max-width:768px){
  .section{padding:4.5rem 1.5rem}
  .feature-row{grid-template-columns:1fr;gap:2.5rem}
  .feature-row.reverse .feature-text{order:1}
  .feature-row.reverse .feature-visual{order:2}
  .narrator-hero{flex-direction:column;text-align:center}
  .narrator-hero img{width:120px;height:120px}
  .narrator-grid{grid-template-columns:repeat(3,1fr)}
  .narrator-grid-compact{grid-template-columns:repeat(3,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid,.pricing-grid.pricing-grid-3{grid-template-columns:1fr;max-width:400px}
  .hero{min-height:90vh}
  .sp-testimonials{grid-template-columns:1fr;max-width:400px}
  .sp-stats{gap:2rem}
}

/* --- Responsive: Mobile (640px) --- */
@media(max-width:640px){
  .section{padding:3.5rem 1rem}
  .nav{padding:0 1rem}
  .nav-links .hide-mobile{display:none}
  .hamburger{display:flex}
  .nav-open .nav-links{
    display:flex;flex-direction:column;
    position:absolute;top:64px;left:0;right:0;
    background:rgba(11,15,26,.97);
    backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
    padding:1.5rem;
    border-bottom:1px solid var(--glass-border);
    gap:1rem;
  }
  .nav-open .nav-links .hide-mobile{display:block}
  .nav-open .hamburger span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
  .nav-open .hamburger span:nth-child(2){opacity:0}
  .nav-open .hamburger span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

  .hero{min-height:85vh}
  .hero h1{font-size:clamp(1.75rem,7vw,2.5rem)}
  .hero-sub{font-size:1rem}
  .btn-lg{font-size:1rem;padding:1rem 2.2rem}

  /* Narrators mobile */
  .narrator-hero{padding:1.25rem;gap:1rem}
  .narrator-hero img{width:90px;height:90px}
  .narrator-hero-content h3{font-size:1.1rem}
  .narrator-hero-content p{font-size:.85rem}
  .narrator-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}
  .narrator-grid-compact{grid-template-columns:repeat(2,1fr);gap:.75rem}
  .narrator-card{padding:1rem .75rem}
  .narrator-card img{width:72px;height:72px;margin-bottom:.5rem}
  .narrator-card h3{font-size:.9rem}
  .narrator-tagline{font-size:.72rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .narrator-tagline-compact{font-size:.7rem;max-height:2.1em}
  .why-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr;max-width:100%}

  .footer-inner{flex-direction:column;gap:1.5rem}
  .seo-footer-links{grid-template-columns:repeat(2,1fr);padding:2rem 1rem}

  .key-facts-strip{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;padding:1.2rem 1rem}
  .key-fact{min-width:0}
  .key-fact-icon svg{width:20px;height:20px}
  .key-fact-value{font-size:1.3rem}
  .key-fact-label{font-size:.65rem;letter-spacing:.5px}
  .trust-banner{gap:1rem;padding:1rem}
  .trust-item{font-size:.72rem;letter-spacing:.8px}

  .phone-frame{width:150px}
  .compare-table{font-size:.8rem}
  .compare-table th,.compare-table td{padding:.5rem .6rem}

  /* Comparison table mobile : reduce padding + font + min-width */
  .comparison-table th,.comparison-table td{padding:.55rem .4rem;font-size:.78rem}
  .comparison-table .plan-col{min-width:54px}
  .comparison-table .feature-name{font-size:.78rem}
  .comparison-table .cmp-text{font-size:.72rem}
  .comparison-table .cmp-yes{font-size:1rem}

  /* Pricing cards : moins de padding sur mobile */
  .pricing-card{padding:1.75rem 1.5rem}
  .pricing-price{font-size:1.75rem}
  .pricing-card h3{font-size:1.05rem}
  .pricing-features li{font-size:.85rem}

  .cta-box{padding:3rem 1.5rem}

  /* Social proof mobile */
  .social-proof-section{padding:2.5rem 1rem}
  .sp-stats{gap:2rem}
  .sp-stat-value{font-size:1.35rem}
  .sp-guarantees{flex-direction:column;gap:.6rem;align-items:center}
  .sp-guarantee{font-size:.7rem;letter-spacing:.5px;white-space:normal}
}

/* --- Small mobile (375px) --- */
@media(max-width:375px){
  .hero{min-height:80vh}
  .hero h1{font-size:1.75rem}
  .btn-lg{font-size:.95rem;padding:.9rem 1.8rem}
  .section{padding:3rem 1rem}
  .pricing-card{padding:1.75rem 1.25rem}

  /* Social proof small */
  .sp-play-badge{margin-bottom:1.5rem}
  .sp-stats{gap:1.5rem}
  .sp-stat-value{font-size:1.2rem}

  /* Narrators small */
  .narrator-grid{gap:.6rem}
  .narrator-card{padding:.75rem .5rem}
  .narrator-card img{width:64px;height:64px}
  .narrator-card h3{font-size:.85rem}
  .narrator-tagline{display:none}
}

/* ============================================================
   GEO — AI-extractable content blocks
   ============================================================ */

/* Key Takeaway (AI extraction target) */
.key-takeaway{
  background:linear-gradient(135deg,rgba(212,165,116,.06),rgba(212,165,116,.02));
  border-left:3px solid var(--gold);
  border-radius:0 8px 8px 0;
  padding:1.25rem 1.5rem;
  margin:2rem 0;
  font-size:1rem;
  line-height:1.7;
}
.key-takeaway strong{color:var(--gold)}

/* Definition Block */
.definition-block{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:8px;
  padding:1.25rem 1.5rem;
  margin:1.5rem 0;
}
.definition-block dt{font-weight:600;color:var(--gold);margin-bottom:.5rem}
.definition-block dd{color:var(--text-sec);font-size:.95rem;line-height:1.7;margin:0}

/* Statistics Highlight */
.stat-highlight{
  display:inline-block;
  background:rgba(212,165,116,.1);
  border-radius:4px;
  padding:.1rem .45rem;
  font-weight:600;
  color:var(--gold);
}

/* Sources Section */
.sources-section{
  margin-top:2rem;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
}
.sources-section h3{font-size:.9rem;color:var(--text-muted);margin-bottom:.75rem;text-transform:uppercase;letter-spacing:.5px}
.sources-section ol{padding-left:1.25rem}
.sources-section li{font-size:.85rem;color:var(--text-muted);margin-bottom:.5rem;line-height:1.5}

/* Table of Contents */
.toc{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:8px;
  padding:1.25rem 1.5rem;
  margin:0 0 2rem;
}
.toc h3{font-size:.8rem;text-transform:uppercase;letter-spacing:1px;color:var(--text-muted);margin-bottom:.75rem}
.toc ol{padding-left:1.25rem}
.toc li{margin-bottom:.4rem}
.toc a{color:var(--text-sec);font-size:.92rem;text-decoration:none;transition:color .15s}
.toc a:hover{color:var(--gold)}

/* --- Glossary --- */
.glossary-nav{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:2rem;padding:1rem 0;border-bottom:1px solid var(--border)}
.glossary-nav a,.glossary-nav span{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:var(--radius-sm);
  font-size:.9rem;font-weight:600;text-decoration:none;
  transition:background .15s,color .15s;
}
.glossary-nav a{color:var(--gold);border:1px solid var(--border)}
.glossary-nav a:hover{background:var(--gold);color:var(--bg)}
.glossary-nav span{color:var(--text-muted);opacity:.4}
.glossary-list{margin:0;padding:0}
.glossary-term{
  padding:1.5rem 0;
  border-bottom:1px solid var(--border);
}
.glossary-term:first-child{border-top:1px solid var(--border)}
.glossary-term dt{margin:0}
.glossary-term dd{margin:0}
@media(max-width:600px){
  .glossary-nav a,.glossary-nav span{width:32px;height:32px;font-size:.8rem}
}
