/* ============================================================
   EDITORIAL SIGNAL — Landing publique (calque ADDITIF)
   Préfixe .lp-* — DA « Editorial Signal » (Claude Design) :
   near-black #060507, accent violet (#8b5cf6 → #6d28d9) +
   touche flamme (#ff5230), Archivo (titres 900 uppercase) +
   Space Mono (libellés), glows ambiants + grain filmique.
   La palette est redéfinie LOCALEMENT dans .lp : le cockpit
   (cockpit-pro.css, encre indigo) reste strictement inchangé.
   ============================================================ */

/* ------------------------------------------------------------
   1) Bascule landing ⇆ cockpit (anti-FOUC, source = session)
      L'inline script ajoute .lp-public sur <html> si anonyme.
   ------------------------------------------------------------ */

/* Par défaut la landing est masquée (utilisateur connecté → cockpit) */
[data-public-landing] {
  display: none;
}

/* Anonyme : on montre la landing, on neutralise l'auto-lock d'auth.js
   (le gate ne s'ouvre QUE sur clic CTA, pas au chargement). */
html.lp-public [data-public-landing] {
  display: block;
}
html.lp-public #cp-root {
  display: none;
}

/* Fond near-black de la DA Editorial Signal — anonyme uniquement. */
html.lp-public,
html.lp-public body {
  background: #060507;
}

/* auth.js verrouille tout pour un anonyme (is-locked + gate is-open) ;
   en contexte landing on rétablit le scroll et la visibilité du contenu,
   et on garde le gate fermé jusqu'au clic. */
html.lp-public.is-locked,
html.lp-public.is-locked body {
  overflow: auto !important;
}
html.lp-public.is-locked > body > header,
html.lp-public.is-locked > body > main,
html.lp-public.is-locked > body > [data-public-landing] {
  visibility: visible;
  pointer-events: auto;
}
html.lp-public .auth-gate.is-open,
html.lp-public.is-locked .auth-gate {
  display: none;
}

/* CTA → ouverture explicite du gate (réutilise le submit/unlock d'auth.js).
   On verrouille le scroll ; le !important bat l'override de scroll landing. */
html.lp-public.lp-gate-open,
html.lp-public.lp-gate-open body {
  overflow: hidden !important;
}
html.lp-public.lp-gate-open .auth-gate,
html.lp-public.lp-gate-open .auth-gate.is-open {
  display: flex;
}
/* Bouton de fermeture du gate (croix injectée en JS, contexte landing seulement) */
html.lp-public .auth-gate__panel {
  position: relative;
}
.lp-gate-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-full);
  color: var(--fg-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
  z-index: 2;
}
.lp-gate-close:hover {
  color: var(--fg-strong);
  border-color: var(--line-3);
}

/* ------------------------------------------------------------
   2) Palette locale (DA Editorial Signal) + cadre & rythme
      On surcharge les tokens cockpit DANS .lp : toutes les
      règles .lp-* qui consomment ces variables se repeignent.
   ------------------------------------------------------------ */
.lp {
  position: relative;
  z-index: 1;
  font-family: "Archivo", system-ui, sans-serif;
  color: #dedce6;
  -webkit-font-smoothing: antialiased;

  --lp-shell: min(1240px, 100% - 48px);
  --lp-section: clamp(44px, 3vw + 26px, 78px);

  /* Encres (clair → sombre) */
  --fg-strong: #f4f2f7;
  --fg: #dedce6;
  --fg-muted: #a8a4b3;
  /* a11y : meta/libellés 10–13px → on garde un gris ≥ AA (4.5:1) sur #060507 */
  --fg-subtle: #8c8895;

  /* Lignes / surfaces */
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.1);
  --line-3: rgba(255, 255, 255, 0.16);
  --ink-1: #0c0a10;
  --ink-2: rgba(24, 20, 32, 0.92);
  --ink-3: rgba(255, 255, 255, 0.04);
  --ink-4: rgba(255, 255, 255, 0.06);

  /* Accents */
  --brand: #8b5cf6;
  --brand-2: #a78bfa;
  --brand-3: #6d28d9;
  --brand-light: #c4b5fd;
  --brand-soft: rgba(139, 92, 246, 0.12);
  --brand-grad: linear-gradient(135deg, #8b5cf6, #6d28d9);
  --flame: #ff5230;
  --flame-2: #ff7a4d;

  /* Mono = Space Mono (consommé par les règles .lp-* via --font-mono) */
  --font-mono: "Space Mono", monospace;

  /* Touche flamme « temps réel » (eyebrow live, badge LIVE, glow chaud) */
  --tbr-red: #ff5230;
}
.lp-wrap {
  width: var(--lp-shell);
  margin-inline: auto;
}
.lp-section {
  padding-block: var(--lp-section);
  position: relative;
}

