/* ================================================================
   landing.css — Page d'accueil LexaMoon (v2)
   Design : dark glassmorphism purple/gold, micro-interactions
   Animations : constellation, tilt 3D, magnétisme, dégradé animé
================================================================ */

/* ── Canvas particules ────────────────────────────────────────── */
#lp-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Orbes de fond ────────────────────────────────────────────── */
.lp-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.lp-orb-1 {
  width: 1100px; height: 1100px;
  background: radial-gradient(circle at 35% 35%, rgba(124,58,237,.22) 0%, transparent 65%);
  top: -520px; left: -420px;
  animation: lpOrb1 26s ease-in-out infinite;
}
.lp-orb-2 {
  width: 900px; height: 900px;
  background: radial-gradient(circle at 60% 60%, rgba(245,158,11,.14) 0%, transparent 65%);
  bottom: -360px; right: -360px;
  animation: lpOrb2 32s ease-in-out infinite;
}
.lp-orb-3 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(14,165,233,.09) 0%, transparent 65%);
  top: 42%; left: 44%;
  animation: lpOrb3 21s ease-in-out infinite;
}
@keyframes lpOrb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(110px,70px) scale(1.06); }
  66%     { transform: translate(-60px,120px) scale(.96); }
}
@keyframes lpOrb2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-130px,-90px); }
}
@keyframes lpOrb3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%     { transform: translate(-50%,-50%) scale(1.7); }
}

/* ── Page root ────────────────────────────────────────────────── */
.page-landing {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Nav ──────────────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.lp-nav.lp-nav--scrolled {
  background: rgba(5,5,12,.78);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 8px 40px rgba(0,0,0,.3);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.15rem 2rem;
  gap: 2rem;
}
.lp-logo {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.lp-nav-links {
  display: flex;
  gap: 1.75rem;
  flex: 1;
}
.lp-nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.lp-nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pl), var(--aml));
  transition: right .3s cubic-bezier(.22,.68,0,1.2);
  border-radius: 1px;
}
.lp-nav-link:hover { color: var(--t1); }
.lp-nav-link:hover::after { right: 0; }
.lp-nav-actions {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
}

/* ── Animations d'entrée hero (stagger) ───────────────────────── */
.lp-anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.22,.68,0,1.2), transform .8s cubic-bezier(.22,.68,0,1.2);
}
.lp-anim.lp-visible { opacity: 1; transform: none; }

/* ── Scroll reveal ────────────────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.22,.68,0,1.2), transform .8s cubic-bezier(.22,.68,0,1.2);
}
.lp-reveal.lp-in { opacity: 1; transform: none; }

/* ── Shimmer btn ──────────────────────────────────────────────── */
.lp-shimmer-btn { position: relative; overflow: hidden; }
.lp-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  animation: lpShimmer 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lpShimmer {
  0%   { left: -100%; }
  45%  { left: 170%; }
  100% { left: 170%; }
}

/* ── Magnetic button ──────────────────────────────────────────── */
[data-magnetic] {
  transition: transform .45s cubic-bezier(.22,.68,0,1.2);
  will-change: transform;
}
[data-magnetic].lp-mag-active {
  transition: transform .08s linear;
}

/* ── Dégradé animé sur .gtext (scopé landing) ─────────────────── */
.page-landing .lp-h1 .gtext,
.page-landing .lp-section-title .gtext,
.page-landing .lp-tournament-title .gtext {
  background: linear-gradient(
    90deg,
    #fbbf24 0%,
    #f59e0b 25%,
    #fcd34d 50%,
    #f59e0b 75%,
    #fbbf24 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: lpGradShift 7s linear infinite;
}
@keyframes lpGradShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 220% 0%; }
}

