/* ============================================================
   ANARYX Tweaks — thème PRO (inspiré protweakzone)
   Chargé APRÈS style.css, uniquement sur la landing.
   ============================================================ */

/* ---------- Base ---------- */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(1400px 900px at 78% -12%, rgba(47, 107, 255, 0.10), transparent 58%),
    radial-gradient(1200px 800px at -8% 22%, rgba(245, 106, 0, 0.07), transparent 60%),
    radial-gradient(900px 700px at 50% 118%, rgba(124, 58, 237, 0.10), transparent 62%),
    #06070b;
  color: #f0f0f0;
}
h1, h2, h3, .stat b, .pack-name, .pcard-name, .price-new, .dc-stat-num, .pop-title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
}
body::before {
  background:
    radial-gradient(700px 420px at 85% -5%, rgba(var(--esp-ac-rgb), 0.10), transparent 60%),
    radial-gradient(800px 520px at -10% 20%, rgba(245, 158, 11, 0.07), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(124, 58, 237, 0.09), transparent 65%);
}
body::after { background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.6) 100%); }
::selection { background: rgba(var(--esp-ac-rgb), 0.4); color: #fff; }

/* ===== INTRO (logo animé) ===== */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#intro.reveal-page { opacity: 0; transition: opacity 0.55s ease; }
#intro.gone { display: none !important; }
body.intro-running > *:not(#intro):not(#popup):not(.cursor):not(.cursor-dot) { opacity: 0; }
body.intro-done > *:not(#intro):not(#popup):not(.cursor):not(.cursor-dot) {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.intro-chars { display: flex; gap: 1px; overflow: visible; }
.intro-char {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: 6px;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  text-shadow: 0 0 32px rgba(var(--esp-ac-rgb), 0.6);
  display: inline-block;
  will-change: transform, opacity;
}
.intro-char.orange { color: var(--rose); }
.intro-char.show { animation: introCharIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.intro-char.fly { transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.7s ease; }
@keyframes introCharIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.intro-slash {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--rose), #fff, var(--rose), transparent);
  filter: blur(1px);
  box-shadow: 0 0 16px var(--rose);
  left: -5%;
  opacity: 0;
}
.intro-slash.go { animation: introSlash 0.3s ease 0.1s forwards; }
@keyframes introSlash {
  0% { left: -5%; opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* ===== CURSEUR ===== */
.cursor {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(var(--esp-ac-rgb), 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor.click { transform: translate(-50%, -50%) scale(0.6); border-color: var(--rose); }
.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ===== POPUP PROMO ===== */
#popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5000;
  width: 264px;
  background: rgba(14, 14, 14, 0.97);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.4);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 0 0 1px rgba(var(--esp-ac-rgb), 0.12), 0 0 30px rgba(var(--esp-ac-rgb), 0.22), 0 12px 44px rgba(0, 0, 0, 0.75);
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
#popup.show { transform: translateY(0); opacity: 1; }
#popup.hide { transform: translateY(130%); opacity: 0; }
#popup::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(var(--esp-ac-rgb), 0.45), transparent, rgba(245, 158, 11, 0.25));
  z-index: -1;
  animation: popGlow 2s ease-in-out infinite alternate;
}
@keyframes popGlow { from { opacity: 0.4; } to { opacity: 1; } }
.pop-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(var(--esp-ac-rgb), 0.12);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.35);
  color: var(--rose);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.pop-tag-dot { animation: popBlink 1.2s infinite; }
@keyframes popBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
.pop-title { font-size: 17px; font-weight: 400; letter-spacing: 1px; color: #f0f0f0; margin-bottom: 4px; }
.pop-code-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--esp-ac-rgb), 0.07);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.28);
  border-radius: 8px;
  padding: 8px 12px;
  margin: 8px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.pop-code-wrap:hover { background: rgba(var(--esp-ac-rgb), 0.14); }
.pop-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  flex: 1;
  letter-spacing: 1px;
}
.pop-copy { font-size: 9px; color: #8a8a96; text-transform: uppercase; letter-spacing: 1px; }
.pop-note { font-size: 10px; color: #8a8a96; margin-bottom: 10px; }
.pop-cta {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-l));
  color: #000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(var(--esp-ac-rgb), 0.3);
  transition: opacity 0.2s;
}
.pop-cta:hover { opacity: 0.85; }
.pop-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #8a8a96;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.pop-close:hover { color: #fff; }

/* ===== Barre d'annonce ===== */
.announce {
  padding: 8px 44px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(var(--esp-ac-rgb), 0.25);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #d4d4d8;
  position: sticky;
  top: 0;
  z-index: 60;
  animation: none;
}
.announce::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.announce b { color: var(--rose); text-decoration: none; }
.announce i { color: var(--rose); }
.ann-timer {
  background: rgba(var(--esp-ac-rgb), 0.1);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.3);
  color: var(--rose);
  border-radius: 999px;
  padding: 1px 10px;
  font-size: 11.5px;
}
.ann-timer i { color: var(--rose); }
.ann-cta {
  background: var(--rose);
  color: #000;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  transition: 0.2s;
}
.ann-cta:hover { background: var(--rose-l); }
.ann-close { color: #8a8a96; }

/* ===== Header ===== */
#siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
#siteHeader.scrolled {
  background: rgba(6, 6, 8, 0.97);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}