/* Glows ambiants — fixes, derrière le contenu (z-index:-1 dans .lp). */
.lp-ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.lp-ambient span {
  position: absolute;
  display: block;
  filter: blur(30px);
}
.lp-ambient-a {
  top: -15%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 62%);
  animation: lp-drift 22s ease-in-out infinite;
}
.lp-ambient-b {
  top: -10%;
  right: -10%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 60%);
  animation: lp-drift 28s ease-in-out infinite reverse;
}
.lp-ambient-c {
  top: 40%;
  left: 30%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(255, 82, 48, 0.07), transparent 65%);
  filter: blur(40px);
  animation: lp-drift 26s ease-in-out infinite;
}
@keyframes lp-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, -3%) scale(1.08);
  }
}

/* Grain filmique — overlay fixe au-dessus du contenu landing, sous la nav
   et la modale (reste dans le contexte d'empilement de .lp, z-index:1). */
.lp::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='lpn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23lpn)'/%3E%3C/svg%3E");
}

html.lp-public ::selection {
  background: #8b5cf6;
  color: #fff;
}

/* Titres landing en Archivo — bat la règle globale h1..h5 (--font-display). */
.lp h1,
.lp h2,
.lp h3,
.lp h4 {
  font-family: "Archivo", system-ui, sans-serif;
}

/* eyebrow éditorial — Space Mono, violet (— …) / flamme + dot (live) */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 22px;
}
.lp-eyebrow::before {
  content: "—";
  color: var(--brand);
  font-family: var(--font-mono);
}
.lp-eyebrow--live {
  color: var(--flame-2);
}
.lp-eyebrow--live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flame);
  animation: lp-live-pulse 1.9s ease-in-out infinite;
}

/* ------------------------------------------------------------
   3) Topnav landing (sticky + backdrop blur)
   ------------------------------------------------------------ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 5, 7, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lp-nav .topnav-inner {
  max-width: var(--lp-shell);
  padding-inline: 0;
  height: 66px;
}
.lp .brand-name {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.lp .brand-name__accent {
  background: linear-gradient(#ff7a4d, #ff5230);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp .brand-sub {
  font-family: var(--font-mono);
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.lp-nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #9b97a6;
  text-decoration: none;
  transition: color var(--duration-fast, 150ms) var(--ease-out);
}
.lp-nav-link:hover {
  color: var(--fg-strong);
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 28px;
}
.lp-link-quiet {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #9b97a6;
  transition: color var(--duration-fast, 150ms) var(--ease-out);
}
.lp-link-quiet:hover {
  color: var(--fg-strong);
}
.lp-nav .cp-btn {
  padding: 11px 20px;
  font-size: 12px;
}
@media (max-width: 820px) {
  .lp-nav-links {
    display: none;
  }
}
.lp-cta-short {
  display: none;
}
@media (max-width: 560px) {
  .lp-nav-actions {
    margin-left: auto;
  }
  .lp-nav-actions .lp-link-quiet {
    display: none;
  }
  .lp-nav .cp-btn {
    padding: 10px 16px;
    white-space: nowrap;
  }
  .lp-nav .lp-cta-full {
    display: none;
  }
  .lp-nav .lp-cta-short {
    display: inline;
  }
}

/* ------------------------------------------------------------
   4) Boutons (surcharge cp-btn DANS .lp uniquement)
   ------------------------------------------------------------ */