/* ── Eyebrow ──────────────────────────────────────────────────── */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.22);
  color: var(--aml);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  position: relative;
  overflow: hidden;
}
.lp-eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.12), transparent);
  transform: translateX(-100%);
  animation: lpEyebrowSwipe 3.5s ease-in-out infinite;
}
@keyframes lpEyebrowSwipe {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.lp-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--am);
  box-shadow: 0 0 6px var(--am);
  animation: lpDotPulse 2s ease infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@keyframes lpDotPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 6px var(--am); }
  50%     { opacity: .45; box-shadow: 0 0 2px var(--am); }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.lp-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  z-index: 2;
}
.lp-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
  width: 100%;
}
.lp-hero-copy { flex: 1; min-width: 0; }
.lp-h1 {
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.055em;
  margin: 0 0 1.25rem;
}
.lp-h1 .gtext {
  display: inline-block;
  position: relative;
}
/* Traits décoratifs autour du mot "Lexa Moon" */
.lp-h1 .gtext::before {
  content: '✦';
  position: absolute;
  top: -.1em;
  left: -.55em;
  font-size: .35em;
  color: var(--am);
  opacity: .6;
  animation: lpTwinkle 2.5s ease-in-out infinite;
}
@keyframes lpTwinkle {
  0%,100% { opacity: .25; transform: scale(1) rotate(0deg); }
  50%     { opacity: 1; transform: scale(1.3) rotate(180deg); }
}
.lp-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--t2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 2.25rem;
}
.lp-hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.lp-cta-main {
  font-size: 15px;
  padding: .95rem 1.85rem;
  gap: .5rem;
}

/* Trust pills */
.lp-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.lp-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t3);
  padding: .3rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .25s, border-color .25s, color .25s;
}
.lp-trust-pill:hover {
  background: rgba(124,58,237,.08);
  border-color: rgba(124,58,237,.22);
  color: var(--t2);
}
.lp-trust-pill svg { color: var(--pl); flex-shrink: 0; }

/* ── Visuel flottant hero ─────────────────────────────────────── */
.lp-hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  perspective: 1500px;
}
.lp-visual-glow {
  position: absolute;
  width: 320px; height: 320px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.28) 0%, transparent 70%);
  pointer-events: none;
  animation: lpGlowPulse 4s ease-in-out infinite;
}
@keyframes lpGlowPulse {
  0%,100% { opacity: .8; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;  transform: translate(-50%,-50%) scale(1.2); }
}