.header-inner { height: 64px; }
#siteHeader.scrolled .header-inner { height: 54px; }
.logo { font-weight: 400; }
.logo-txt { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; }
#siteHeader.scrolled .logo-txt { font-size: 22px; }
.logo-txt em { color: var(--rose); }
.nav { gap: 26px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(240, 240, 240, 0.55); }
.nav a { position: relative; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  border-radius: 99px;
  background: var(--rose);
  box-shadow: 0 0 8px rgba(var(--esp-ac-rgb), 0.7);
  transition: right 0.25s ease;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav-cta {
  background: var(--rose);
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: 1.5px;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--rose-l); box-shadow: 0 0 20px rgba(var(--esp-ac-rgb), 0.4); color: #000 !important; }
.nav-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a7a88;
  white-space: nowrap;
}
.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: navPulse 2s infinite;
}
@keyframes navPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.lang-btn, .btn-account, .burger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #d4d4d8;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
}
.lang-btn:hover, .btn-account:hover, .burger:hover { border-color: rgba(var(--esp-ac-rgb), 0.5); }
.header-right .btn-discord {
  background: rgba(88, 101, 242, 0.14);
  color: #d4d4d8;
  border: 1px solid rgba(88, 101, 242, 0.35);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.header-right .btn-discord:hover { background: rgba(88, 101, 242, 0.25); box-shadow: 0 0 18px rgba(88, 101, 242, 0.3); }
.burger { display: none; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 130px 22px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--esp-ac-rgb), 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  bottom: -4px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0); }
  8% { opacity: 0.7; }
  85% { opacity: 0.25; }
  100% { opacity: 0; transform: translateY(-105vh); }
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 10px var(--rose);
}
.hero-title {
  font-size: clamp(58px, 10vw, 128px);
  line-height: 0.95;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--rose), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(240, 240, 240, 0.6);
  line-height: 1.7;
  max-width: 600px;
  margin: 22px auto 36px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-l));
  color: #000;
  box-shadow: 0 8px 28px rgba(var(--esp-ac-rgb), 0.35);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--rose-l), var(--rose)); box-shadow: 0 12px 36px rgba(var(--esp-ac-rgb), 0.5); }
.btn-ghost {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-ghost:hover { border-color: var(--rose); background: rgba(var(--esp-ac-rgb), 0.07); }
.hero-app {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(var(--esp-ac-rgb), 0.12);
}
.hero-app-glow {
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(var(--esp-ac-rgb), 0.25), transparent 50%, rgba(245, 158, 11, 0.15));
  pointer-events: none;
  z-index: 2;
}

/* ===== Stats strip ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  max-width: 680px;
  margin: 46px auto 0;
}
.stat {
  background: rgba(var(--esp-ac-rgb), 0.04);
  padding: 20px 16px;
  text-align: center;
  transition: background 0.2s;
}
.stat:hover { background: rgba(var(--esp-ac-rgb), 0.09); }
.stat b {
  display: block;
  font-size: 38px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--rose);
  text-shadow: 0 0 20px rgba(var(--esp-ac-rgb), 0.5);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.stat span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a7a88;
  margin-top: 4px;
}
.hero-pay { margin-top: 34px; }
.hero-pay .pay-label { color: #7a7a88; letter-spacing: 2px; }
.pay-badge { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.09); }
.pay-badge:hover { border-color: rgba(var(--esp-ac-rgb), 0.4); }

/* ===== Marquee ===== */
.marquee {
  background: #0c0c0c;
  border-top: 1px solid rgba(var(--esp-ac-rgb), 0.14);
  border-bottom: 1px solid rgba(var(--esp-ac-rgb), 0.14);
  padding: 12px 0;
}
.marquee-track span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.6);
}
.marquee-track i { color: var(--rose); }