.lp .cp-btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 14px 24px;
  border-radius: 12px;
}
.lp .cp-btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  box-shadow: 0 14px 36px -12px rgba(124, 58, 237, 0.85);
}
.lp .cp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(124, 58, 237, 1);
}
.lp .cp-btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: #e8e6ee;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.lp .cp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   5) HERO
   ------------------------------------------------------------ */
.lp-hero {
  position: relative;
  padding-block: clamp(52px, 5vw, 88px) var(--lp-section);
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.lp-hero-title {
  font-size: clamp(2.9rem, 1.1rem + 6vw, 5.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: var(--fg-strong);
  margin: 0 0 28px;
  text-wrap: balance;
}
.lp-hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, #c4b5fd, #8b5cf6 45%, #6d28d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(139, 92, 246, 0.45));
}
.lp-hero-lede {
  font-size: clamp(1.04rem, 0.94rem + 0.5vw, 1.18rem);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 30rem;
  margin: 0 0 36px;
}
.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.lp-cta-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fg-subtle);
  margin-top: 22px;
}

/* visuel hero : carte « live » du jour */
.lp-hero-card {
  background: linear-gradient(180deg, rgba(24, 20, 32, 0.95), rgba(12, 10, 16, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 40px 90px -40px rgba(124, 58, 237, 0.5);
  position: relative;
}
.lp-hero-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 20px;
}
/* badge LIVE — touche flamme + dot pulsé */
.lp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--flame-2);
  margin-left: auto;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255, 82, 48, 0.1);
  border: 1px solid rgba(255, 82, 48, 0.25);
}
.lp-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flame);
  animation: lp-live-pulse 1.9s ease-in-out infinite;
}
@keyframes lp-live-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 82, 48, 0.55);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 7px rgba(255, 82, 48, 0);
  }
}
.lp-rank-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.lp-rank-row + .lp-rank-row {
  margin-top: 6px;
}
.lp-rank-row:first-of-type {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.22);
}
.lp-rank-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-subtle);
  width: 22px;
  flex-shrink: 0;
}
.lp-rank-row:first-of-type .lp-rank-num {
  color: var(--brand);
}
.lp-rank-body {
  min-width: 0;
  flex: 1;
}
.lp-rank-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-rank-row:first-of-type .lp-rank-title {
  color: var(--fg-strong);
}
.lp-rank-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--fg-subtle);
  margin-top: 3px;
}
.lp-rank-score {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #cfcdd8;
  flex-shrink: 0;
}
.lp-rank-row:first-of-type .lp-rank-score {
  color: #fff;
}
.lp-rank-bar {
  height: 3px;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, #7c5bd6, #9d8af0);
  margin-top: 9px;
}
.lp-rank-row:first-of-type .lp-rank-bar {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

@media (max-width: 900px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .lp-hero-card {
    order: -1;
  }
}

/* ------------------------------------------------------------
   6) Preuve sources — bandeau marquee
   ------------------------------------------------------------ */
.lp-proof {
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.012);
  margin-top: 18px;
}
.lp-proof-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 20px;
}
.lp-marquee {
  --lp-gap: 60px;
  display: flex;
  overflow: hidden;
  gap: var(--lp-gap);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lp-marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: var(--lp-gap);
  align-items: center;
  padding-right: var(--lp-gap);
  animation: lp-marquee 34s linear infinite;
}
@keyframes lp-marquee {
  to {
    transform: translateX(-100%);
  }
}
.lp-marquee:hover .lp-marquee-track {
  animation-play-state: paused;
}
.lp-source {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #b6b2c0;
  white-space: nowrap;
}
.lp-source-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