/* Carte générique */
.lp-card {
  position: absolute;
  background: rgba(18,12,34,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  box-shadow:
    0 8px 40px rgba(0,0,0,.5),
    0 0 0 .5px rgba(255,255,255,.06) inset;
  will-change: transform;
  transform-style: preserve-3d;
}
.lp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Carte vidéo */
.lp-card-video {
  top: 0; left: 0;
  width: 260px;
  padding: 0;
  overflow: hidden;
  animation: lpFloat1 6s ease-in-out infinite;
}
@keyframes lpFloat1 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.lp-card-video-thumb {
  position: relative;
  height: 140px;
  background:
    radial-gradient(ellipse at 30% 0%,  rgba(124,58,237,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(34,211,238,.18) 0%, transparent 60%),
    linear-gradient(180deg, #0b0520 0%, #160a36 100%);
  overflow: hidden;
}
/* Grille subtile en fond */
.lp-card-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 26px 22px;
  opacity: .9;
  pointer-events: none;
}
.lp-card-video-glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 90%;
  background: radial-gradient(ellipse at 70% 100%, rgba(74,222,128,.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Graphique trading dans la thumb ===== */
.lp-video-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.lp-video-chart-grid { opacity: .55; }

/* Bougies : montée verticale depuis scale(0) */
.lp-vc-candle {
  transform-origin: center bottom;
  transform-box: fill-box;
  animation: lpVcCandleIn .55s cubic-bezier(.22,.9,.28,1) both;
  animation-delay: var(--d, 0s);
  filter: drop-shadow(0 0 6px rgba(74,222,128,.15));
}
@keyframes lpVcCandleIn {
  from { transform: scaleY(.12); opacity: 0; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* Tracé de la ligne (moyenne mobile) */
.lp-video-chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: lpVcDraw 2.2s cubic-bezier(.4,0,.2,1) .4s forwards;
  filter: drop-shadow(0 2px 10px rgba(74,222,128,.35));
}
@keyframes lpVcDraw {
  to { stroke-dashoffset: 0; }
}
.lp-video-chart-fill {
  opacity: 0;
  animation: lpVcFill .8s ease-out 1.6s forwards;
}
@keyframes lpVcFill {
  to { opacity: 1; }
}

/* Point final pulsant */
.lp-video-chart-dot {
  opacity: 0;
  animation: lpVcDotIn .4s ease-out 2.3s forwards;
  filter: drop-shadow(0 0 6px rgba(34,211,238,.85));
}
.lp-video-chart-dot-ring {
  opacity: 0;
  transform-origin: 320px 14px;
  animation: lpVcDotIn .4s ease-out 2.3s forwards, lpVcRingPulse 1.8s ease-out 2.7s infinite;
}
@keyframes lpVcDotIn {
  to { opacity: 1; }
}
@keyframes lpVcRingPulse {
  0%   { transform: scale(.9); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ===== Étiquette prix en haut à gauche ===== */
.lp-card-video-price {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px 5px 7px;
  border-radius: 10px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  z-index: 3;
  animation: lpVcChipIn .5s cubic-bezier(.22,.9,.28,1) .2s both;
}
@keyframes lpVcChipIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-cv-symbol {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .3px;
}
.lp-cv-change {
  font-size: 10px;
  font-weight: 800;
  color: #4ade80;
  background: rgba(74,222,128,.15);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(74,222,128,.25);
}

/* ===== Bouton play (overlay central) ===== */
.lp-card-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  padding-left: 3px;
  box-shadow:
    0 10px 30px rgba(124,58,237,.45),
    0 0 0 8px rgba(255,255,255,.04);
  animation: lpPlayPulse 2.8s ease-in-out infinite;
  z-index: 4;
}
@keyframes lpPlayPulse {
  0%,100% { box-shadow: 0 10px 30px rgba(124,58,237,.4), 0 0 0 8px rgba(255,255,255,.04); }
  50%     { box-shadow: 0 10px 30px rgba(124,58,237,.55), 0 0 0 16px rgba(124,58,237,.16); }
}

.lp-card-video-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,.6);
  color: rgba(255,255,255,.9);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  z-index: 3;
}
.lp-card-video-meta { padding: 11px 14px 13px; }
.lp-card-video-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 3px;
}
.lp-card-video-sub { font-size: 10.5px; color: var(--t3); }

/* Carte ticker */
.lp-card-ticker {
  bottom: 30px; right: 0;
  width: 210px;
  padding: 12px 14px;
  animation: lpFloat2 7s ease-in-out infinite;
}
@keyframes lpFloat2 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.lp-card-ticker-hd {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 10px;
}
.lp-ticker-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px #4ade80;
  flex-shrink: 0;
  animation: lpDotPulse 2s ease infinite;
}

/* Carte chart mini (SVG animée) */
.lp-card-chart {
  top: 150px; left: -30px;
  width: 170px;
  padding: 12px 14px;
  animation: lpFloat4 9s ease-in-out infinite;
}
@keyframes lpFloat4 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.lp-chart-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.lp-chart-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lp-chart-val {
  font-size: 12px;
  font-weight: 800;
  color: #4ade80;
}
.lp-chart-svg {
  display: block;
  width: 100%;
  height: 48px;
  overflow: visible;
}
.lp-chart-path {
  fill: none;
  stroke: url(#lpChartGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: lpChartDraw 4s ease-out forwards, lpChartPulse 3s ease-in-out 4s infinite;
  filter: drop-shadow(0 0 6px rgba(74,222,128,.5));
}
.lp-chart-fill {
  fill: url(#lpChartFill);
  opacity: 0;
  animation: lpChartFade 1s ease-out 2.5s forwards;
}
@keyframes lpChartDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes lpChartFade {
  to { opacity: 1; }
}
@keyframes lpChartPulse {
  0%,100% { filter: drop-shadow(0 0 6px rgba(74,222,128,.5)); }
  50%     { filter: drop-shadow(0 0 12px rgba(74,222,128,.8)); }
}

/* Carte notif */
.lp-card-notif {
  top: 55px; right: 0;
  width: 210px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: lpFloat3 8s ease-in-out infinite;
}
@keyframes lpFloat3 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
.lp-card-notif-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(124,58,237,.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(124,58,237,.25);
}
.lp-card-notif-body { flex: 1; min-width: 0; }
.lp-card-notif-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-card-notif-sub {
  font-size: 10px;
  color: var(--t3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-card-notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px #4ade80, 0 0 0 4px rgba(74,222,128,.15);
  animation: lpDotPulse 2.4s ease infinite;
}

/* ── Barre stats avec accents lumineux ────────────────────────── */
.lp-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 3.5rem auto 0;
  padding: 1.5rem 2.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.lp-stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.35), transparent);
}
.lp-stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.35), transparent);
}
.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lp-stat-val {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.lp-stat-lbl {
  font-size: 10.5px;
  color: var(--t3);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.lp-stat-sep {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent);
}

/* Flèche scroll */
.lp-scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.lp-scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,.25);
  border-bottom: 2px solid rgba(255,255,255,.25);
  transform: rotate(45deg);
  animation: lpScrollBounce 2.2s ease-in-out infinite;
}
@keyframes lpScrollBounce {
  0%,100% { opacity: .4; transform: rotate(45deg) translateY(0); }
  50%     { opacity: .9; transform: rotate(45deg) translateY(6px); }
}