/* ===== Sections communes ===== */
.section { padding: 96px 22px; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1;
}
.section-title span { color: var(--rose); }
.section-sub { font-size: 15px; color: rgba(240, 240, 240, 0.6); max-width: 560px; line-height: 1.7; margin-bottom: 44px; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
section[id] { scroll-margin-top: 96px; }

/* ===== Trust row ===== */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.trust-item:hover {
  border-color: rgba(var(--esp-ac-rgb), 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}
.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(var(--esp-ac-rgb), 0.08);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.25);
  box-shadow: 0 0 16px rgba(var(--esp-ac-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
  font-size: 17px;
  transition: box-shadow 0.25s;
}
.trust-item:hover .trust-icon { box-shadow: 0 0 24px rgba(var(--esp-ac-rgb), 0.35); border-color: rgba(var(--esp-ac-rgb), 0.5); }
.trust-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.trust-desc { font-size: 12px; color: #8a8a96; line-height: 1.5; }

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: rgba(var(--esp-ac-rgb), 0.3);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}
.feature { padding: 24px 20px; }
.feature:hover { transform: translateY(-3px); }
.feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(var(--esp-ac-rgb), 0.08) !important;
  border: 1px solid rgba(var(--esp-ac-rgb), 0.2);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
}
.feat-ico.grad {
  background: rgba(var(--esp-ac-rgb), 0.08) !important;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 12.5px; color: #9a9aa6; line-height: 1.65; }

/* ===== News ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { padding: 20px; }
.news-card:hover { transform: translateY(-3px); }
.news-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.news-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(var(--esp-ac-rgb), 0.12);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.3);
  color: var(--rose);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-name { font-size: 13px; font-weight: 600; }
.news-time { font-size: 11px; color: #7a7a88; margin-left: auto; }
.news-card h4 { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 2px; color: var(--rose); margin-bottom: 8px; }
.news-card p { font-size: 12.5px; color: #9a9aa6; line-height: 1.65; }

/* ===== Avis (marquee double) ===== */
.mq-wrap { overflow: hidden; position: relative; }
.mq-wrap::before, .mq-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.mq-wrap::before { left: 0; background: linear-gradient(90deg, #080808, transparent); }
.mq-wrap::after { right: 0; background: linear-gradient(-90deg, #080808, transparent); }
.mq-row { display: flex; gap: 16px; width: max-content; }
.mq-ltr { animation: mqLTR 44s linear infinite; }
.mq-rtl { animation: mqRTL 50s linear infinite; margin-top: 16px; }
.mq-ltr:hover, .mq-rtl:hover { animation-play-state: paused; }
@keyframes mqLTR { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes mqRTL { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.rc {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  width: 300px;
  flex-shrink: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.rc:hover { border-color: rgba(var(--esp-ac-rgb), 0.3); box-shadow: 0 0 0 1px rgba(var(--esp-ac-rgb), 0.1); }
.rc-stars { color: var(--violet); font-size: 12px; margin-bottom: 10px; letter-spacing: 2px; }
.rc-text { font-size: 12.5px; color: #9a9aa6; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.rc-author { display: flex; align-items: center; gap: 10px; }
.rc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(var(--esp-ac-rgb), 0.14);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0;
}
.rc-name { font-size: 12.5px; font-weight: 600; }
.rc-tag { font-size: 10.5px; color: #7a7a88; }
.rev-note { margin-top: 34px; text-align: center; font-size: 13px; color: #9a9aa6; }
.rev-note b { color: #f0f0f0; }

/* ===== Packs (cartes produits) ===== */
.packs-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 22px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.pcard {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pcard:hover { transform: translateY(-5px); }
.pcard-pro { border-color: rgba(124, 58, 237, 0.3); background: linear-gradient(160deg, #0e0a1a, #0d0d0d); }
.pcard-pro:hover { border-color: rgba(124, 58, 237, 0.55); box-shadow: 0 20px 56px rgba(124, 58, 237, 0.18); }
.pcard-lifetime {
  border-color: rgba(245, 158, 11, 0.55);
  background: linear-gradient(160deg, #1a1200, #0f0d00, #0d0d0d);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.18), 0 0 44px rgba(245, 158, 11, 0.16), 0 24px 56px rgba(0, 0, 0, 0.5);
  animation: packPulse 3s ease-in-out infinite;
}
@keyframes packPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.18), 0 0 44px rgba(245, 158, 11, 0.16), 0 24px 56px rgba(0, 0, 0, 0.5); }
  50% { box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.3), 0 0 64px rgba(245, 158, 11, 0.3), 0 24px 56px rgba(0, 0, 0, 0.5); }
}
.pcard-lifetime:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.85);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.35), 0 0 64px rgba(245, 158, 11, 0.3), 0 32px 80px rgba(245, 158, 11, 0.15);
  animation: none;
}
.pcard-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--violet), var(--violet));
  color: #000;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  animation: badgePulse 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 16px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 32px rgba(245, 158, 11, 0.8); }
}
.pcard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 17px;
}
.icon-pro { background: rgba(124, 58, 237, 0.13); border: 1px solid rgba(124, 58, 237, 0.35); color: #a78bfa; }
.icon-life { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.45); color: var(--violet); }
.pcard-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.pcard-cat-pro { color: #a78bfa; }
.pcard-cat-life { color: var(--violet); }
.pcard-name { font-size: 30px; letter-spacing: 1.5px; margin-bottom: 8px; }
.pcard-name-life { font-size: 36px; }
.pcard-desc { font-size: 12.5px; color: #9a9aa6; line-height: 1.6; margin-bottom: 18px; }
.pcard-feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; list-style: none; }
.pcard-feat { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #c4c4cc; }
.pcard-feat i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}
.check-pro { background: rgba(124, 58, 237, 0.18); color: #a78bfa; }
.check-life { background: rgba(245, 158, 11, 0.18); color: var(--violet); }
.pcard-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.price-new {
  font-size: 46px;
  line-height: 1;
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.price-life { font-size: 54px; color: var(--violet); text-shadow: 0 0 24px rgba(245, 158, 11, 0.4); }
.price-old { font-size: 17px; color: #6a6a76; text-decoration: line-through; }
.price-per { font-size: 11px; color: #8a8a96; width: 100%; }
.buy-btn {
  width: 100%;
  padding: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 9px;
  border: none;
  color: #fff;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
}
.buy-btn:hover { opacity: 0.9; transform: scale(0.99); }
.btn-buy-pro { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.btn-buy-pro:hover { box-shadow: 0 0 24px rgba(124, 58, 237, 0.4); }
.btn-buy-life {
  background: linear-gradient(135deg, var(--violet), var(--violet));
  color: #000;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.4);
}
.btn-buy-life:hover { box-shadow: 0 0 36px rgba(245, 158, 11, 0.65); }
.packs-note {
  text-align: center;
  margin-top: 30px;
  font-size: 12.5px;
  color: #8a8a96;
}
.packs-note i { color: var(--rose); margin-right: 6px; }

/* ===== Comment ça marche ===== */
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { padding: 22px 16px; text-align: center; position: relative; }
.step:hover { transform: translateY(-3px); }
.step-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--rose);
  text-shadow: 0 0 18px rgba(var(--esp-ac-rgb), 0.5);
  display: block;
  margin-bottom: 10px;
}
.step h4 { font-size: 14px; margin-bottom: 6px; }
.step p { color: #9a9aa6; font-size: 12px; line-height: 1.6; }
@media (min-width: 1025px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -9px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--rose), var(--violet));
    opacity: 0.5;
  }
}
.how-note { padding: 16px 20px; text-align: center; margin-top: 26px; font-size: 13px; color: #9a9aa6; }
.how-note b { color: #f0f0f0; }
.how-note:hover { border-color: rgba(var(--esp-ac-rgb), 0.25); }

/* ===== Showcase ===== */
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.sp-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.sp-title { font-size: clamp(30px, 4vw, 44px); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; line-height: 1; }
.sp-desc { font-size: 14px; color: #9a9aa6; line-height: 1.7; margin-bottom: 24px; }
.sp-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sp-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #c4c4cc; }
.sp-feat-dot { width: 6px; height: 6px; background: var(--rose); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px var(--rose); }
.sp-perks { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.sp-perk { font-size: 11px; color: #9a9aa6; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); padding: 5px 12px; border-radius: 20px; }
.sp-footer { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.sp-price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; color: var(--rose); }

/* ===== Bande Discord ===== */
.discord-band {
  background: linear-gradient(135deg, #0a0a12 0%, #0d0d0d 50%, #0a0a10 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.discord-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--esp-ac-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.discord-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 22px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.discord-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.discord-title { font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; line-height: 1; }
.discord-title span { color: var(--rose); }
.discord-desc { font-size: 14px; color: #9a9aa6; line-height: 1.7; margin-bottom: 28px; max-width: 460px; }
.btn-discord {
  background: #5865F2;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-discord:hover { background: #6c78f5; box-shadow: 0 0 24px rgba(88, 101, 242, 0.45); }
.discord-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 24px;
}
.dc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.dc-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(88, 101, 242, 0.14);
  border: 1px solid rgba(88, 101, 242, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5865F2;
  font-size: 22px;
  overflow: hidden;
}
.dc-name { font-size: 14px; font-weight: 700; }
.dc-status { font-size: 11px; color: #8a8a96; }
.dc-live { color: #22c55e; }
.dc-avatars { display: flex; margin-bottom: 16px; }
.dc-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #111111;
  background: rgba(var(--esp-ac-rgb), 0.15);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--rose);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  flex-shrink: 0;
}
.dc-av:first-child { margin-left: 0; }
.dc-av:hover { transform: translateY(-5px) scale(1.15); box-shadow: 0 4px 16px rgba(var(--esp-ac-rgb), 0.3); z-index: 10; }
.dc-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dc-stat-num { font-size: 24px; letter-spacing: 1px; color: var(--rose); line-height: 1; }
.dc-stat-lbl { font-size: 10px; color: #8a8a96; text-transform: uppercase; letter-spacing: 1px; }
.dc-join {
  width: 100%;
  padding: 12px;
  background: var(--rose);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.dc-join:hover { background: var(--rose-l); box-shadow: 0 0 16px rgba(var(--esp-ac-rgb), 0.35); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-list details { background: #111111; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 12px; overflow: hidden; }
.faq-list details[open] { border-color: rgba(var(--esp-ac-rgb), 0.35); box-shadow: 0 0 0 1px rgba(var(--esp-ac-rgb), 0.1), 0 0 24px rgba(var(--esp-ac-rgb), 0.08); }
.faq-list summary {
  padding: 17px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { background: rgba(255, 255, 255, 0.03); }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 22px 18px; font-size: 13px; color: #9a9aa6; line-height: 1.7; }

/* ===== CTA final ===== */
.cta-final { padding: 96px 22px; }
.cta-box {
  text-align: center;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 120%, rgba(var(--esp-ac-rgb), 0.13), transparent 70%), #0f0f0f;
  border: 1px solid rgba(var(--esp-ac-rgb), 0.2);
}
.cta-box:hover { border-color: rgba(var(--esp-ac-rgb), 0.4); }
.cta-box .section-title { font-size: clamp(38px, 6vw, 64px); }
.cta-box .section-sub { margin-bottom: 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-trust { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 30px; color: #9a9aa6; font-size: 13px; }
.cta-trust i { color: var(--rose); margin-right: 6px; }

/* ===== Footer ===== */
.footer {
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 22px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo-txt { font-size: 24px; }
.footer-brand p { font-size: 12.5px; color: #8a8a96; line-height: 1.7; max-width: 270px; margin-top: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9aa6;
  font-size: 15px;
  transition: 0.2s;
}
.footer-social a:hover { color: var(--rose); border-color: rgba(var(--esp-ac-rgb), 0.4); }
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a96;
  margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 13px; color: #9a9aa6; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #f0f0f0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-pay { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #8a8a96; }
.footer-pay i { font-size: 19px; color: rgba(154, 154, 166, 0.55); transition: color 0.2s; }
.footer-pay i:hover { color: var(--rose); }
.footer-copy { font-size: 11px; color: #8a8a96; }

/* ===== back top ===== */
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose);
  color: #000;
  border: none;
  font-size: 15px;
  z-index: 40;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 0 20px rgba(var(--esp-ac-rgb), 0.4);
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--rose-l); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Hero entrance ===== */
.hero-eyebrow, .hero-title, .hero-sub, .hero-cta, .hero-app, .hero-stats, .hero-pay {
  opacity: 0;
  animation: heroIn 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-eyebrow { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.25s; }
.hero-cta { animation-delay: 0.35s; }
.hero-app { animation-delay: 0.5s; }
.hero-stats { animation-delay: 0.65s; }
.hero-pay { animation-delay: 0.75s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .packs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .nav-status { display: none; }
  .nav.open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 78vw;
    max-width: 300px;
    height: 100vh;
    background: #0a0a0a;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    z-index: 90;
    padding: 76px 20px 40px;
    flex-direction: column;
    gap: 6px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
  }
  .nav.open a {
    display: block;
    padding: 13px 16px;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(240, 240, 240, 0.6);
    border-radius: 8px;
  }
  .nav.open a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
  .nav.open a::after { display: none; }
  .nav.open .nav-cta { margin-top: 16px; text-align: center; }
  .sp-grid { grid-template-columns: 1fr; gap: 36px; }
  .discord-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  #siteHeader .btn-discord span { display: none; }
  .header-right .btn-discord { padding: 8px 10px; }
  .hero { padding: 96px 16px 44px; min-height: auto; }
  .hero-title { font-size: clamp(46px, 13vw, 72px); letter-spacing: 2px; }
  .hero-cta { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
  .section { padding: 60px 16px; }
  .section-sub { margin-bottom: 32px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 10px; padding: 36px 16px; }
  .trust-item { padding: 14px; gap: 10px; flex-direction: column; text-align: center; }
  .trust-icon { width: 38px; height: 38px; }
  .why-grid, .news-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .packs-grid { grid-template-columns: 1fr; }
  .pcard-lifetime { transform: none; }
  .pcard-lifetime:hover { transform: translateY(-5px); }
  .rc { width: 260px; }
  .mq-ltr, .mq-rtl { animation-duration: 60s; }
  .cta-box { padding: 44px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns a { width: 100%; max-width: 320px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  #popup { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
}

/* ============================================================
   V2 — POSITIONNEMENT PRODUIT (AI / analyse / BIOS / bench)
   ============================================================ */

.hero-compat { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero-compat span { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 1px; color: #9a9aa6; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); padding: 7px 12px; border-radius: 6px; }
.hero-compat span b { color: var(--rose); font-weight: 600; }

/* ---------- Moteurs ---------- */
.engines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.engine {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.engine::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--esp-ac-rgb), 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.engine:hover { border-color: rgba(var(--esp-ac-rgb), 0.45); transform: translateY(-3px); }
.engine:hover::before { opacity: 1; }
.engine-ico {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--esp-ac-rgb), 0.16), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(var(--esp-ac-rgb), 0.3);
  color: var(--rose);
  font-size: 17px;
  margin-bottom: 14px;
}
.engine h3 { font-size: 13.5px; letter-spacing: 0.5px; margin-bottom: 6px; }
.engine p { font-size: 11.5px; color: #9a9aa6; line-height: 1.55; }
.engine-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  color: var(--rose);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

/* ---------- Panneaux de scan (analyse PC / BIOS) ---------- */
.scan-panel {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}
.scan-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(var(--esp-ac-rgb), 0.06), transparent 60%);
}
.scan-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}
.scan-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; color: #c4c4cc; }
.scan-live { display: flex; align-items: center; gap: 7px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1px; color: #22c55e; }
.scan-live i { font-size: 7px; animation: pulse 1.6s infinite; }
.scan-progress { padding: 16px 18px 4px; }
.scan-track { height: 5px; background: rgba(255, 255, 255, 0.07); border-radius: 99px; overflow: hidden; }
.scan-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--rose), var(--violet)); border-radius: 99px; box-shadow: 0 0 12px rgba(var(--esp-ac-rgb), 0.6); transition: width 0.2s linear; }
.scan-pct { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: 1.5px; color: var(--rose); margin-top: 6px; text-align: right; }
.scan-rows { padding: 10px 18px 16px; display: flex; flex-direction: column; gap: 2px; }
.scan-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scan-row.shown { opacity: 1; transform: none; }
.scan-row:hover { background: rgba(255, 255, 255, 0.03); }
.scan-row .scan-lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; color: #6b6b76; width: 120px; flex-shrink: 0; }
.scan-row .scan-val { color: #d4d4dc; flex: 1; }
.scan-row .scan-st { margin-left: auto; color: #22c55e; font-size: 12px; }
.scan-done {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 18px 16px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.07);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 2px;
  color: #4ade80;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scan-done.shown { opacity: 1; transform: none; }
.scan-done b { font-size: 16px; color: #4ade80; }
.scan-done b em { font-style: normal; font-size: 10px; color: #9a9aa6; }

/* ---------- Section analyse / score ---------- */
.an-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.an-copy .section-label, .an-copy .section-title { text-align: left; }
.an-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; }
.an-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: #c4c4cc; line-height: 1.55; }
.an-item i { color: #22c55e; font-size: 13px; margin-top: 3px; }

.score-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.score-card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--esp-ac-rgb), 0.5), transparent);
}
.score-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.score-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; }
.score-num { font-family: 'Bebas Neue', sans-serif; font-size: 46px; line-height: 1; color: var(--rose); text-shadow: 0 0 24px rgba(var(--esp-ac-rgb), 0.45); }
.score-num small { font-size: 17px; color: #6b6b76; }
.sbar { margin-bottom: 13px; }
.sbar-top { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: 1.5px; color: #9a9aa6; margin-bottom: 5px; }
.sbar-top b { color: #d4d4dc; font-weight: 600; }
.sbar-track { height: 4px; background: rgba(255, 255, 255, 0.07); border-radius: 99px; overflow: hidden; }
.sbar-fill { height: 100%; width: 0%; border-radius: 99px; background: linear-gradient(90deg, var(--rose), var(--violet)); transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.sbar-fill.low { background: linear-gradient(90deg, var(--violet), var(--rose)); }
.warn-list { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.warn {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.06);
  font-size: 12px; color: #d4d4dc;
}
.warn i { color: var(--violet); font-size: 13px; }
.warn b { font-weight: 600; }
.warn .warn-imp { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1px; color: var(--violet); border: 1px solid rgba(245, 158, 11, 0.35); padding: 3px 8px; border-radius: 99px; flex-shrink: 0; }
.warn-list .warn { opacity: 0; transform: translateY(8px); transition: opacity 0.45s ease, transform 0.45s ease; }
.warn-list.shown .warn { opacity: 1; transform: none; }
.warn-list.shown .warn:nth-child(2) { transition-delay: 0.15s; }
.warn-list.shown .warn:nth-child(3) { transition-delay: 0.3s; }

/* ---------- AI BIOS (avant / après) ---------- */
.bios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.ba-col {
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0c0c0c;
}
.ba-col.ba-ai { border-color: rgba(var(--esp-ac-rgb), 0.4); background: linear-gradient(180deg, rgba(var(--esp-ac-rgb), 0.07), rgba(var(--esp-ac-rgb), 0.02)); }
.ba-head { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; color: #6b6b76; margin-bottom: 14px; text-transform: uppercase; }
.ba-ai .ba-head { color: var(--rose); }
.ba-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.07); font-size: 12px; }
.ba-row:last-child { border-bottom: 0; }
.ba-row span:first-child { color: #9a9aa6; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }
.ba-row .ba-v { color: #6b6b76; }
.ba-ai .ba-row .ba-v { color: #4ade80; font-weight: 600; }
.ba-row .ba-v .ba-check { color: #22c55e; margin-right: 6px; font-size: 10px; }
.bios-cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- Backup / Restore ---------- */
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.bk-cards { display: flex; flex-direction: column; gap: 14px; }
.bk-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  position: relative;
}
.bk-card.bk-saved { border-color: rgba(34, 197, 94, 0.35); background: linear-gradient(180deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02)); }
.bk-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bk-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80; font-size: 16px;
}
.bk-title { font-size: 14px; }
.bk-sub { font-size: 11.5px; color: #9a9aa6; margin-top: 2px; }
.bk-list { display: flex; flex-direction: column; gap: 5px; margin: 8px 0 16px; }
.bk-row { display: flex; justify-content: space-between; font-size: 12px; padding: 6px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.06); }
.bk-row span:first-child { color: #9a9aa6; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }
.bk-row span:last-child { color: #c4c4cc; }
.bk-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px;
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
  padding: 10px 16px; border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.bk-btn:hover { background: rgba(34, 197, 94, 0.16); transform: translateY(-1px); }
.bk-note {
  margin-top: 16px;
  font-size: 11px;
  color: #6b6b76;
  line-height: 1.6;
  border-left: 2px solid rgba(var(--esp-ac-rgb), 0.4);
  padding-left: 12px;
}
.bk-ok {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 1.5px;
  color: #4ade80; margin-bottom: 12px;
}

/* ---------- Benchmark / avant-après ---------- */
.bm-vs {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.bm-vs::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--esp-ac-rgb), 0.5), transparent); }
.bm-vs-head {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; margin-bottom: 24px;
}
.bm-vs-col { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 18px 12px; border-radius: 12px; border: 1px solid var(--line); }
.bm-vs-before { background: rgba(255, 255, 255, 0.02); }
.bm-vs-after { background: rgba(34, 197, 94, 0.05); border-color: rgba(34, 197, 94, 0.25); }
.bm-vs-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.bm-vs-before .bm-vs-tag { color: var(--rose); }
.bm-vs-after .bm-vs-tag { color: #4ade80; }
.bm-vs-score { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; color: #eaeaf2; }
.bm-vs-before .bm-vs-score { color: #9a9aa6; }
.bm-vs-after .bm-vs-score { color: #4ade80; text-shadow: 0 0 24px rgba(34, 197, 94, 0.4); }
.bm-vs-cap { font-size: 10px; color: #6b6b76; font-family: 'JetBrains Mono', monospace; letter-spacing: 1px; }
.bm-vs-mid { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bm-vs-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--esp-ac-rgb), 0.12); color: #7aa2ff;
  font-size: 16px; border: 1px solid rgba(var(--esp-ac-rgb), 0.35);
}
.bm-vs-gain {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 1px;
  color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
  padding: 5px 12px; border-radius: 99px; white-space: nowrap;
}
.bm-table {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.bm-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; align-items: center;
  padding: 11px 16px; font-size: 12.5px; gap: 8px;
}
.bm-row:not(:last-child) { border-bottom: 1px dashed rgba(255, 255, 255, 0.07); }
.bm-row-head {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px;
  color: #6b6b76; text-transform: uppercase; background: rgba(255, 255, 255, 0.03);
}
.bm-td-m { color: #9a9aa6; }
.bm-row-head .bm-td-m { color: #6b6b76; }
.bm-td-b { color: #9a9aa6; font-family: 'JetBrains Mono', monospace; text-align: right; }
.bm-td-a { color: #4ade80; font-weight: 600; font-family: 'JetBrains Mono', monospace; text-align: right; }
.bm-row-head .bm-td-b, .bm-row-head .bm-td-a { color: #6b6b76; }
.bm-td-g { text-align: center; }
.bm-td-g i {
  font-style: normal; font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.07);
  padding: 3px 9px; border-radius: 99px; white-space: nowrap;
}
.bm-row-head .bm-td-g { color: #6b6b76; }
.bm-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 24px; text-align: center; }
.bm-note { font-size: 11px; color: #6b6b76; line-height: 1.6; max-width: 640px; }
.bm-note b { color: #9a9aa6; font-weight: 600; }
.aa-gain {
  font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: 1px;
  color: #4ade80; text-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
}
.aa-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.07); font-size: 12.5px; }
.aa-row span:nth-child(2) { color: #6b6b76; font-family: 'JetBrains Mono', monospace; font-size: 10px; }
.aa-before { color: #9a9aa6; text-align: right; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.aa-after { color: #4ade80; font-weight: 600; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.aa-row .aa-lbl { text-align: center; }

/* ---------- Jeux ---------- */
.gm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.game-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.game-card:hover { border-color: rgba(var(--esp-ac-rgb), 0.45); transform: translateY(-3px); }
.game-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.game-ico {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(var(--esp-ac-rgb), 0.16), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(var(--esp-ac-rgb), 0.3);
  color: var(--rose); font-size: 18px;
}
.game-name { font-size: 15px; letter-spacing: 0.5px; }
.game-score { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.game-score .gstrack { flex: 1; height: 5px; background: rgba(255, 255, 255, 0.07); border-radius: 99px; overflow: hidden; }
.game-score .gsfill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--rose), var(--violet)); }
.game-score b { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #d4d4dc; }

/* ---------- Sécurité ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sec-item {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px;
  font-size: 12px; color: #c4c4cc; line-height: 1.5;
}
.sec-item i { color: #22c55e; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.sec-item b { display: block; font-size: 12.5px; color: #e4e4ea; margin-bottom: 3px; }

/* ---------- Historique (dans le mockup) ---------- */
.hist-day { margin-bottom: 10px; }
.hist-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px; letter-spacing: 2px;
  color: var(--rose);
  display: block; margin-bottom: 6px;
}
.hist-day p { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 11.5px; color: #c4c4cc; }
.hist-day p i { color: #22c55e; font-size: 10px; }
.hist-restore {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 1px;
  color: #4ade80; cursor: pointer;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.07);
  padding: 5px 10px; border-radius: 6px;
}
.hist-restore:hover { background: rgba(34, 197, 94, 0.14); }

/* ---------- Témoignages : matériel + date ---------- */
.rc-hw {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.5px;
  color: var(--rose);
  margin-top: 7px;
}
.rc-date { font-size: 10px; color: #6b6b76; margin-top: 3px; }

/* ---------- Page AI BIOS (dédiée) ---------- */
.bios-hero { padding: 120px 22px 40px; text-align: center; position: relative; }
.bios-hero .hero-title { font-size: clamp(52px, 9vw, 96px); margin-bottom: 16px; }
.bios-hero .hero-sub { max-width: 640px; margin: 0 auto 30px; }
.bios-rec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bios-rec {
  display: flex; align-items: center; gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.bios-rec .rec-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(var(--esp-ac-rgb), 0.16), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(var(--esp-ac-rgb), 0.3);
  color: var(--rose); font-size: 15px;
}
.bios-rec .rec-name { font-size: 13px; }
.bios-rec .rec-sub { font-size: 11px; color: #6b6b76; margin-top: 2px; }
.bios-rec .rec-stat { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.07); padding: 4px 9px; border-radius: 99px; flex-shrink: 0; }
.bios-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bios-trio .engine { text-align: left; }
.bios-trio .engine i.fa-shield-halved, .bios-trio .engine i.fa-brain, .bios-trio .engine i.fa-rotate-left { font-size: 17px; color: var(--rose); }
.bios-note {
  font-size: 11.5px; color: #6b6b76; line-height: 1.7;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 16px 18px;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Responsive V2 ---------- */
@media (max-width: 1024px) {
  .engines-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .gm-grid { grid-template-columns: repeat(2, 1fr); }
  .bios-rec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .an-grid, .bios-grid, .bk-grid { grid-template-columns: 1fr; gap: 32px; }
  .bm-vs-head { grid-template-columns: 1fr auto 1fr; }
  .an-grid .scan-panel, .bios-grid .scan-panel { order: -1; }
  .bios-trio { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .engines-grid, .sec-grid, .gm-grid { grid-template-columns: 1fr; }
.ba-grid { grid-template-columns: 1fr; }
  .bm-vs { padding: 18px; }
  .bm-vs-head { grid-template-columns: 1fr auto 1fr; gap: 8px; }
  .bm-vs-score { font-size: 32px; }
  .bm-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 10px 12px; font-size: 11.5px; }
  .bm-vs-arrow { width: 34px; height: 34px; }
  .bios-cta { flex-direction: column; align-items: stretch; }
  .bios-cta .btn { justify-content: center; }
  .bios-hero { padding: 100px 16px 30px; }
  .scan-row .scan-lbl { width: 84px; font-size: 9px; }
  .scan-row { font-size: 11.5px; }
  .warn { flex-wrap: wrap; }
  .warn .warn-imp { margin-left: 0; }
}
/* ===== Fonds d'ecran (partages avec l'espace client) ===== */
body[data-bg]:not([data-bg="galaxy"]):not([data-bg="plain"])::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  animation: pBgZoom 16s ease-out both;
}
body[data-bg="andromede"]::before { background-image: url('bg/bg-1.jpg'); }
body[data-bg="nebula"]::before { background-image: url('bg/bg-2.jpg'); }
body[data-bg="milkyway"]::before { background-image: url('bg/bg-3.jpg'); }
body[data-bg="deepspace"]::before { background-image: url('bg/bg-4.jpg'); }
body[data-bg="starcluster"]::before { background-image: url('bg/bg-5.jpg'); }
body[data-bg="aurora"]::before { background-image: url('bg/bg-6.jpg'); }
body[data-bg="plain"]::before { content: ''; position: fixed; inset: 0; z-index: -1; background: #050507; }
body[data-bg]:not([data-bg="galaxy"]):not([data-bg="plain"])::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background: rgba(7, 7, 9, 0.6);
}
body[data-bg]:not([data-bg="galaxy"]) #galaxy { opacity: 0.08; }
@keyframes pBgZoom { from { transform: scale(1.07); } to { transform: scale(1); } }

/* ===== ANARYX AI — assistant du site ===== */
body.has-ai .back-top { bottom: 94px; }
.ai-fab {
  position: fixed; right: 22px; bottom: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-l));
  border: none; cursor: pointer; z-index: 9995;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  box-shadow: 0 8px 30px rgba(var(--esp-ac-rgb), 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ai-fab:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(var(--esp-ac-rgb), 0.6); }
.ai-fab::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(var(--esp-ac-rgb), 0.4);
  animation: aiFabPulse 2s infinite;
}
@keyframes aiFabPulse { 0% { transform: scale(0.9); opacity: 0.8; } 70% { transform: scale(1.25); opacity: 0; } 100% { opacity: 0; } }
.ai-panel {
  position: fixed; right: 22px; bottom: 94px;
  width: 368px; max-width: calc(100vw - 32px);
  height: 520px; max-height: calc(100vh - 120px);
  background: #0D0D10; border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px; z-index: 9996;
  display: none; flex-direction: column; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}
.ai-panel.open { display: flex; animation: aiIn 0.25s ease; }
@keyframes aiIn { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ai-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(var(--esp-ac-rgb), 0.14), rgba(245, 158, 11, 0.06));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ai-head-avatar {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; flex-shrink: 0;
}
.ai-head b { font-size: 14.5px; color: #fff; }
.ai-head b em { font-style: normal; color: var(--rose-l); }
.ai-head-sub { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255, 255, 255, 0.55); }
.ai-head-sub .dot { color: #22C55E; font-size: 6px; }
.ai-close { margin-left: auto; background: none; border: none; color: rgba(255, 255, 255, 0.5); font-size: 15px; cursor: pointer; }
.ai-close:hover { color: #fff; }
.ai-msgs {
  flex: 1; overflow-y: auto;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.ai-msg {
  max-width: 86%;
  border-radius: 13px;
  padding: 10px 13px;
  font-size: 12.8px; line-height: 1.55;
  color: #E8E8EE;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-self: flex-start;
}
.ai-msg.user { align-self: flex-end; background: rgba(var(--esp-ac-rgb), 0.14); border-color: rgba(var(--esp-ac-rgb), 0.35); }
.ai-msg p { margin: 0 0 6px; }
.ai-msg p:last-child { margin-bottom: 0; }
.ai-msg .muted { color: rgba(255, 255, 255, 0.5); }
.ai-msg b { color: #fff; }
.ai-msg a { color: var(--rose-l); }
.ai-typing { display: flex; align-items: center; gap: 5px; }
.ai-dots i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.45); animation: aiBounce 1.1s infinite; }
.ai-dots i:nth-child(2) { animation-delay: 0.15s; }
.ai-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiBounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.35; } 30% { transform: translateY(-4px); opacity: 1; } }
.ai-act {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 4px 5px 0 0;
  font-size: 11.5px; font-weight: 600; font-family: inherit;
  color: var(--rose-l);
  background: rgba(var(--esp-ac-rgb), 0.1);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.35);
  border-radius: 8px;
  padding: 6px 11px;
  cursor: pointer;
}
.ai-act:hover { background: rgba(var(--esp-ac-rgb), 0.2); }
.ai-act.ghost { background: transparent; color: rgba(255, 255, 255, 0.65); border-color: rgba(255, 255, 255, 0.14); }
.ai-act.ghost:hover { background: rgba(255, 255, 255, 0.06); }
.ai-quick { display: flex; gap: 7px; padding: 10px 14px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.ai-quick button {
  font-size: 11px; font-weight: 600; font-family: inherit;
  color: #CFCFD8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 11px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.ai-quick button:hover { border-color: rgba(var(--esp-ac-rgb), 0.45); color: var(--rose-l); }
.ai-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.ai-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  padding: 10px 13px;
  outline: none;
}
.ai-input input:focus { border-color: rgba(var(--esp-ac-rgb), 0.55); }

/* ===== Améliorations V2 — site public ===== */
.ht-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: 1px;
  color: #9a9aa6;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 14px; border-radius: 99px;
  display: inline-flex; align-items: center; gap: 7px;
}
.ht-item b { color: var(--violet); font-size: 13px; }
.hero-trust { margin: -14px 0 30px; animation-delay: 0.35s; }
.hero-cta { animation-delay: 0.45s; }
.hero-cta .btn-primary { padding: 17px 32px; font-size: 14px; animation: heroCtaGlow 2.6s ease-in-out infinite; }
@keyframes heroCtaGlow {
  0%, 100% { box-shadow: 0 8px 28px rgba(var(--esp-ac-rgb), 0.35); }
  50% { box-shadow: 0 8px 46px rgba(var(--esp-ac-rgb), 0.7); }
}
.hero-app { animation: heroFloat 7s ease-in-out infinite; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .hero-app { animation: none; } }

.engines-grid { counter-reset: eng; }
.engine { counter-increment: eng; }
.engine::after {
  content: '0' counter(eng);
  position: absolute; top: 14px; right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  color: rgba(255, 255, 255, 0.14); letter-spacing: 1px;
  transition: color 0.3s;
}
.engine:hover::after { color: var(--rose); }
.engine-x {
  max-height: 0; opacity: 0; overflow: hidden;
  margin: 0;
  font-size: 11px; color: #b9b9c4; line-height: 1.55;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}
.engine:hover .engine-x {
  max-height: 90px; opacity: 1;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.engine-x i { color: var(--rose); font-size: 10px; margin-right: 5px; }
.engines-more { text-align: center; margin-top: 26px; }

.bios-grid > .scan-panel { order: -1; }

.aa-gain {
  font-size: 54px;
  text-shadow: 0 0 28px rgba(34, 197, 94, 0.5);
  animation: aaPulse 2.2s ease-in-out infinite;
}
@keyframes aaPulse {
  0%, 100% { text-shadow: 0 0 24px rgba(34, 197, 94, 0.4); }
  50% { text-shadow: 0 0 42px rgba(34, 197, 94, 0.85); }
}
.bm-gain { font-size: 11.5px; padding: 8px 14px; }

.gsfill { width: 0; transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); }

.rev-filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: -24px 0 30px; }
.rev-filters button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase;
  color: #9a9aa6; background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px; padding: 7px 14px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.rev-filters button:hover { border-color: rgba(var(--esp-ac-rgb), 0.45); color: #f0f0f0; }
.rev-filters button.active {
  background: rgba(var(--esp-ac-rgb), 0.14);
  border-color: rgba(var(--esp-ac-rgb), 0.55);
  color: var(--rose);
}
.mq-wrap.filtered .mq-row { animation: none; width: 100%; flex-wrap: wrap; }
.mq-wrap.filtered .rc.hide { display: none; }
.rc-verified {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 8px 6px 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  color: #4ade80; background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 9px; border-radius: 99px;
}
.rc-verified i { font-size: 9px; }
.rc-hw {
  font-size: 10.5px;
  background: rgba(var(--esp-ac-rgb), 0.07);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.2);
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 6px;
}

.faq-list summary i { color: var(--rose); margin-right: 10px; font-size: 13px; }

.cta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1px;
  color: var(--rose-l);
  background: rgba(var(--esp-ac-rgb), 0.1);
  border: 1px solid rgba(var(--esp-ac-rgb), 0.4);
  padding: 8px 16px; border-radius: 99px;
  margin: -22px 0 26px;
}
.cta-chip i { animation: ctaChipFlash 1.6s ease-in-out infinite; }
@keyframes ctaChipFlash {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.pcard-save, .pcard-oneshot {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  border-radius: 8px; padding: 8px 10px; margin-bottom: 10px;
}
.pcard-save { color: #4ade80; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.3); }
.pcard-oneshot { color: #fbbf24; background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.3); }
.pcard-save i, .pcard-oneshot i { font-size: 12px; }
.packs-pay { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 22px; }
.packs-pay .pay-label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: #7a7a88; }

.footer-legal a { font-size: 11px; color: #8a8a96; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--rose); }

.ai-quick button {
  background: rgba(var(--esp-ac-rgb), 0.08);
  border-color: rgba(var(--esp-ac-rgb), 0.35);
  color: #fff; font-size: 11.5px; padding: 7px 13px;
}
.ai-quick button i { color: var(--rose-l); margin-right: 5px; }

/* ============================================================
   FOND AMBIANT ANARYX — aurora animé + grille + étoiles
   ============================================================ */
.bg-aurora,
.bg-stars,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.bg-aurora { overflow: hidden; }
.bg-aurora::before,
.bg-aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  pointer-events: none;
}
.bg-aurora::before {
  width: 70vmax; height: 70vmax;
  top: -28vmax; left: -18vmax;
  background: radial-gradient(circle at 40% 40%, rgba(var(--esp-ac-rgb), 0.32), transparent 62%);
  animation: auroraA 34s ease-in-out infinite alternate;
}
.bg-aurora::after {
  width: 62vmax; height: 62vmax;
  bottom: -26vmax; right: -16vmax;
  background: radial-gradient(circle at 60% 60%, rgba(124, 58, 237, 0.26), transparent 64%);
  animation: auroraB 40s ease-in-out infinite alternate;
}
@keyframes auroraA {
  0%   { transform: translate3d(0, 0, 0) scale(1);        opacity: 0.75; }
  50%  { transform: translate3d(12vmax, 8vmax, 0) scale(1.18); opacity: 1; }
  100% { transform: translate3d(-6vmax, 4vmax, 0) scale(0.94); opacity: 0.8; }
}
@keyframes auroraB {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1);   opacity: 0.7; }
  50%  { transform: translate3d(-10vmax, -6vmax, 0) rotate(30deg) scale(1.15); opacity: 1; }
  100% { transform: translate3d(6vmax, 2vmax, 0) rotate(-20deg) scale(0.9); opacity: 0.75; }
}
.bg-stars {
  z-index: -3;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 18%, rgba(255, 255, 255, 0.9), transparent 100%),
    radial-gradient(1px 1px at 28% 66%, rgba(255, 255, 255, 0.6), transparent 100%),
    radial-gradient(1.4px 1.4px at 44% 33%, rgba(200, 220, 255, 0.8), transparent 100%),
    radial-gradient(1px 1px at 61% 82%, rgba(255, 255, 255, 0.55), transparent 100%),
    radial-gradient(1.3px 1.3px at 73% 12%, rgba(255, 255, 255, 0.85), transparent 100%),
    radial-gradient(1px 1px at 87% 47%, rgba(220, 235, 255, 0.6), transparent 100%),
    radial-gradient(1.1px 1.1px at 93% 71%, rgba(255, 255, 255, 0.7), transparent 100%),
    radial-gradient(1px 1px at 5% 90%, rgba(200, 220, 255, 0.5), transparent 100%);
  background-size: 620px 620px;
  animation: starsTwinkle 7s ease-in-out infinite alternate;
}
@keyframes starsTwinkle {
  0% { opacity: 0.35; }
  100% { opacity: 0.9; }
}
.bg-grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
@media (prefers-reduced-motion: reduce) {
  .bg-aurora::before, .bg-aurora::after, .bg-stars { animation: none; }
}