/* ------------------------------------------------------------
   7) Section heads (méthode / cockpit / couverture / tarifs)
   ------------------------------------------------------------ */
.lp-head {
  max-width: 62ch;
  margin-bottom: 40px;
}
.lp-head--center {
  margin-inline: auto;
  text-align: center;
}
.lp-h2 {
  font-size: clamp(2rem, 1.1rem + 3.4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--fg-strong);
  margin: 0 0 18px;
  text-wrap: balance;
}
.lp-sub {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* Panneaux « comment ça marche » */
.lp-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.lp-panel:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-4px);
}
.lp-panel-step {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
  margin-bottom: 18px;
  display: block;
}
.lp-panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--brand-2);
  margin-bottom: 22px;
}
.lp-panel-icon svg {
  width: 22px;
  height: 22px;
}
.lp-panel:nth-child(3) .lp-panel-icon {
  background: rgba(255, 82, 48, 0.13);
  border-color: rgba(255, 82, 48, 0.25);
  color: var(--flame-2);
}
.lp-panel-h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-strong);
  margin: 0 0 10px;
}
.lp-panel-p {
  font-size: 14px;
  line-height: 1.6;
  color: #928e9c;
  margin: 0;
}
@media (max-width: 880px) {
  .lp-panels {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   8) Dashboard « une vue, tout le signal »
   ------------------------------------------------------------ */
.lp-dash {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-dash-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.lp-dash-panel {
  padding: 30px;
  border-radius: var(--r-2xl);
  background: linear-gradient(180deg, rgba(24, 20, 32, 0.9), rgba(12, 10, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-dash-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 18px;
}
.lp-score-figure {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 26px;
}
.lp-score-num {
  font-size: clamp(3rem, 1.6rem + 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #c4b5fd, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-score-unit {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--fg-subtle);
}
.lp-velocity {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 110px;
}
.lp-velocity i {
  flex: 1;
  min-height: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, #7c5bd6, #5b3da8);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lp-velocity i.is-peak {
  background: linear-gradient(180deg, #c4b5fd, #8b5cf6);
}
.lp-dash.is-in .lp-velocity i {
  transform: scaleY(1);
}
.lp-dash-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-subtle);
  margin-top: 14px;
}
.lp-cats {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.lp-cat-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #cfcdd8;
  margin-bottom: 9px;
}
.lp-cat-dot {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  flex-shrink: 0;
}
.lp-cat-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.lp-cat-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s;
}
.lp-dash.is-in .lp-cat-fill {
  transform: scaleX(1);
}
.lp-dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 20px;
}
.lp-stat {
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.lp-stat-num {
  font-size: clamp(2.4rem, 1.6rem + 2vw, 2.9rem);
  font-weight: 900;
  line-height: 1;
  color: var(--fg-strong);
}
.lp-stat-label {
  font-size: 13px;
  color: var(--fg-subtle);
  margin-top: 8px;
}
.lp-stat--feature {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(255, 82, 48, 0.06));
  border-color: rgba(139, 92, 246, 0.2);
}
.lp-stat--feature .lp-dash-kicker {
  color: var(--brand-2);
}
.lp-stat-p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcdd8;
  margin: 0;
}
@media (max-width: 960px) {
  .lp-dash-top {
    grid-template-columns: 1fr;
  }
  .lp-dash-stats {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   9) Discover / pages événement
   ------------------------------------------------------------ */
.lp-discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lp-event {
  display: block;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  position: relative;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.lp-event:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}
.lp-event:nth-child(4) {
  background: rgba(255, 82, 48, 0.06);
  border-color: rgba(255, 82, 48, 0.18);
}
.lp-event:nth-child(4):hover {
  border-color: rgba(255, 82, 48, 0.4);
}
.lp-event-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  display: block;
}
.lp-event:nth-child(4) .lp-event-tag {
  color: var(--flame-2);
}
.lp-event-h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--fg-strong);
  margin: 0 0 9px;
}
.lp-event-p {
  font-size: 13px;
  color: #8c8895;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 920px) {
  .lp-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .lp-discover-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   10) Tarifs
   ------------------------------------------------------------ */
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}
.lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 36px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.lp-price-card:hover {
  transform: translateY(-3px);
}
.lp-price-card--feature {
  border-color: rgba(139, 92, 246, 0.35);
  background: linear-gradient(180deg, rgba(28, 22, 40, 0.9), rgba(14, 11, 20, 0.9));
  box-shadow: 0 40px 90px -50px rgba(124, 58, 237, 0.7);
}
.lp-price-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 22px;
}
.lp-price-card:not(.lp-price-card--feature) .lp-price-badge {
  color: var(--flame-2);
  background: rgba(255, 82, 48, 0.1);
  border-color: rgba(255, 82, 48, 0.25);
}
.lp-price-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-strong);
  margin: 0 0 6px;
}
.lp-price-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: #928e9c;
  margin: 0 0 26px;
}
.lp-price-amount {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 26px;
}
.lp-price-num {
  font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.lp-price-period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-subtle);
}
.lp-price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}
.lp-price-feats li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: #bcb8c6;
}
.lp-price-feats li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--brand-2);
  font-weight: 800;
}
.lp-price-cta {
  margin-top: auto;
  display: flex;
  width: 100%;
  justify-content: center;
}
@media (max-width: 760px) {
  .lp-price-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   11) CTA final (carte avec glow radial)
   ------------------------------------------------------------ */