/* ── MARQUEE ──────────────────────────────────────────────────── */
.lp-marquee-wrap {
  position: relative;
  z-index: 2;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(124,58,237,.025), rgba(245,158,11,.025));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.lp-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.lp-marquee-track {
  display: flex;
  gap: 2.75rem;
  width: max-content;
  animation: lpMarquee 55s linear infinite;
  will-change: transform;
}
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
@keyframes lpMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.lp-mq-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 13.5px;
  color: var(--t2);
  white-space: nowrap;
  letter-spacing: .01em;
}
.lp-mq-item b {
  font-weight: 900;
  color: var(--t1);
  letter-spacing: -.01em;
  font-size: 14px;
}
.lp-mq-item em {
  font-style: normal;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--aml);
  letter-spacing: -.01em;
}
.lp-mq-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── Features ─────────────────────────────────────────────────── */
.lp-features {
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}
.lp-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.lp-section-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lp-section-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pl);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.22);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.lp-section-title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin: 0;
}

/* Grille features avec tilt 3D */
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lp-feat-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: border-color .3s, box-shadow .3s;
  will-change: transform;
}
/* Gradient de surface en haut-gauche */
.lp-feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}
/* Glow qui suit le curseur (var --mx / --my) */
.lp-feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(124,58,237,.20),
    transparent 45%
  );
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.lp-feat-card:hover {
  border-color: rgba(124,58,237,.32);
  box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    0 0 0 1px rgba(124,58,237,.15);
}
.lp-feat-card:hover::after { opacity: 1; }

.lp-feat-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.22,.68,0,1.2);
}
.lp-feat-card:hover .lp-feat-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}
.lp-feat-icon--purple { background: rgba(124,58,237,.15); color: #a78bfa; border: 1px solid rgba(124,58,237,.24); }
.lp-feat-icon--blue   { background: rgba(37,99,235,.15);  color: #60a5fa; border: 1px solid rgba(37,99,235,.24); }
.lp-feat-icon--gold   { background: rgba(245,158,11,.14); color: #fbbf24; border: 1px solid rgba(245,158,11,.24); }
.lp-feat-icon--teal   { background: rgba(20,184,166,.14); color: #2dd4bf; border: 1px solid rgba(20,184,166,.24); }

.lp-feat-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--t1);
  margin: 0 0 .65rem;
  letter-spacing: -.02em;
}
.lp-feat-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  flex: 1;
}
.lp-feat-foot {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: .85rem;
  margin-top: auto;
}
.lp-feat-foot svg { color: #4ade80; flex-shrink: 0; }

/* ── STEPS / Comment ça marche ────────────────────────────────── */
.lp-steps {
  padding: 5rem 2rem 6rem;
  position: relative;
  z-index: 2;
}
.lp-steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
/* Ligne de progression animée entre les steps */
.lp-steps-list::before {
  content: '';
  position: absolute;
  top: 58px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124,58,237,.45) 15%,
    rgba(245,158,11,.45) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: lpStepsLine 4s linear infinite;
  z-index: 0;
}
@keyframes lpStepsLine {
  0%   { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}
.lp-step {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem 1.75rem;
  background: rgba(18,12,34,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), border-color .3s, box-shadow .3s;
  will-change: transform;
}
.lp-step:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,.3);
  box-shadow: 0 22px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(245,158,11,.15);
}
.lp-step-num-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(18,12,34,.9);
  border: 2px solid rgba(124,58,237,.35);
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: 0 0 0 6px rgba(124,58,237,.08), 0 10px 30px rgba(0,0,0,.4);
}
.lp-step-num-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, var(--pl), var(--aml), var(--pl));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: lpStepRotate 4s linear infinite;
}
@keyframes lpStepRotate {
  to { transform: rotate(360deg); }
}
.lp-step-num {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: transparent;
  background: linear-gradient(135deg, var(--pl), var(--aml));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}
.lp-step-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 .6rem;
  color: var(--t1);
}
.lp-step-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  margin: 0;
}

/* ── Section tournoi ──────────────────────────────────────────── */
.lp-tournament {
  position: relative;
  padding: 5.5rem 2rem;
  overflow: hidden;
  z-index: 2;
}
.lp-tournament-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lp-tournament-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
}
.lp-tournament-glow--tl {
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(124,58,237,.14) 0%, transparent 65%);
}
.lp-tournament-glow--br {
  bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 65%);
}
.lp-tournament-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  animation: lpGridDrift 60s linear infinite;
}
@keyframes lpGridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}
.lp-tournament-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.lp-tournament-content { flex: 1; min-width: 0; }
.lp-tournament-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  color: #34d399;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.lp-tournament-eyebrow svg { flex-shrink: 0; }
.lp-tournament-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 0 0 1.1rem;
}
.lp-tournament-desc {
  font-size: 14.5px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 0 2rem;
}
.lp-tournament-desc strong { color: var(--t1); }
.lp-tournament-cta { margin-top: .25rem; }

/* Récompenses */
.lp-t-rewards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-bottom: 2rem;
}
.lp-t-reward {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.05rem;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s, background .25s, transform .25s;
}
.lp-t-reward:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.lp-t-reward--gold   { border-color: rgba(245,158,11,.22); background: rgba(245,158,11,.06); }
.lp-t-reward--silver { border-color: rgba(148,163,184,.2); }
.lp-t-reward--bronze { border-color: rgba(180,120,64,.22); background: rgba(180,120,64,.05); }
.lp-t-medal {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s;
}
.lp-t-reward:hover .lp-t-medal { transform: scale(1.15) rotate(-5deg); }
.lp-t-rank {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 1px;
}
.lp-t-xp {
  font-size: 11px;
  color: var(--t3);
  font-weight: 600;
}

/* Podium */
.lp-podium-wrap {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.lp-podium-glow {
  position: absolute;
  width: 280px; height: 280px;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.22) 0%, transparent 70%);
  pointer-events: none;
  animation: lpGlowPulse 4s ease-in-out infinite;
}
.lp-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.lp-pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  transition: transform .3s;
}
.lp-pod:hover { transform: translateY(-4px); }
.lp-pod-crown {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 2px;
  animation: lpCrownBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(245,158,11,.5));
}
@keyframes lpCrownBounce {
  0%,100% { transform: translateY(0) rotate(0); }
  25%     { transform: translateY(-6px) rotate(-6deg); }
  75%     { transform: translateY(-6px) rotate(6deg); }
}
.lp-pod-av {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.lp-pod--1 .lp-pod-av {
  width: 64px; height: 64px;
  font-size: 1.5rem;
  box-shadow: 0 0 0 3px rgba(245,158,11,.5), 0 10px 30px rgba(0,0,0,.5), 0 0 25px rgba(245,158,11,.3);
}
.lp-pod--2 .lp-pod-av,
.lp-pod--3 .lp-pod-av {
  width: 48px; height: 48px;
  font-size: 1.1rem;
}
.lp-pod-medal {
  position: absolute;
  bottom: -4px; right: -4px;
  font-size: .95rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.lp-pod-name {
  font-size: .7rem;
  font-weight: 700;
  color: var(--t2);
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.lp-pod-pts {
  font-size: .72rem;
  font-weight: 800;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.22);
  border-radius: 999px;
  padding: .15rem .55rem;
}
.lp-pod-bar {
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: hidden;
}
.lp-pod-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, transparent, rgba(255,255,255,.1));
}
.lp-pod-bar--1 { width: 32px; height: 60px; background: rgba(245,158,11,.22); }
.lp-pod-bar--2 { width: 28px; height: 40px; background: rgba(148,163,184,.14); }
.lp-pod-bar--3 { width: 28px; height: 28px; background: rgba(180,120,64,.14); }
.lp-podium-label {
  font-size: .72rem;
  color: var(--t3);
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  z-index: 1;
  position: relative;
}
.lp-podium-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding: 2.5rem;
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 20px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.lp-podium-placeholder-icon {
  font-size: 2.5rem;
  opacity: .5;
  animation: lpCrownBounce 3s ease-in-out infinite;
}
.lp-podium-placeholder-txt {
  font-size: 13px;
  font-weight: 700;
  color: var(--t2);
  line-height: 1.6;
}
.lp-podium-placeholder-txt span { font-size: 11.5px; color: var(--t3); font-weight: 500; }