.lp-final {
  padding-block: var(--lp-section) 0;
}
.lp-final .lp-wrap {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(56px, 6vw, 88px) 32px;
  border-radius: 28px;
  background: radial-gradient(120% 140% at 50% 0%, rgba(124, 58, 237, 0.3), transparent 60%),
    linear-gradient(180deg, rgba(20, 16, 28, 0.9), rgba(10, 8, 14, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.lp-final .lp-eyebrow {
  justify-content: center;
}
.lp-final .lp-h2 {
  margin-inline: auto;
  max-width: 18ch;
}
.lp-final .lp-sub {
  margin: 0 auto 36px;
  max-width: 30rem;
}
.lp-final .lp-cta-row {
  justify-content: center;
}

/* ------------------------------------------------------------
   12) Footer
   ------------------------------------------------------------ */
.lp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 40px;
  margin-top: 52px;
}
.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.lp-footer-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfcdd8;
}
.lp-footer-name em {
  font-style: normal;
  color: var(--flame-2);
}
.lp-footer-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
}
.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.lp-footer-links a,
.lp-footer-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-subtle);
  text-decoration: none;
  transition: color var(--duration-fast, 150ms) var(--ease-out);
}
.lp-footer-links a:hover,
.lp-footer-links button:hover {
  color: #cfcdd8;
}
@media (max-width: 640px) {
  .lp-footer-meta {
    margin-left: 0;
    width: 100%;
  }
}

/* Focus clavier visible (anneau violet) — l'anneau UA bleu est illisible
   sur le near-black. Scopé .lp : n'affecte pas le cockpit. */
.lp a:focus-visible,
.lp button:focus-visible,
.lp .cp-btn:focus-visible,
.lp-gate-close:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ------------------------------------------------------------
   13) Reveal léger (compositor-friendly)
   ------------------------------------------------------------ */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.lp-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   14) Reduced motion : neutralise marquee / pulses / glows / reveal
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .lp-marquee-track {
    animation: none;
    transform: none;
  }
  .lp-marquee {
    overflow-x: auto;
  }
  .lp-live-dot,
  .lp-eyebrow--live::before,
  .lp-ambient span {
    animation: none;
  }
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .lp-velocity i {
    transform: none;
    transition: none;
  }
  .lp-cat-fill {
    transform: none;
    transition: none;
  }
}