/* ── Trust strip ──────────────────────────────────────────────── */
.lp-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1.4rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 2;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 12.5px;
  color: var(--t2);
  font-weight: 600;
  transition: color .2s;
}
.lp-trust-item:hover { color: var(--t1); }
.lp-trust-item svg { color: var(--pl); flex-shrink: 0; }
.lp-trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

/* ── Light theme overrides ────────────────────────────────────── */
html.light .lp-card {
  background: rgba(255,255,255,.88);
  border-color: rgba(0,0,0,.08);
}
html.light .lp-feat-card {
  background: rgba(255,255,255,.7);
  border-color: rgba(0,0,0,.07);
}
html.light .lp-feat-card:hover { border-color: rgba(124,58,237,.3); }
html.light .lp-step {
  background: rgba(255,255,255,.7);
  border-color: rgba(0,0,0,.07);
}
html.light .lp-step-num-wrap {
  background: rgba(255,255,255,.9);
}
html.light .lp-tournament-grid {
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
}
html.light .lp-orb-1 {
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 65%);
}
html.light .lp-stats-bar {
  background: rgba(255,255,255,.65);
  border-color: rgba(0,0,0,.06);
}
html.light .lp-t-reward {
  background: rgba(0,0,0,.03);
  border-color: rgba(0,0,0,.07);
}
html.light .lp-trust-strip {
  border-color: rgba(0,0,0,.06);
}
html.light .lp-marquee-wrap {
  border-color: rgba(0,0,0,.06);
  background: linear-gradient(90deg, rgba(124,58,237,.04), rgba(245,158,11,.04));
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

/* Tablette large */
@media (max-width: 1100px) {
  .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-inner { gap: 3rem; }
  .lp-hero-visual { width: 340px; height: 340px; }
  .lp-card-video { width: 230px; }
  .lp-card-video-thumb { height: 125px; }
  .lp-card-ticker { width: 175px; }
  .lp-card-notif  { width: 195px; }
  .lp-card-chart  { width: 150px; left: -10px; }
}

/* Tablette */
@media (max-width: 860px) {
  .lp-nav-links { display: none; }
  .lp-hero-inner {
    flex-direction: column-reverse;
    gap: 2.5rem;
    text-align: center;
  }
  .lp-hero-copy { order: 2; }
  .lp-hero-visual { order: 1; width: 100%; height: 280px; }
  .lp-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-actions { justify-content: center; }
  .lp-trust-pills { justify-content: center; }
  .lp-tournament-inner { flex-direction: column; gap: 3rem; }
  .lp-podium-wrap { width: 100%; }
  .lp-podium { gap: 1.5rem; }
  .lp-t-rewards { grid-template-columns: 1fr 1fr; }
  .lp-tournament-cta { width: 100%; justify-content: center; }
  .lp-steps-list { grid-template-columns: 1fr; gap: 1rem; }
  .lp-steps-list::before { display: none; }
  /* Recentre cartes sur tablette */
  .lp-card-video { top: 0; left: 50%; transform: translateX(-50%) !important; animation: none; }
  .lp-card-ticker { bottom: 0; right: calc(50% - 210px); animation: none; }
  .lp-card-notif  { top: auto; bottom: 0; left: calc(50% - 210px); right: auto; animation: none; }
  .lp-card-chart  { display: none; }
  .lp-visual-glow { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .lp-hero { padding: 6rem 1.25rem 3rem; }
  .lp-features,
  .lp-steps,
  .lp-tournament { padding: 4rem 1.25rem; }
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.2rem 1.5rem; }
  .lp-stat-sep { display: none; }
  .lp-t-rewards { grid-template-columns: 1fr; }
  .lp-hero-visual { height: 200px; }
  .lp-card-video { left: 50%; transform: translateX(-50%) !important; top: 0; width: 210px; }
  .lp-card-video-thumb { height: 115px; }
  .lp-card-ticker { display: none; }
  .lp-card-notif  { display: none; }
  .lp-nav-inner { padding: 1rem 1.25rem; }
  .lp-section-title { font-size: clamp(24px, 7vw, 36px); }
  .lp-tournament-title { font-size: clamp(24px, 7vw, 38px); }
  .lp-marquee-track { gap: 1.5rem; animation-duration: 40s; }
  .lp-mq-item { font-size: 12.5px; }
}

@media (max-width: 420px) {
  .lp-h1 { font-size: clamp(36px, 10vw, 52px); }
  .lp-nav-actions .btn-ghost { display: none; }
}

/* ── Préférence réduite ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .lp-marquee-track { animation: none; }
}
