/* ═══════════════ Snap+ Store — design system (Apple × Stripe, sobre) ═══════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@500;600;700&display=swap');

:root {
  --bg: #070709;
  --card: #101016;
  --card-2: #14141b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f2f4;
  --muted: #9b9ba6;
  --muted-2: #6b6b76;
  --yellow: #00E676;
  --violet: #00C853;
  --cyan: #69F0AE;
  --green: #34D399;
  --red: #F87171;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --title: 'Unbounded', 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: #070709; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Utilitaires ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--yellow); }

.h2 {
  font-family: var(--title); font-weight: 600;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.15;
  letter-spacing: -0.01em; margin-top: 12px;
}
.h2 .accent { color: var(--yellow); }
.h2 .accent-v { color: var(--violet); }

.sub { color: var(--muted); margin-top: 14px; max-width: 560px; font-size: 15.5px; }

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }

/* ── Boutons ── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  overflow: hidden; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--yellow); color: #ffffff; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(0, 230, 118, 0.35); transform: translateY(-1px); }
.btn-primary .shine {
  position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-primary:hover .shine { animation: shine 0.9s var(--ease); }
@keyframes shine { to { left: 130%; } }

.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255, 255, 255, 0.02); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.05); }

.btn-danger {
  border: 1px solid rgba(248, 113, 113, 0.5); background: rgba(248, 113, 113, 0.14); color: #ffb4b4;
}
.btn-danger:hover { background: rgba(248, 113, 113, 0.22); border-color: rgba(248, 113, 113, 0.8); }

.btn-sm { padding: 10px 18px; font-size: 13.5px; border-radius: 10px; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ── Badges & labels (rares) ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04); color: var(--muted);
}
.badge-yellow { background: rgba(0, 230, 118, 0.1); border-color: rgba(0, 230, 118, 0.35); color: var(--yellow); }
.badge-violet { background: rgba(0, 200, 83, 0.12); border-color: rgba(0, 200, 83, 0.4); color: #a5d6a7; }
.badge-green { background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.35); color: var(--green); }
.badge-red { background: rgba(248, 113, 113, 0.1); border-color: rgba(248, 113, 113, 0.35); color: var(--red); }

/* ── Curseur personnalisé (desktop) ── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  border-radius: 50%; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.3s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--yellow); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(0, 230, 118, 0.5); transition: opacity 0.3s, width 0.2s, height 0.2s; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor .cursor-ring.is-hover { width: 52px; height: 52px; }
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
  html { scroll-behavior: auto; }
}

/* ── Reveal au scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(7, 7, 9, 0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.nav.scrolled {
  height: 60px; background: rgba(7, 7, 9, 0.82);
  border-bottom-color: var(--line);
}
.nav-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: var(--yellow); }

.nav-inner { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 28px; }

.logo { display: flex; align-items: center; gap: 11px; font-family: var(--title); font-weight: 600; font-size: 17px; letter-spacing: 0.01em; }
.logo-mark {
  width: 108px; height: auto; display: block;
  filter: drop-shadow(0 0 14px rgba(0, 230, 118, 0.45));
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo-mark { transform: scale(1.05); }
.footer-logo .logo-mark { width: 118px; }

.nav-links { display: flex; gap: 26px; margin: 0 auto; }
.nav-links a { position: relative; font-size: 14.5px; font-weight: 500; color: var(--muted); padding: 4px 0; transition: color 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--yellow); transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-favs {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); padding: 8px 12px; border-radius: 10px; border: 1px solid transparent; transition: all 0.25s;
}
.nav-favs:hover { border-color: var(--line); color: var(--text); }
.nav-favs svg { transition: transform 0.3s var(--ease); }
.nav-favs:hover svg { transform: scale(1.15); }
.nav-favs .count { color: var(--yellow); }

.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; place-items: center; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190; display: flex; flex-direction: column;
  background: rgba(7, 7, 9, 0.97); backdrop-filter: blur(18px);
  padding: 110px 32px 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--title); font-size: 26px; font-weight: 600; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(14px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.mobile-menu.open a { transform: none; opacity: 1; }
.mobile-menu .btn { margin-top: 28px; }
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; }
  .nav-actions .nav-favs { display: none; }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 90px; overflow: hidden;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 35%, black 30%, transparent 75%);
}
.hero-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.12), transparent 62%);
  top: -160px; left: 50%; transform: translateX(-50%); z-index: 0;
  animation: glowFloat 9s ease-in-out infinite alternate;
}
@keyframes glowFloat {
  from { transform: translateX(-50%) translateY(0); }
  to { transform: translateX(-50%) translateY(34px); }
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(0, 230, 118, 0.35); background: rgba(0, 230, 118, 0.07);
  font-size: 13px; font-weight: 600; color: var(--yellow); letter-spacing: 0.02em;
  animation: fadeDown 0.8s var(--ease) both;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }

.hero h1 {
  font-family: var(--title); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(38px, 7vw, 82px); line-height: 1.04;
  margin: 28px 0 10px;
  animation: fadeUp 0.9s 0.08s var(--ease) both;
}
.grad-text {
  background: linear-gradient(100deg, var(--yellow) 5%, #B9F6CA 30%, var(--cyan) 55%, var(--violet) 80%, var(--yellow) 105%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradSlide 8s ease-in-out infinite;
}
@keyframes gradSlide { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero .sub { margin: 0 auto 34px; font-size: 17px; animation: fadeUp 0.9s 0.18s var(--ease) both; }

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.9s 0.28s var(--ease) both; }

.hero-stats {
  display: flex; justify-content: center; gap: 56px; margin-top: 54px;
  animation: fadeUp 0.9s 0.38s var(--ease) both;
}
.stat { text-align: center; }
.stat .num { font-family: var(--title); font-size: 32px; font-weight: 600; color: var(--yellow); letter-spacing: -0.01em; }
.stat .num.violet { color: var(--violet); }
.stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

.hero-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 64px auto 0; max-width: 980px; perspective: 1200px;
  animation: fadeUp 1s 0.5s var(--ease) both;
}
.hcard {
  position: relative; padding: 20px 18px; border-radius: 16px; text-align: left;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.4s;
  animation: floatY 7s ease-in-out infinite alternate;
}
.hcard:nth-child(2) { animation-delay: 0.8s; }
.hcard:nth-child(3) { animation-delay: 1.6s; }
.hcard:nth-child(4) { animation-delay: 2.4s; }
.hcard:hover { border-color: rgba(0, 230, 118, 0.45); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 34px rgba(0, 230, 118, 0.1); }
@keyframes floatY { to { transform: translateY(-12px); } }
.hcard .hic {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3); margin-bottom: 12px;
}
.hcard.alt .hic { background: rgba(0, 200, 83, 0.12); border-color: rgba(0, 200, 83, 0.4); }
.hcard.alt2 .hic { background: rgba(105, 240, 174, 0.1); border-color: rgba(105, 240, 174, 0.35); }
.hcard .hname { font-weight: 600; font-size: 14.5px; }
.hcard .hprice { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hcard .hprice b { color: var(--yellow); font-weight: 600; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-stats { gap: 34px; }
  .stat .num { font-size: 25px; }
}
@media (max-width: 560px) {
  .hero-cards { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-zone { position: relative; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: #0a0a0e; }
.marquee-zone::before, .marquee-zone::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-zone::before { left: 0; background: linear-gradient(90deg, #070709, transparent); }
.marquee-zone::after { right: 0; background: linear-gradient(-90deg, #070709, transparent); }
.marquee { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-zone:hover .marquee { animation-play-state: paused; }
.marquee span {
  font-family: var(--title); font-size: 17px; font-weight: 600; letter-spacing: 0.05em;
  color: #3d3d46; padding: 0 26px; white-space: nowrap;
  transition: color 0.3s;
}
.marquee span:hover { color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ CATALOGUE ═══════════════ */



.chip {
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  background: rgba(255, 255, 255, 0.02); transition: all 0.25s var(--ease);
}
.chip:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }
.chip.active { background: var(--yellow); color: #0a0a0c; border-color: var(--yellow); }
.chip.fav-chip.active { background: var(--violet); border-color: var(--violet); color: #fff; }


























@keyframes heartPop { 40% { transform: scale(1.35); } }






/* Confettis (action uniquement) */
.confetti-piece {
  position: fixed; z-index: 3000; pointer-events: none;
  width: 7px; height: 11px; border-radius: 2px;
}

/* ═══════════════ FORMATS ═══════════════ */
.formats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 36px; }
.fcard {
  padding: 22px; border-radius: 16px; background: var(--card); border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.fcard:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.2); }
.fcard h4 { font-size: 15.5px; font-weight: 600; }
.fcard p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.fcard .price { font-family: var(--title); font-weight: 600; color: var(--yellow); margin-top: 14px; font-size: 17px; }
.fcard .price small { color: var(--muted-2); font-family: var(--font); font-size: 12.5px; font-weight: 400; margin-left: 6px; text-decoration: line-through; }
.fcard .save { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--green); }

/* Comparateur flip 3D */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 36px; }
.flip-card { perspective: 1200px; cursor: pointer; height: 210px; }
.flip-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform 0.7s var(--ease);
}
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0; border-radius: 16px; padding: 22px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
}
.flip-back { transform: rotateY(180deg); background: linear-gradient(160deg, rgba(0, 230, 118, 0.06), var(--card) 60%); border-color: rgba(0, 230, 118, 0.3); }
.flip-face h4 { font-size: 15px; font-weight: 600; }
.flip-face .big { font-family: var(--title); font-size: 26px; font-weight: 600; }
.flip-face .big small { font-family: var(--font); font-size: 13px; color: var(--muted); font-weight: 400; }
.flip-face .hint { font-size: 12px; color: var(--muted-2); }
.flip-face ul { list-style: none; font-size: 13px; color: var(--muted); }
.flip-face ul li { padding: 2px 0; }
.flip-face ul li::before { content: '— '; color: var(--yellow); }

/* ═══════════════ BUNDLES ═══════════════ */
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 16px; margin-top: 36px; }

























/* ═══════════════ BUDGET ═══════════════ */
.budget-box { margin-top: 36px; padding: 34px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); max-width: 760px; }
.budget-label { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.budget-label b { color: var(--yellow); font-family: var(--title); font-size: 17px; }
.range-wrap { position: relative; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.range-fill {
  position: absolute; inset: 0 auto 0 0; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--yellow));
  transition: width 0.25s var(--ease);
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.35);
}
.range-wrap input[type='range'] {
  position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; margin: 0;
}
.range-thumb {
  position: absolute; top: 50%; left: 0%; width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); transform: translate(-50%, -50%);
  border: 3px solid #0a0a0c; box-shadow: 0 0 0 1.5px var(--yellow), 0 0 20px rgba(0, 230, 118, 0.5);
  pointer-events: none; transition: left 0.25s var(--ease);
}
.budget-marks { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); margin-top: 12px; }
.budget-suggest { display: grid; gap: 10px; margin-top: 26px; }
.suggest {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border-radius: 13px; background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line); animation: fadeUp 0.5s var(--ease) both;
}
.suggest .sname { font-weight: 600; font-size: 14.5px; }
.suggest .smeta { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.suggest .sprice { font-family: var(--title); font-weight: 600; color: var(--yellow); font-size: 15px; flex: none; }

/* ═══════════════ PREUVE ═══════════════ */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 36px; }
.proof-card { padding: 24px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.stars { color: var(--yellow); font-size: 13px; letter-spacing: 3px; }
.proof-card p { font-size: 14.5px; color: var(--muted); margin-top: 12px; min-height: 66px; }
.proof-card .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 13.5px; font-weight: 600; }
.proof-card .who .vbadge { margin-left: auto; }
.avatar { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; background: linear-gradient(135deg, var(--violet), var(--cyan)); color: #fff; }
.pay-logos { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.pay-logo {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 11px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  font-size: 12.5px; font-weight: 700; color: var(--muted); letter-spacing: 0.04em;
}
.orders-counter { margin-top: 26px; font-size: 14px; color: var(--muted); }
.orders-counter b { color: var(--yellow); font-family: var(--title); font-weight: 600; }

/* ═══════════════ COMMANDE ═══════════════ */
.order-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; margin-top: 40px; align-items: start; }
.order-form { padding: 30px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); }

.osteps { display: flex; gap: 10px; margin-bottom: 26px; }
.ostep {
  flex: 1; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 11px;
  border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--muted-2);
  transition: all 0.3s var(--ease);
}
.ostep .n {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(255, 255, 255, 0.07); font-size: 11.5px;
}
.ostep.active { border-color: rgba(0, 230, 118, 0.5); color: var(--text); background: rgba(0, 230, 118, 0.05); }
.ostep.active .n { background: var(--yellow); color: #0a0a0c; }
.ostep.done { border-color: rgba(52, 211, 153, 0.4); color: var(--green); }
.ostep.done .n { background: var(--green); color: #052e22; }

.ostep-body { display: none; animation: fadeUp 0.45s var(--ease) both; }
.ostep-body.active { display: block; }

.fstep1 h4, .fstep2 h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.fstep1 .hint, .fstep2 .hint { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 11px;
  background: #0c0c12; border: 1px solid var(--line); color: var(--text); font-size: 14.5px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(0, 230, 118, 0.55); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.08); }
.field .error-msg { font-size: 12.5px; color: var(--red); margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select { border-color: rgba(248, 113, 113, 0.6); }
.field.has-error .error-msg { display: block; }
.field .ok-msg { font-size: 12.5px; color: var(--green); margin-top: 6px; display: none; }
.field.is-ok .ok-msg { display: block; }
.field input.invalid { border-color: rgba(248, 113, 113, 0.6); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.order-summary {
  position: sticky; top: 96px; padding: 28px; border-radius: 20px;
  background: linear-gradient(165deg, rgba(0, 230, 118, 0.05), var(--card) 50%);
  border: 1px solid var(--line);
}
.order-summary h4 { font-family: var(--title); font-size: 16px; font-weight: 600; }
.sum-line { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.sum-line .l { color: var(--muted); }
.sum-line .v { font-weight: 600; text-align: right; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; }
.sum-total .l { font-weight: 600; }
.sum-total .v { font-family: var(--title); font-size: 24px; font-weight: 600; color: var(--yellow); }
.sum-total .v small { font-family: var(--font); font-size: 12px; color: var(--muted-2); font-weight: 400; }

/* Carte cadeau (aperçu live) */
.gift-preview {
  position: relative; margin-top: 24px; border-radius: 18px; padding: 26px; overflow: hidden;
  background: linear-gradient(140deg, #101016, #0c0c12);
  border: 1px solid rgba(0, 230, 118, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 44px rgba(0, 230, 118, 0.1);
}
.gift-preview::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 12%, rgba(0, 230, 118, 0.16), transparent 55%),
    radial-gradient(circle at 8% 90%, rgba(0, 200, 83, 0.14), transparent 50%);
}
.gift-preview > * { position: relative; }
.gift-logo { display: flex; align-items: center; gap: 9px; font-family: var(--title); font-weight: 600; font-size: 13px; }
.gift-logo .logo-mark { width: 26px; height: 26px; font-size: 13px; border-radius: 7px; }
.gift-amount { font-family: var(--title); font-size: 42px; font-weight: 700; margin-top: 26px; letter-spacing: -0.02em; }
.gift-msg { margin-top: 10px; font-size: 14px; color: var(--muted); font-style: italic; min-height: 42px; }
.gift-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); text-transform: uppercase; }
.gift-foot .ref { font-family: monospace; color: var(--yellow); }

/* Chargement / succès */
.loader {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 2.5px solid rgba(0, 230, 118, 0.25); border-top-color: var(--yellow);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-note { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; background: rgba(0, 230, 118, 0.06); border: 1px solid rgba(0, 230, 118, 0.3); font-size: 14px; margin-bottom: 16px; }

.order-success { text-align: center; padding: 30px 10px; }
.order-success .check {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.5);
  display: grid; place-items: center; color: var(--green);
  animation: popIn 0.55s var(--ease) both;
}
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.order-success h4 { font-family: var(--title); font-size: 20px; font-weight: 600; }
.order-success .ref-line { margin-top: 12px; font-size: 15px; color: var(--muted); }
.order-success .ref-line b { font-family: monospace; color: var(--yellow); font-size: 18px; letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

/* ═══════════════ FAQ / FOOTER ═══════════════ */
.faq-list { max-width: 780px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 4px; text-align: left; font-size: 15.5px; font-weight: 600;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--yellow); }
.faq-q .plus { position: relative; width: 22px; height: 22px; flex: none; transition: transform 0.4s var(--ease); color: var(--muted); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 4px 20px; color: var(--muted); font-size: 14.5px; max-width: 680px; }

.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; background: #0a0a0e; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer .fdesc { font-size: 13.5px; color: var(--muted); margin-top: 14px; max-width: 300px; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--muted); transition: color 0.25s, padding-left 0.25s var(--ease); }
.footer-links a:hover { color: var(--yellow); padding-left: 5px; }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 26px;
  font-size: 13px; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px);
  background: #17171d; border: 1px solid var(--line); color: var(--text);
  padding: 13px 20px; border-radius: 12px; font-size: 14px; font-weight: 500;
  z-index: 4000; opacity: 0; pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.6);
  max-width: min(92vw, 460px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.error { border-color: rgba(248, 113, 113, 0.55); }

/* ═══════════════ STATUS ═══════════════ */
.status-hero { padding: 150px 0 60px; text-align: center; }
.status-card { max-width: 640px; margin: 0 auto; padding: 34px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); }
.status-ref { font-family: monospace; font-size: 22px; color: var(--yellow); letter-spacing: 0.08em; margin-top: 14px; }

.timeline { display: grid; gap: 0; margin: 34px 0 6px; text-align: left; }
.tstep { position: relative; display: flex; gap: 16px; padding-bottom: 28px; }
.tstep::before {
  content: ''; position: absolute; left: 13px; top: 30px; bottom: 2px; width: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.tstep:last-child::before { display: none; }
.tstep .dot {
  width: 28px; height: 28px; border-radius: 50%; flex: none; z-index: 1;
  display: grid; place-items: center; background: #17171d; border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--muted-2); transition: all 0.4s var(--ease);
}
.tstep.done .dot { background: rgba(52, 211, 153, 0.15); border-color: var(--green); color: var(--green); }
.tstep.current .dot { background: rgba(0, 230, 118, 0.12); border-color: var(--yellow); color: var(--yellow); box-shadow: 0 0 16px rgba(0, 230, 118, 0.35); animation: pulse 2s infinite; }
.tstep .tlabel { font-size: 14.5px; font-weight: 600; padding-top: 3px; }
.tstep .tdesc { font-size: 13px; color: var(--muted); margin-top: 2px; }
.tstep .ttime { font-size: 12px; color: var(--muted-2); margin-top: 4px; }

.status-info { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 26px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-align: left; }
.status-info div { padding: 14px 16px; border-bottom: 1px solid var(--line); }
.status-info div:nth-child(odd) { border-right: 1px solid var(--line); }
.status-info .k { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.status-info .v { font-size: 14.5px; font-weight: 600; margin-top: 3px; word-break: break-word; }

.status-empty { text-align: center; padding: 40px 0; color: var(--muted); }

/* ═══════════════ ADMIN ═══════════════ */
.admin-shell { max-width: 1320px; margin: 0 auto; padding: 110px 24px 80px; }
.admin-login {
  max-width: 400px; margin: 0 auto; padding: 36px; border-radius: 20px;
  background: var(--card); border: 1px solid var(--line);
}
.admin-login h2 { font-family: var(--title); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.admin-login .hint { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }

.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.admin-top h1 { font-family: var(--title); font-size: 22px; font-weight: 600; }
.admin-top .who { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tab {
  padding: 11px 18px; font-size: 14px; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.25s, border-color 0.25s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.panel { display: none; animation: fadeUp 0.4s var(--ease) both; }
.panel.active { display: block; }

.admin-toolbar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.admin-toolbar input, .admin-toolbar select {
  padding: 10px 14px; border-radius: 10px; background: var(--card); border: 1px solid var(--line);
  font-size: 13.5px; color: var(--text);
}
.admin-toolbar input:focus, .admin-toolbar select:focus { outline: none; border-color: rgba(0, 230, 118, 0.5); }
.admin-toolbar input { min-width: 240px; }

.atable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.atable { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 1150px; }
.atable th {
  text-align: left; padding: 12px 14px; font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted-2); border-bottom: 1px solid var(--line); white-space: nowrap;
  position: sticky; top: 0; background: var(--card);
}
.atable td { padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); vertical-align: top; }
.atable tr:hover td { background: rgba(255, 255, 255, 0.02); }
.atable .mono { font-family: 'SF Mono', ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--yellow); }
.atable .phone { font-family: 'SF Mono', ui-monospace, Menlo, monospace; color: var(--cyan); }

.order-cell { min-width: 190px; }
.order-cell .svc { font-weight: 600; }
.order-cell .fmt { font-size: 12px; color: var(--muted); }
.order-cell .gift { font-size: 12px; color: var(--violet); font-style: italic; margin-top: 3px; max-width: 220px; }

.st { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.st::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.st-pending { background: rgba(255, 255, 255, 0.06); color: var(--muted); }
.st-otp_sent { background: rgba(105, 240, 174, 0.1); color: var(--cyan); }
.st-verified { background: rgba(0, 200, 83, 0.12); color: #a5d6a7; }
.st-validated { background: rgba(52, 211, 153, 0.1); color: var(--green); }
.st-rejected { background: rgba(248, 113, 113, 0.1); color: var(--red); }

.act-row { display: flex; gap: 6px; flex-wrap: wrap; }
.mini-btn {
  padding: 6px 11px; border-radius: 8px; font-size: 11.5px; font-weight: 700;
  border: 1px solid var(--line); color: var(--muted); transition: all 0.2s; white-space: nowrap;
}
.mini-btn:hover { border-color: rgba(255, 255, 255, 0.3); color: var(--text); }
.mini-btn.ok { color: var(--green); border-color: rgba(52, 211, 153, 0.4); }
.mini-btn.ok:hover { background: rgba(52, 211, 153, 0.1); }
.mini-btn.warn { color: var(--cyan); border-color: rgba(105, 240, 174, 0.4); }
.mini-btn.danger { color: var(--red); border-color: rgba(248, 113, 113, 0.4); }
.mini-btn.danger:hover { background: rgba(248, 113, 113, 0.1); }
.mini-btn.accent { color: var(--yellow); border-color: rgba(0, 230, 118, 0.4); }
.mini-btn:disabled { opacity: 0.35; pointer-events: none; }

.admin-note { margin-top: 8px; font-size: 12px; color: var(--muted); padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 26px; }
.stat-card { padding: 20px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.stat-card .k { font-size: 12px; color: var(--muted); }
.stat-card .v { font-family: var(--title); font-size: 26px; font-weight: 600; margin-top: 6px; }
.stat-card .v.yellow { color: var(--yellow); }
.stat-card .v.violet { color: var(--violet); }
.stat-card .v.green { color: var(--green); }
.stat-card .v.cyan { color: var(--cyan); }

.role-card { padding: 18px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); margin-bottom: 12px; }
.role-card .rname { font-weight: 700; font-size: 15px; }
.role-card .perms { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.perm { font-size: 11.5px; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); color: var(--muted); border: 1px solid var(--line); }

.log-line { display: flex; gap: 12px; padding: 10px 12px; border-radius: 10px; font-size: 12.5px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--line); margin-bottom: 8px; flex-wrap: wrap; }
.log-line .t { font-family: monospace; color: var(--muted-2); }
.log-line .ty { font-weight: 700; color: var(--red); }
.log-line .ty.info { color: var(--cyan); }

/* ═══════════════ DIAG ═══════════════ */
.diag-wrap { max-width: 760px; margin: 0 auto; }
.diag-card { padding: 26px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); margin-bottom: 14px; }
.diag-card .dtitle { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.diag-card .dbody { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
.diag-ok { color: var(--green); }
.diag-bad { color: var(--red); }
.diag-warn { color: var(--yellow); }
.diag-run { margin-top: 6px; }

/* ═══════════════ 404 ═══════════════ */
.e404 { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 40px 20px; }
.e404 .code { font-family: var(--title); font-size: clamp(90px, 20vw, 200px); font-weight: 700; line-height: 1; background: linear-gradient(100deg, var(--yellow), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.e404 p { color: var(--muted); margin: 20px 0 30px; }

/* ═══════════════ prefers-reduced-motion : tout est coupé, tout reste fonctionnel ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee { animation: none !important; }
  .hero-glow { animation: none !important; }
}

/* ═══════════════ FREEPROMO v2 — logos réels, gratuit, mobile-first ═══════════════ */

/* Tuile logo de marque (vraies images) */
.brand-tile {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.brand-tile img { width: 28px; height: 28px; object-fit: contain; }
.brand-tile .fallback { display: none; font-family: var(--title); font-weight: 700; font-size: 14px; color: var(--yellow); }
.brand-tile.noimg img { display: none; }
.brand-tile.noimg .fallback { display: block; }
.brand-tile.sm { width: 40px; height: 40px; border-radius: 11px; }
.brand-tile.sm img { width: 21px; height: 21px; }
.hcard { display: flex; flex-direction: column; gap: 10px; padding: 18px 16px; }
.hcard .brand-tile { width: 44px; height: 44px; }
.hcard .hprice { color: var(--yellow); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; }
.hcard .hprice b { font-weight: 700; }

/* Badge GRATUIT */
.free-badge {
  background: var(--yellow); color: #0a0a0c; border-color: var(--yellow);
  font-weight: 800; letter-spacing: 0.04em; font-size: 11px; padding: 4px 9px;
}



/* Comment ça marche */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.how-card {
  padding: 26px 22px; border-radius: 18px; background: var(--card); border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.how-card:hover { transform: translateY(-4px); border-color: rgba(0, 230, 118, 0.35); }
.how-num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--title); font-weight: 700; font-size: 17px;
  background: rgba(0, 230, 118, 0.12); color: var(--yellow); border: 1px solid rgba(0, 230, 118, 0.35);
  margin-bottom: 14px;
}
.how-card h4 { font-family: var(--title); font-size: 16px; font-weight: 600; }
.how-card p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* Packs */


.bcard .btotal .val s { color: var(--muted-2); font-family: var(--font); font-size: 13px; font-weight: 400; text-decoration-color: rgba(0, 230, 118, 0.6); }

/* Total GRATUIT */
.sum-total .v s { color: var(--muted-2); font-family: var(--font); font-size: 13px; font-weight: 400; margin-right: 8px; text-decoration-color: rgba(0, 230, 118, 0.6); }
.sum-total .v .free { color: var(--yellow); }
.gift-amount { letter-spacing: 0.01em; }

/* ── Mobile : priorité tactile et lisibilité ── */
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .btn { min-height: 48px; }
  .brand-tile { width: 46px; height: 46px; }
}
@media (max-width: 640px) {
  .hero-stats { gap: 24px; }
  .stat .num { font-size: 24px; }
  .hero h1 { font-size: clamp(32px, 11vw, 52px); }
  .hero { padding: 120px 0 60px; }
  .order-form { padding: 22px 16px; }
  .field-row { grid-template-columns: 1fr; }
  .nav-actions .btn { padding: 10px 14px; }
  .hero-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hcard { padding: 14px 12px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
}

/* ═══════════════ FREEPROMO v3 — urgence, partenaires, picker, admin ═══════════════ */

/* Partenaires */
.partner-strip {
  display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 40px; animation: fadeUp 1s 0.6s var(--ease) both;
}
.partner-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03); font-size: 12.5px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.03em;
}
.partner-pill img { display: block; }
.partner-pill.apple { color: #e8e8ec; border-color: rgba(255, 255, 255, 0.18); }
.partner-pill.sfr { color: #fff; background: rgba(230, 0, 0, 0.16); border-color: rgba(230, 0, 0, 0.55); }
.partner-pill.bouygues { color: #fff; background: rgba(0, 105, 175, 0.18); border-color: rgba(0, 160, 235, 0.55); }

/* Tendances */






/* Compteur par carte service */


/* Picker visuel (étape 1) */
.pick-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px;
  margin: 14px 0 16px; max-height: 300px; overflow: auto; padding: 2px;
}
.pick-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 12px 8px; border-radius: 13px; border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.02); font-size: 11.5px; color: var(--muted);
  transition: all 0.22s var(--ease); text-align: center;
}
.pick-item img { width: 34px; height: 34px; object-fit: contain; transition: transform 0.22s var(--ease); }
.pick-item:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.pick-item:hover img { transform: scale(1.12); }
.pick-item.selected {
  border-color: var(--yellow); background: rgba(0, 230, 118, 0.09);
  color: var(--text); box-shadow: 0 0 0 1px var(--yellow), 0 8px 26px rgba(0, 230, 118, 0.12);
}
.pick-selected { margin: 0 0 16px; font-size: 14px; color: var(--muted); }
.pick-selected b { color: var(--text); }

/* Notes partenaires + Apple */
.partner-note {
  margin: 4px 0 16px; padding: 11px 14px; border-radius: 11px; font-size: 12.5px; color: var(--muted);
  background: rgba(0, 200, 83, 0.07); border: 1px solid rgba(0, 200, 83, 0.35);
}
.partner-note b { color: #c4b0ff; }
.apple-note {
  display: flex; align-items: center; gap: 10px; margin: 2px 0 16px;
  padding: 11px 14px; border-radius: 11px; font-size: 12.5px; color: var(--muted);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
}
.apple-note img { flex: none; }
.apple-note b { color: var(--text); }

/* Résumé sticky */
.sum-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sum-logo h4 { font-family: var(--title); font-size: 15px; font-weight: 600; }
.sum-gratis { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: var(--yellow); }
.sum-phone-note { margin-top: 10px; font-size: 12px; color: var(--muted-2); }
.sum-phone-note b { color: var(--muted); }

/* Footer partenaires */
.footer-partners {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--line); margin-bottom: 4px;
}
.footer-partner-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-right: 6px; }

/* ── Admin v3 ── */
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.6s infinite; display: inline-block; }
#clock { font-family: monospace; color: var(--cyan); font-size: 13px; }
.copyable { cursor: pointer; border-bottom: 1px dashed rgba(0, 230, 118, 0.35); }
.copyable:hover { color: var(--yellow); }
.otp-badge {
  display: inline-block; padding: 6px 12px; border-radius: 9px; cursor: pointer;
  background: rgba(0, 230, 118, 0.14); border: 1px solid rgba(0, 230, 118, 0.55);
  font-family: monospace; font-size: 16px; font-weight: 700; letter-spacing: 0.18em; color: var(--yellow);
  transition: transform 0.2s var(--ease);
}
.otp-badge:hover { transform: scale(1.08); }
.atable td .brand-tile.sm { border-radius: 9px; }
.admin-top .who { gap: 8px; }
.stat-card .v { font-size: 24px; }

/* ── Mobile v3 ── */
@media (max-width: 900px) {
  .pick-grid { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); max-height: 260px; }
  .admin-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .partner-strip { gap: 7px; }
  .admin-toolbar { flex-direction: column; }
  .admin-toolbar input, .admin-toolbar select { width: 100%; min-width: 0; }
}

/* ═══════════════ FREEPROMO v4 — ultra pro, mobile-first, animations retenues ═══════════════ */

/* Aurora subtile derrière le hero */
.hero-aurora {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background: conic-gradient(from 0deg at 50% 40%,
    transparent 0deg, rgba(0, 230, 118, 0.06) 70deg, transparent 140deg,
    rgba(0, 200, 83, 0.06) 210deg, transparent 280deg,
    rgba(105, 240, 174, 0.05) 340deg, transparent 360deg);
  filter: blur(70px); opacity: 0.8;
  animation: auroraSpin 28s linear infinite;
}
@keyframes auroraSpin { to { transform: rotate(360deg); } }

/* Tampon GRATUIT */
.stamp {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 14px; border: 2.5px solid var(--yellow); color: var(--yellow);
  font-family: var(--title); font-weight: 700; letter-spacing: 0.14em; font-size: 13px;
  border-radius: 9px; opacity: 0; transform: rotate(-8deg) scale(1.6);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.stamp.stamped { opacity: 1; transform: rotate(-6deg) scale(1); }
.stamp-big { font-size: 19px; padding: 10px 24px; margin: 0 auto 4px; }
.stamp.delivered { border-color: var(--green); color: var(--green); }

/* Squelette de chargement (shimmer) */


@keyframes shimmer { to { transform: translateX(100%); } }

/* Cartes opérateur (SFR / Bouygues) */
.operator-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.op-card {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; text-align: left;
  border-radius: 14px; border: 1.5px solid var(--line); background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.22s var(--ease), background 0.22s, transform 0.22s var(--ease), box-shadow 0.25s;
}
.op-card:active { transform: scale(0.97); }
.op-card b { font-size: 15px; display: block; }
.op-card small { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }
.op-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; background: var(--muted-2); transition: transform 0.25s var(--ease); }
.op-card.sfr .op-dot { background: #E60000; box-shadow: 0 0 10px rgba(230, 0, 0, 0.6); }
.op-card.bouygues .op-dot { background: #00A0EB; box-shadow: 0 0 10px rgba(0, 160, 235, 0.6); }
.op-card.selected.sfr { border-color: rgba(230, 0, 0, 0.65); background: rgba(230, 0, 0, 0.09); box-shadow: 0 0 22px rgba(230, 0, 0, 0.15); }
.op-card.selected.bouygues { border-color: rgba(0, 160, 235, 0.7); background: rgba(0, 160, 235, 0.09); box-shadow: 0 0 22px rgba(0, 160, 235, 0.16); }
.op-card.selected .op-dot { transform: scale(1.3); }
.operator-cards.error .op-card { border-color: rgba(248, 113, 113, 0.55); }
@keyframes shake { 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }
.operator-cards.shake { animation: shake 0.4s var(--ease); }

/* Saisie OTP en 4 cases */
.otp-boxes { display: flex; gap: 10px; flex-wrap: wrap; }
.otp-cell {
  width: 56px; height: 64px; text-align: center; font-size: 26px; font-family: var(--title); font-weight: 700;
  background: #0c0c12; border: 1.5px solid var(--line); border-radius: 12px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.otp-cell:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15); }
.otp-cell.filled { border-color: rgba(0, 230, 118, 0.55); transform: translateY(-2px); }
.otp-boxes.shake { animation: shake 0.4s var(--ease); }

/* Timeline : progression verte */
.tstep::before { transition: background 0.5s var(--ease); }
.tstep.done::before { background: rgba(52, 211, 153, 0.45); }
.tstep.current::before { background: linear-gradient(rgba(52, 211, 153, 0.45), rgba(0, 230, 118, 0.3)); }

/* Barre CTA sticky (mobile uniquement) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 7, 9, 0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(115%); transition: transform 0.45s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-info b { font-family: var(--title); font-size: 19px; color: var(--yellow); }
.sticky-info span { display: block; font-size: 11px; color: var(--muted); }
@media (min-width: 901px) { .sticky-cta { display: none; } }

/* Mention légale partenaires */
.legal-partners {
  margin-top: 12px; text-align: center; font-size: 11.5px; color: var(--muted-2);
  animation: fadeUp 1s 0.7s var(--ease) both; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* How : carrousel scroll-snap sur mobile */
@media (max-width: 900px) {
  .how-carousel {
    display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory;
    margin-left: -24px; margin-right: -24px; padding: 6px 24px 14px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .how-carousel::-webkit-scrollbar { display: none; }
  .how-carousel .how-card { min-width: 80%; scroll-snap-align: center; }
  .how-carousel .how-card:hover { transform: none; }
}

/* Carte service : CTA pleine largeur au tap */
@media (max-width: 640px) {
  .otp-cell { width: 50px; height: 58px; font-size: 23px; }
}

/* Étapes : transition slide */
.ostep-body { display: none; }
.ostep-body.active { display: block; animation: stepIn 0.5s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }

/* Carte cliquable entière */

/* ═══════════════ VOLT v5 — panel admin (sidebar + dashboard + drawer) ═══════════════ */

.logo b { color: var(--yellow); font-weight: inherit; }

.ad-body { min-height: 100vh; background: var(--bg); }
.ad-sidebar {
  position: fixed; top: 0; bottom: 0; left: 0; width: 232px; z-index: 120;
  display: flex; flex-direction: column; padding: 22px 14px;
  background: #0a0a0e; border-right: 1px solid var(--line);
}
.ad-side-label { margin: 26px 14px 8px; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.ad-nav { display: flex; flex-direction: column; gap: 4px; }
.ad-link {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 11px;
  font-size: 14px; font-weight: 600; color: var(--muted); text-align: left;
  transition: background 0.2s, color 0.2s;
}
.ad-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.ad-link.active { color: var(--yellow); background: rgba(0, 230, 118, 0.09); }
.ad-badge {
  margin-left: auto; min-width: 20px; text-align: center;
  font-size: 11px; font-weight: 800; color: #0a0a0c;
  background: var(--yellow); border-radius: 999px; padding: 2px 8px;
}
.ad-side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; }
.ad-side-foot a { color: var(--muted-2); }
.ad-side-foot a:hover { color: var(--yellow); }

.ad-main { margin-left: 232px; padding: 96px 28px 70px; min-height: 100vh; }
.ad-topbar {
  position: fixed; top: 0; left: 232px; right: 0; height: 76px; z-index: 110;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 28px;
  background: rgba(7, 7, 9, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.ad-title { font-family: var(--title); font-size: 19px; font-weight: 600; }
body.logged-out .ad-sidebar, body.logged-out .ad-topbar { display: none; }
body.logged-out .ad-main { margin-left: 0; padding: 60px 20px; }

.ad-card { padding: 22px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.ad-charts { display: grid; grid-template-columns: 1fr 1.35fr; gap: 16px; margin-top: 16px; }

/* Donut */
.donut-wrap { display: flex; align-items: center; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.donut-svg { position: relative; width: 150px; height: 150px; flex: none; }
.donut-svg svg { width: 100%; height: 100%; }
.donut-center {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none;
}
.donut-center b { font-family: var(--title); font-size: 26px; color: var(--yellow); }
.donut-center span { font-size: 11px; color: var(--muted-2); margin-top: 2px; }
.donut-legend { list-style: none; display: grid; gap: 8px; flex: 1; min-width: 170px; }
.donut-legend li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.donut-legend li b { margin-left: auto; color: var(--text); font-size: 13.5px; }
.lg-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

/* Barres 7 jours */
.bars { display: flex; align-items: flex-end; gap: 12px; height: 160px; margin-top: 14px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 7px; height: 100%; }
.bar {
  width: 100%; max-width: 36px; border-radius: 7px 7px 3px 3px; min-height: 4px;
  background: linear-gradient(180deg, rgba(0, 230, 118, 0.85), rgba(0, 230, 118, 0.2));
  transition: height 0.6s var(--ease);
}
.bar.today { background: linear-gradient(180deg, var(--yellow), rgba(0, 200, 83, 0.5)); box-shadow: 0 0 16px rgba(0, 230, 118, 0.3); }
.bar-count { font-size: 11.5px; color: var(--muted); font-weight: 700; }
.bar-label { font-size: 11px; color: var(--muted-2); text-transform: capitalize; }

/* Lignes récentes cliquables */
.rec-line:hover { border-color: rgba(0, 230, 118, 0.35); background: rgba(0, 230, 118, 0.04); }

/* Tiroir détail */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 310; width: min(470px, 100vw);
  display: flex; flex-direction: column;
  background: #0c0c12; border-left: 1px solid var(--line);
  transform: translateX(105%); transition: transform 0.4s var(--ease);
}
.drawer.show { transform: none; }
.drawer header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer-body { flex: 1; overflow: auto; padding: 20px 22px; }
.drawer-foot { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 22px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.dl-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.07); font-size: 13.5px; }
.dl-row .k { color: var(--muted); flex: none; }
.dl-row .v { font-weight: 600; text-align: right; word-break: break-word; }

/* ── Mobile admin ── */
@media (max-width: 900px) {
  .ad-sidebar {
    position: static; width: 100%; flex-direction: column; padding: 12px 14px;
    border-right: none; border-bottom: 1px solid var(--line);
  }
  .ad-side-label { display: none; }
  .ad-nav { flex-direction: row; overflow-x: auto; scrollbar-width: none; }
  .ad-nav::-webkit-scrollbar { display: none; }
  .ad-link { white-space: nowrap; flex: none; }
  .ad-side-foot { display: none; }
  .ad-main { margin-left: 0; padding: 18px 14px 70px; }
  .ad-topbar {
    position: static; height: auto; flex-wrap: wrap; gap: 10px; padding: 12px 4px;
    background: none; backdrop-filter: none; border-bottom: 1px solid var(--line); margin-bottom: 16px;
  }
  .ad-charts { grid-template-columns: 1fr; }
  .drawer { width: 100vw; }
}

/* ═══════════════ VOLT v6 — vrai logo, logos opérateurs, footer minimal ═══════════════ */

/* Logo réel (SVG image) */
.logo-mark {
  width: 34px; height: 34px; border-radius: 11px; display: block;
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.28);
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.04); }
.logo span:last-child { font-family: var(--title); font-weight: 700; font-size: 15.5px; letter-spacing: 0.04em; }
.logo b { color: var(--yellow); font-weight: inherit; }
.footer-logo { justify-content: center; }

/* Logos opérateurs (reproductions fidèles SFR / Bouygues) */
.op-logo {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-weight: 800;
  transition: transform 0.25s var(--ease);
}
.op-logo.sfr {
  background: #E60000; color: #fff;
  font-family: var(--title); font-size: 14px; letter-spacing: 0.01em;
  box-shadow: 0 0 14px rgba(230, 0, 0, 0.35);
}
.op-logo.bouygues {
  background: #00A0EB; color: #fff;
  font-family: var(--title); font-size: 21px;
  box-shadow: 0 0 14px rgba(0, 160, 235, 0.35);
}
.op-logo.sm { width: 24px; height: 24px; border-radius: 7px; }
.op-logo.sm.sfr { font-size: 9px; }
.op-logo.sm.bouygues { font-size: 13px; }
.op-card.selected .op-logo { transform: scale(1.08); }

/* Bandeau partenaires épuré */
.partner-label {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700; margin-right: 4px;
}
.partner-strip .partner-pill { gap: 9px; padding: 9px 16px; }

/* Rangée paiements */
.pay-strip {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 18px;
}
.pay-strip img { width: 22px; height: 22px; object-fit: contain; opacity: 0.9; }

/* Footer minimal + crédits ultra beaux */
.footer-mini { text-align: center; padding: 72px 0 44px; }
.footer-center { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.credits {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--muted-2);
}
.credits a { color: var(--muted); transition: color 0.25s; }
.credits a:hover { color: var(--yellow); }
.credits-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.credits-links span { color: var(--muted-2); }
@media (max-width: 640px) {
  .footer-mini { padding: 56px 0 34px; }
}

/* ═══════════════ VOLT v9 — logo éclair, carte Apple, opérateurs fidèles, animations, admin fou ═══════════════ */

/* Titre hero : révélation ligne par ligne */
.h1-line { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.h1-line { animation: h1Up 0.85s var(--ease) both; }
.h1-line:nth-of-type(1) { animation-delay: 0.06s; }
.h1-line:nth-of-type(2) { animation-delay: 0.24s; }
@keyframes h1Up { from { transform: translateY(112%); } to { transform: none; } }

/* Vraie carte Apple */
.apple-card {
  display: flex; align-items: center; gap: 14px; margin: 4px 0 18px;
  padding: 15px 16px; border-radius: 15px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.apple-card img { flex: none; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)); }
.apple-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.apple-txt b { font-size: 14.5px; }
.apple-txt span { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.apple-txt span b { color: var(--text); font-size: 12.5px; }
.apple-code { display: flex; gap: 5px; margin-left: auto; flex: none; }
.apple-code i {
  width: 15px; height: 22px; border-radius: 6px;
  border: 1.5px dashed rgba(0, 230, 118, 0.55); background: rgba(0, 230, 118, 0.04);
  animation: dashBreathe 2.6s ease-in-out infinite;
}
.apple-code i:nth-child(2) { animation-delay: 0.2s; }
.apple-code i:nth-child(3) { animation-delay: 0.4s; }
.apple-code i:nth-child(4) { animation-delay: 0.6s; }
@keyframes dashBreathe { 50% { border-color: rgba(0, 230, 118, 0.15); transform: translateY(-2px); } }
@media (max-width: 640px) {
  .apple-code { display: none; }
  .apple-card { gap: 11px; padding: 13px; }
  .apple-card img { width: 32px; height: 32px; }
}

/* Logos opérateurs fidèles : SFR (carré rouge « sfr ») & Bouygues (rond bleu « b ») */
.op-logo {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  font-family: var(--title); font-weight: 700; color: #fff;
  transition: transform 0.25s var(--ease);
}
.op-logo.sfr {
  background: linear-gradient(160deg, #ff3b30, #d50000); border-radius: 11px;
  font-size: 13px; letter-spacing: -0.02em;
  box-shadow: 0 6px 16px rgba(213, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.op-logo.bouygues {
  background: linear-gradient(160deg, #00b8f5, #0076c8); border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0, 118, 200, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.op-logo.sm { width: 26px; height: 26px; }
.op-logo.sm.sfr { font-size: 8.5px; border-radius: 7px; box-shadow: none; }
.op-logo.sm.bouygues { font-size: 12px; box-shadow: none; }
.op-card { gap: 13px; padding: 15px 16px; }
.op-card.selected .op-logo { transform: scale(1.1); }

/* Parallaxe souris (hero glow) */
.hero-glow { will-change: transform; }

/* Ripple tactile sur les boutons */
.ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255, 255, 255, 0.45); transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* Bordure dégradée rotative sur le récap */
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.order-summary { position: relative; }
.order-summary::before {
  content: ''; position: absolute; inset: -1.5px; border-radius: 21px; padding: 1.5px;
  background: conic-gradient(from var(--ang), transparent 0deg 60deg, rgba(0, 230, 118, 0.55) 110deg, transparent 160deg 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: angSpin 7s linear infinite; pointer-events: none;
}
@keyframes angSpin { to { --ang: 360deg; } }

/* Pick : rebond à la sélection */
.pick-item.selected img { animation: pickPop 0.4s var(--ease); }
@keyframes pickPop { 40% { transform: scale(1.22) rotate(-6deg); } }

/* ── Mobile renforcé ── */
@media (max-width: 640px) {
  .pick-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; max-height: 300px; }
  .pick-item { padding: 11px 6px; gap: 6px; }
  .pick-item img { width: 38px; height: 38px; }
  .pick-item span { font-size: 10.5px; line-height: 1.25; }
  .hero h1 { font-size: clamp(30px, 10.5vw, 48px); }
  .hero-badge { font-size: 11.5px; padding: 8px 14px; }
  .op-logo { width: 42px; height: 42px; }
  .ostep { padding: 9px 8px; gap: 7px; font-size: 11.5px; }
  .status-card { padding: 22px 16px; }
  .status-ref { font-size: 19px; }
  .otp-cell { width: 54px; height: 60px; font-size: 24px; }
  .admin-toolbar .btn, .admin-toolbar .mini-btn { width: 100%; }
}

/* ── Admin : barre d'actions en masse ── */
.bulk-bar {
  position: sticky; top: 84px; z-index: 60;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 14px; padding: 12px 14px; border-radius: 13px;
  background: rgba(0, 230, 118, 0.07); border: 1px solid rgba(0, 230, 118, 0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeUp 0.3s var(--ease) both;
}
.bulk-bar b { font-family: var(--title); font-size: 13px; color: var(--yellow); margin-right: 4px; }
.req-check { width: 17px; height: 17px; accent-color: #00E676; cursor: pointer; }
th .req-check { vertical-align: middle; }
.ad-split { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.ad-split .split-item {
  display: flex; align-items: center; gap: 9px; padding: 10px 14px;
  border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.ad-split .split-item b { font-family: var(--title); font-size: 15px; }
.ad-split .split-item.sfr b { color: #ff5048; }
.ad-split .split-item.bouygues b { color: #35c4ff; }
.drawer-note-row { display: flex; gap: 8px; margin-bottom: 12px; }
.drawer-note-row input {
  flex: 1; padding: 10px 12px; border-radius: 10px;
  background: #0c0c12; border: 1px solid var(--line); font-size: 13px; color: var(--text);
}
.drawer-note-row input:focus { outline: none; border-color: rgba(0, 230, 118, 0.55); }

/* ═══════════════ VOLT v10 — vrais logos opérateurs, pression live, vitesse, mobile ─══════════════ */

/* Vrais logos opérateurs (images officielles) */
.op-logo-img {
  width: 46px; height: 46px; flex: none; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s var(--ease);
}
.op-logo-img.round { border-radius: 50%; }
.op-card.selected .op-logo-img { transform: scale(1.1); }
.split-item img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.partner-pill img { object-fit: contain; }

/* Badge N°1 dans le picker */
.pick-item { position: relative; }
.pick-hot {
  position: absolute; top: -7px; right: -7px; z-index: 2;
  padding: 3px 7px; border-radius: 999px;
  background: linear-gradient(120deg, #FF5A3C, #00E676); color: #0a0a0c;
  font-size: 9.5px; font-weight: 900; letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(255, 90, 60, 0.45);
  animation: hotPulse 1.8s ease-in-out infinite;
}
@keyframes hotPulse { 50% { transform: scale(1.12); } }

/* ── PC : animations supplémentaires ── */
.hero .btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: shine 2.8s var(--ease) infinite;
}
@keyframes shine { 0% { left: -80%; } 55%, 100% { left: 130%; } }
.pick-item:hover { border-color: rgba(0, 230, 118, 0.5); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 230, 118, 0.1); }
.pick-item:hover img { transform: scale(1.14) rotate(-3deg); }
.order-form { position: relative; overflow: hidden; }
.order-form::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background: radial-gradient(600px circle at 85% 0%, var(--yellow), transparent 55%);
}

/* ── Mobile : encore plus net ── */
@media (max-width: 640px) {
  .field input, .field select { min-height: 52px; font-size: 16px; }
  .btn { min-height: 52px; }
  .pick-item { border-radius: 12px; }
  .hero-stats { gap: 18px; }
  .stat .num { font-size: 22px; }
  .hero { padding: 110px 0 50px; }
  .section { padding: 52px 0; }
  .operator-cards { gap: 8px; }
  .op-card { padding: 12px; gap: 10px; }
  .op-logo-img { width: 40px; height: 40px; }
  .how-card { padding: 20px 16px; }
  .faq-q { font-size: 14.5px; }
  .footer-mini { padding: 48px 0 30px; }
}

/* ═══════════════ VOLT v11 — mode démo temporaire (codes affichés) ═══════════════ */

.demo-code-box {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  margin-top: 16px; padding: 14px 18px; border-radius: 13px;
  background: rgba(0, 230, 118, 0.07);
  border: 1.5px dashed rgba(0, 230, 118, 0.55);
  font-size: 13px; color: var(--muted); text-align: center;
}
.demo-code-box b {
  font-family: var(--title); font-size: 24px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--yellow);
}
.demo-code-box span { font-size: 11.5px; color: var(--muted-2); }
@media (max-width: 640px) {
  .demo-code-box b { font-size: 21px; }
}

/* ═══════════════ VOLT v12 — options dynamiques par service (points, formule, montant) ═══════════════ */

.option-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px;
  margin-bottom: 20px;
}
.option-item {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  padding: 14px 15px; text-align: left; border-radius: 14px;
  background: rgba(255, 255, 255, 0.025); border: 1.5px solid var(--line);
  transition: border-color 0.22s var(--ease), background 0.22s, transform 0.22s var(--ease), box-shadow 0.25s;
  overflow: hidden;
}
.option-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.25s;
  background: radial-gradient(240px circle at var(--mx, 80%) 0%, rgba(0, 230, 118, 0.1), transparent 60%);
}
.option-item:hover { border-color: rgba(0, 230, 118, 0.45); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4); }
.option-item:hover::after { opacity: 1; }
.option-item:active { transform: scale(0.97); }
.opt-label { font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.opt-price { font-size: 12px; color: var(--muted-2); }
.opt-price s { text-decoration-color: rgba(0, 230, 118, 0.6); text-decoration-thickness: 1.5px; }
.opt-price b { color: var(--yellow); font-weight: 700; margin-left: 2px; }
.opt-free {
  font-size: 10px; font-weight: 900; letter-spacing: 0.08em; color: #0a0a0c;
  background: var(--yellow); border-radius: 999px; padding: 3px 9px;
  opacity: 0.35; transition: opacity 0.22s;
}
.option-item.selected {
  border-color: var(--yellow); background: rgba(0, 230, 118, 0.07);
  box-shadow: 0 0 0 1px var(--yellow), 0 14px 34px rgba(0, 230, 118, 0.13);
}
.option-item.selected::before {
  content: '✓'; position: absolute; top: 10px; right: 12px;
  width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  background: var(--yellow); color: #0a0a0c; font-weight: 900; font-size: 12px;
  animation: pickPop 0.35s var(--ease);
}
.option-item.selected .opt-free { opacity: 1; }
.option-item.selected .opt-label { color: var(--yellow); }

@media (max-width: 640px) {
  .option-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .option-item { padding: 12px 13px; min-height: 78px; }
  .opt-label { font-size: 12.5px; }
}
@media (max-width: 380px) {
  .option-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ VOLT v15 — cartes opérateur : logo seul, en gros ═══════════════ */
.op-logo-img.big { width: 58px; height: 58px; }
.op-card.logo-only { justify-content: center; padding: 18px 14px; }
.op-card.logo-only.selected { background: rgba(0, 230, 118, 0.09); }
.partner-pill:has(> img:only-child) { padding: 8px 13px; }
@media (max-width: 640px) {
  .op-logo-img.big { width: 52px; height: 52px; }
  .op-card.logo-only { padding: 15px 10px; }
}

/* Login admin : shake en cas d'erreur */
.admin-login.shake { animation: shake 0.4s ease; }

/* ═══════════════ VOLT v21 — changer d'offre + vert argent ═══════════════ */
.ostep { cursor: pointer; }
.change-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  color: var(--muted); font-size: 13px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.change-btn:hover { border-color: rgba(0, 230, 118, 0.5); color: var(--yellow); }
.sum-stamp-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.sum-stamp-row .mini-btn { margin-left: 0; }

/* ═══════════════ VOLT v21 admin — tri, pagination, surbrillance, paramètres ═══════════════ */
th.sortable { cursor: pointer; user-select: none; }
th.sortable:hover { color: var(--text); }
th.sortable .srt { color: var(--yellow); margin-left: 3px; }
.row-new td { animation: rowNew 2.2s ease-out; }
@keyframes rowNew {
  0% { background: rgba(0, 230, 118, 0.22); }
  100% { background: transparent; }
}
.mini-select {
  padding: 5px 8px; border-radius: 7px;
  background: var(--card); border: 1px solid var(--line-strong);
  color: var(--text); font-size: 11.5px; font-weight: 700;
}
.mini-select:focus { outline: none; border-color: var(--yellow); }
#req-pager { align-items: center; }
#req-pager .mini-btn { min-width: 30px; text-align: center; }

/* ═══════════════ VOLT v22 — logo texte, détection opérateur, VIP ═══════════════ */
.logo-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 23px; letter-spacing: -0.03em; line-height: 1;
}
.logo-text .bolt { width: 18px; height: 18px; color: var(--yellow); filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.6)); }
.logo:hover .logo-text { opacity: 0.88; }
.logo-low {
  margin-left: 6px; font-size: 0.6em; font-weight: 800; letter-spacing: 0.06em; line-height: 1;
  text-transform: uppercase; padding: 0.3em 0.5em; border-radius: 8px;
  color: #0a0a0c; background: linear-gradient(135deg, #69F0AE, #00C853);
  box-shadow: 0 2px 12px -2px rgba(0, 230, 118, 0.7);
  transform: translateY(-1px);
}
.op-detect { margin-top: 6px; font-size: 12.5px; min-height: 18px; display: flex; flex-direction: column; gap: 4px; }
.op-detect-hint { color: var(--muted-2); }
.op-detect-ok { color: var(--yellow); font-weight: 600; }
.op-detect-bad { color: var(--red); font-weight: 600; }
.op-detect-note { display: block; color: var(--muted-2); font-size: 11.8px; line-height: 1.5; }

/* Badges VIP */
.vip-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em;
  padding: 2px 8px; border-radius: 999px;
  border: 1px solid; white-space: nowrap;
}
.vip-badge::before { content: '◆'; font-size: 8px; }
.vip-bronze { color: #CD7F32; border-color: rgba(205, 127, 50, 0.6); background: rgba(205, 127, 50, 0.12); }
.vip-argent { color: #D7DCE2; border-color: rgba(215, 220, 226, 0.5); background: rgba(215, 220, 226, 0.1); }
.vip-gold { color: #FFD700; border-color: rgba(255, 215, 0, 0.55); background: rgba(255, 215, 0, 0.1); }
.vip-ultime { color: #00E676; border-color: rgba(0, 230, 118, 0.6); background: rgba(0, 230, 118, 0.1); }

/* Carte VIP côté suivi */
.vip-card {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 14px 16px; border-radius: 12px;
  background: linear-gradient(150deg, rgba(0, 230, 118, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(0, 230, 118, 0.4);
  font-size: 13px; color: var(--muted);
}
.vip-card b { color: var(--yellow); }

/* Login pro */
.login-badges { display: flex; gap: 7px; flex-wrap: wrap; margin: 0 0 18px; }
.pw-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted-2); background: none; border: none; cursor: pointer; padding: 4px;
}
.pw-wrap { position: relative; }

/* ═══════════════ VOLT — écran de connexion admin (v22) ═══════════════ */
body.logged-out { overflow-x: hidden; }
body.logged-out .ad-main { margin-left: 0; padding: 0; }

.login-screen {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 20px; overflow: hidden; isolation: isolate;
}

/* Halos animés */
.login-aurora { position: absolute; inset: -20% -10%; z-index: -2; filter: blur(90px); opacity: 0.55; }
.login-aurora span { position: absolute; display: block; border-radius: 50%; }
.login-aurora span:nth-child(1) {
  width: 46vw; height: 46vw; left: -6vw; top: -8vw;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.55), transparent 68%);
  animation: auroraA 17s var(--ease) infinite alternate;
}
.login-aurora span:nth-child(2) {
  width: 38vw; height: 38vw; right: -6vw; top: 8vw;
  background: radial-gradient(circle, rgba(105, 240, 174, 0.38), transparent 66%);
  animation: auroraB 21s var(--ease) infinite alternate;
}
.login-aurora span:nth-child(3) {
  width: 42vw; height: 42vw; left: 28vw; bottom: -18vw;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.3), transparent 70%);
  animation: auroraC 25s var(--ease) infinite alternate;
}
@keyframes auroraA { to { transform: translate3d(7vw, 5vh, 0) scale(1.15); } }
@keyframes auroraB { to { transform: translate3d(-6vw, 7vh, 0) scale(1.2); } }
@keyframes auroraC { to { transform: translate3d(4vw, -6vh, 0) scale(1.1); } }

/* Grille technique de fond */
.login-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 35%, transparent 100%);
}

.login-shell {
  width: 100%; max-width: 1060px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}

/* ── Colonne marque ── */
.login-brand { animation: fadeUp 0.7s var(--ease) both; }
.login-logo { display: inline-flex; margin-bottom: 30px; }
.login-logo .logo-text { font-size: 30px; }
.login-h1 {
  font-family: var(--title); font-size: clamp(30px, 4.1vw, 46px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.login-h1 span {
  background: linear-gradient(100deg, var(--yellow), var(--cyan) 55%, #ffffff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.login-sub { color: var(--muted); font-size: 15px; max-width: 430px; margin-bottom: 30px; }

.login-features { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
.login-features li {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.028); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.login-features li:hover {
  transform: translateX(5px); border-color: rgba(0, 230, 118, 0.4);
  background: rgba(0, 230, 118, 0.05);
}
.lf-ico {
  width: 36px; height: 36px; flex: none; border-radius: 11px; font-size: 16px;
  display: grid; place-items: center;
  background: rgba(0, 230, 118, 0.11); border: 1px solid rgba(0, 230, 118, 0.22);
}
.login-features b { display: block; font-size: 13.8px; font-weight: 600; }
.login-features small { display: block; font-size: 12.4px; color: var(--muted-2); }

.login-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--muted-2);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
}

/* ── Carte de connexion ── */
.login-card {
  position: relative; border-radius: 26px; padding: 1px;
  background: linear-gradient(150deg, rgba(0, 230, 118, 0.55), rgba(255, 255, 255, 0.06) 42%, rgba(105, 240, 174, 0.35));
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), 0 0 70px -35px rgba(0, 230, 118, 0.55);
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}
.login-card-glow {
  position: absolute; inset: -40%; z-index: 0; pointer-events: none; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 62%, rgba(0, 230, 118, 0.5) 78%, transparent 92%);
  animation: cardSpin 9s linear infinite; opacity: 0.4;
}
@keyframes cardSpin { to { transform: rotate(360deg); } }
.login-card-inner {
  position: relative; z-index: 1; border-radius: 25px;
  padding: 34px 32px 26px;
  background: linear-gradient(180deg, rgba(18, 18, 24, 0.97), rgba(10, 10, 13, 0.99));
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
}
.login-lock {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  color: var(--yellow); background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.28); margin-bottom: 16px;
}
.login-lock svg { width: 23px; height: 23px; }
.login-card-inner h2 { font-family: var(--title); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.login-card-sub { font-size: 13.2px; color: var(--muted); margin: 6px 0 20px; }

.login-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 20px;
  padding: 4px; border-radius: 13px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
}
.login-tab {
  padding: 9px 7px; border-radius: 10px; font-size: 12.1px; font-weight: 600;
  color: var(--muted); transition: all 0.25s var(--ease); white-space: nowrap;
}

/* ── Inscription publique (page de connexion) ── */
.signup-note {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 13px; margin-bottom: 18px; border-radius: 13px;
  background: rgba(0, 230, 118, 0.07); border: 1px solid rgba(0, 230, 118, 0.24);
  font-size: 12.3px; line-height: 1.55; color: var(--muted);
}
.signup-note b { color: var(--text); }
.signup-note-ico { font-size: 15px; line-height: 1.2; }

.signup-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 4px 0 10px; }
.signup-tier {
  --tc: var(--yellow);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center;
  padding: 12px 8px 10px; border-radius: 14px; cursor: default;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  transition: border-color .25s, transform .25s var(--ease), background .25s, box-shadow .25s;
}
.signup-tier::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--tc), transparent); opacity: 0.85;
}
.signup-tier.popular { border-color: color-mix(in srgb, var(--tc) 55%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--tc) 30%, transparent) inset, 0 14px 30px -18px var(--tc); }
.signup-tier:hover { transform: translateY(-3px); border-color: var(--tc); background: rgba(255, 255, 255, 0.06); box-shadow: 0 14px 30px -18px var(--tc); }
.signup-pop {
  position: absolute; top: 10px; right: -30px; transform: rotate(38deg);
  padding: 3px 36px; font-size: 8px; font-weight: 900; letter-spacing: 0.14em;
  color: #0b0b0e; background: linear-gradient(90deg, var(--tc, #FFD700), color-mix(in srgb, var(--tc, #FFD700) 70%, #fff));
  z-index: 2;
}
.signup-tier .st-top { display: flex; align-items: center; gap: 5px; width: 100%; justify-content: center; }
.signup-tier .st-emoji { font-size: 19px; line-height: 1; }
.signup-tier .st-share {
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2.5px 6px; border-radius: 999px; color: var(--tc);
  background: color-mix(in srgb, var(--tc) 12%, transparent); border: 1px solid color-mix(in srgb, var(--tc) 35%, transparent);
}
.signup-tier .st-name { font-size: 12.5px; font-weight: 800; color: var(--tc); letter-spacing: 0.01em; }
.signup-tier .st-price { font-size: 13.5px; font-weight: 800; color: var(--text); line-height: 1.1; }
.signup-tier .st-price small { font-size: 9px; font-weight: 400; color: var(--muted-2); margin-left: 3px; }
.signup-tier .st-ltc { font-size: 9.6px; color: var(--muted-2); font-family: monospace; word-break: break-all; display: flex; flex-direction: column; gap: 2px; }
.signup-tier .st-ltc em { font-family: var(--font); font-style: normal; font-size: 8.4px; color: var(--muted-2); opacity: 0.75; }
.signup-tier .st-perks { display: flex; flex-direction: column; gap: 2px; margin-top: 2px; }
.signup-tier .st-perks span { font-size: 9.2px; color: var(--muted); line-height: 1.35; }
.signup-tier .st-meta { font-size: 9.4px; color: var(--muted-2); margin-top: 2px; }
.signup-tiers-help { font-size: 11.5px; color: var(--muted-2); line-height: 1.55; margin: 0 0 14px; }
.signup-tiers-help b { color: var(--green); }
@media (max-width: 640px) { .signup-tiers { grid-template-columns: 1fr 1fr; } }
.signup-legal { font-size: 11px; color: var(--muted-2); text-align: center; margin-top: 12px; line-height: 1.5; }
.signup-legal a { color: var(--muted); text-decoration: underline; }
.signup-legal a:hover { color: var(--yellow); }
@media (max-width: 420px) { .signup-tiers { grid-template-columns: 1fr 1fr; } }

/* ── Bandeau d'accueil après inscription ── */
.signup-welcome {
  padding: 18px 18px 16px; border-radius: 18px; margin-bottom: 20px;
  background: linear-gradient(140deg, rgba(0, 230, 118, 0.12), rgba(0, 230, 118, 0.03));
  border: 1px solid rgba(0, 230, 118, 0.3);
  animation: fadeUp 0.4s var(--ease) both;
}
.signup-welcome .sw-head { display: flex; gap: 12px; align-items: flex-start; }
.signup-welcome .sw-emoji { font-size: 22px; line-height: 1.2; }
.signup-welcome .sw-head b { font-size: 15px; font-family: var(--title); }
.signup-welcome .sw-head p { font-size: 12.8px; color: var(--muted); margin-top: 5px; line-height: 1.55; }
.signup-welcome .sw-head p b { color: var(--yellow); font-family: var(--font); font-size: 12.8px; }
.signup-welcome .sw-head > div { flex: 1; }
.sw-steps { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 2px; }
.sw-step {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; color: var(--muted);
  padding: 5px 10px 5px 5px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.25); border: 1px solid var(--line);
}
.sw-step i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; font-style: normal;
  font-size: 9.5px; font-weight: 900; color: #0b0b0e;
  background: var(--muted-2);
}
.sw-step.done { color: #bff5d4; border-color: rgba(0, 230, 118, 0.35); }
.sw-step.done i { background: var(--green); }
.sw-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.sw-way {
  position: relative;
  display: flex; flex-direction: column; gap: 5px;
  padding: 16px 14px 14px; border-radius: 16px;
  background: rgba(0, 0, 0, 0.3); border: 1px solid var(--line);
  transition: border-color .25s, transform .25s var(--ease);
}
.sw-way:hover { border-color: rgba(0, 230, 118, 0.35); transform: translateY(-2px); }
.sw-way-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 12px; font-size: 19px;
  background: linear-gradient(150deg, rgba(0, 230, 118, 0.16), rgba(0, 230, 118, 0.04));
  border: 1px solid rgba(0, 230, 118, 0.28);
}
.sw-way b { font-size: 13.6px; margin-top: 2px; }
.sw-way span { font-size: 12.2px; color: var(--muted); line-height: 1.55; }
.sw-way span b { color: var(--text); font-size: 12.2px; }
.sw-way-tag {
  align-self: flex-start; font-size: 9.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--green); padding: 3px 9px; border-radius: 999px; margin-top: 3px;
  background: rgba(0, 230, 118, 0.08); border: 1px solid rgba(0, 230, 118, 0.3);
}
@media (max-width: 720px) { .sw-ways { grid-template-columns: 1fr; } }
.login-tab:hover { color: var(--text); }
.login-tab.active { color: #07070a; background: var(--yellow); box-shadow: 0 6px 18px -8px rgba(0, 230, 118, 0.9); }

.login-form { animation: fadeUp 0.35s var(--ease) both; }
.login-form .field { margin-bottom: 15px; }
.login-form label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 7px; letter-spacing: 0.02em; }
.login-form .pw-wrap { position: relative; }
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%; padding: 13px 44px 13px 40px; border-radius: 13px;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font); font-size: 14.5px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.login-form input::placeholder { color: #55555f; }
.login-form input:focus {
  outline: none; border-color: rgba(0, 230, 118, 0.65);
  background: rgba(0, 230, 118, 0.05);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.12);
}
.fi-ico {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--muted-2); pointer-events: none; display: flex;
}
.login-form input:focus ~ .fi-ico, .login-form .pw-wrap:focus-within .fi-ico { color: var(--yellow); }
.login-form .pw-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  padding: 7px; border-radius: 9px; color: var(--muted-2); transition: color 0.2s, background 0.2s;
}
.login-form .pw-toggle:hover { color: var(--yellow); background: rgba(255, 255, 255, 0.05); }
.field-help { font-size: 11.8px; color: var(--muted-2); margin-top: 7px; line-height: 1.5; }
.field-help b { color: var(--cyan); }

.login-remember { display: flex; align-items: center; gap: 9px; font-size: 12.6px; color: var(--muted); margin: 4px 0 18px; cursor: pointer; }
.login-remember input { width: 15px; height: 15px; accent-color: var(--yellow); cursor: pointer; }

.login-submit {
  width: 100%; justify-content: center; gap: 9px; padding: 14px 20px;
  font-size: 14.5px; border-radius: 13px;
  box-shadow: 0 14px 34px -14px rgba(0, 230, 118, 0.85);
}
.login-submit:disabled { opacity: 0.65; cursor: progress; }

.login-error {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  padding: 11px 13px; border-radius: 12px; font-size: 12.8px; font-weight: 500;
  color: #fecaca; background: rgba(248, 113, 113, 0.1); border: 1px solid rgba(248, 113, 113, 0.32);
}
.login-ok { color: #bbf7d0; background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.35); }

.login-back { display: inline-block; margin-top: 20px; font-size: 12.4px; color: var(--muted-2); }
.login-back:hover { color: var(--yellow); }

.login-card.shake { animation: shake 0.4s ease; }

@media (max-width: 900px) {
  .login-shell { grid-template-columns: 1fr; gap: 34px; max-width: 460px; }
  .login-features { display: none; }
  .login-h1 { font-size: 30px; }
  .login-sub { margin-bottom: 18px; }
}
@media (max-width: 480px) {
  .login-screen { padding: 28px 14px; }
  .login-card-inner { padding: 26px 20px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .login-aurora span, .login-card-glow { animation: none; }
}

/* ───── Paiement Litecoin ───── */
.ltc-addr {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px dashed rgba(0, 230, 118, 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--yellow);
  cursor: pointer;
  transition: background 0.2s ease;
}
.ltc-addr:hover { background: rgba(0, 230, 118, 0.12); }
.pay-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }

/* ═══════════════ Admin v7 — menu mobile, aide, particules ═══════════════ */

.menu-burger {
  display: none;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  color: var(--text); cursor: pointer; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.menu-burger:hover { background: rgba(0, 230, 118, 0.08); border-color: rgba(0, 230, 118, 0.4); }

.menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 115;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s ease;
}
body.menu-open .menu-overlay { opacity: 1; }

/* ── Particules flottantes du login ── */
.login-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.login-particles span {
  position: absolute; bottom: -12px; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(0, 230, 118, 0.55);
  box-shadow: 0 0 12px 2px rgba(0, 230, 118, 0.35);
  animation: floatUp linear infinite;
}
.login-particles span:nth-child(1) { left: 6%; animation-duration: 11s; animation-delay: 0s; }
.login-particles span:nth-child(2) { left: 14%; width: 7px; height: 7px; animation-duration: 15s; animation-delay: 1.4s; opacity: 0.7; }
.login-particles span:nth-child(3) { left: 23%; animation-duration: 13s; animation-delay: 0.6s; }
.login-particles span:nth-child(4) { left: 33%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: 2.2s; opacity: 0.6; }
.login-particles span:nth-child(5) { left: 44%; animation-duration: 12s; animation-delay: 0.9s; }
.login-particles span:nth-child(6) { left: 54%; width: 6px; height: 6px; animation-duration: 16s; animation-delay: 0.3s; opacity: 0.8; }
.login-particles span:nth-child(7) { left: 63%; animation-duration: 11.5s; animation-delay: 1.8s; }
.login-particles span:nth-child(8) { left: 72%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: 0.1s; opacity: 0.7; }
.login-particles span:nth-child(9) { left: 81%; animation-duration: 12.5s; animation-delay: 2.6s; }
.login-particles span:nth-child(10) { left: 89%; width: 7px; height: 7px; animation-duration: 18s; animation-delay: 1s; opacity: 0.6; }
.login-particles span:nth-child(11) { left: 96%; animation-duration: 13.5s; animation-delay: 0.4s; }
.login-particles span:nth-child(12) { left: 50%; width: 4px; height: 4px; animation-duration: 19s; animation-delay: 3s; opacity: 0.5; }
@keyframes floatUp {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-110vh) translateX(24px) scale(0.4); opacity: 0; }
}

/* ── Titre brillant du login ── */
.login-h1 span {
  background: linear-gradient(100deg, var(--yellow), var(--cyan) 45%, #ffffff 60%, var(--cyan) 80%, var(--yellow));
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shineText 6s linear infinite;
}
@keyframes shineText { to { background-position: 220% 0; } }

/* ── Tiroir Aide ── */
.help-overlay {
  display: none; position: fixed; inset: 0; z-index: 140;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(3px);
}
.help-overlay.show { display: block; }
.help-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100vw); z-index: 150;
  background: #0c0c12; border-left: 1px solid var(--line);
  transform: translateX(105%); transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.help-drawer.show { transform: translateX(0); }
.help-drawer header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.help-body { padding: 20px; overflow-y: auto; }
.help-hero {
  padding: 18px; border-radius: 16px; text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.14), transparent 70%);
  border: 1px solid rgba(0, 230, 118, 0.25); margin-bottom: 18px;
}
.help-logo { display: inline-flex; align-items: center; gap: 6px; font-family: Georgia, serif; font-weight: 800; font-size: 22px; color: var(--yellow); margin-bottom: 8px; }
.help-hero h3 { font-family: var(--title); font-size: 18px; margin-bottom: 6px; }
.help-hero p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.help-section { margin-bottom: 18px; }
.help-section h4 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.help-step { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.help-step .n {
  flex: none; width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center;
  font-size: 12.5px; font-weight: 800; color: #07070a; background: var(--yellow);
}
.help-step b { font-size: 13.5px; }
.help-step p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-top: 2px; }
.help-list { list-style: none; display: grid; gap: 8px; }
.help-list li { font-size: 12.8px; color: var(--muted); padding: 10px 12px; border-radius: 11px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); line-height: 1.55; }
.help-list b { color: var(--text); }
.help-comm { border-top: 1px solid var(--line); padding-top: 16px; }
.help-comm textarea {
  width: 100%; margin-top: 8px; padding: 12px 13px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font); font-size: 13.5px; resize: vertical;
}
.help-comm textarea:focus { outline: none; border-color: rgba(0, 230, 118, 0.6); }

/* ── Classement des numéros (filtres + stats) ── */
.num-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 14px; }
.num-chip {
  padding: 7px 13px; border-radius: 999px; font-size: 12.3px; font-weight: 600;
  color: var(--muted); background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
  cursor: pointer; transition: all 0.2s ease;
}
.num-chip:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }
.num-chip.active { color: #07070a; background: var(--yellow); border-color: var(--yellow); }
.num-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin: 12px 0 14px; }
.num-stat { padding: 13px 15px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.num-stat b { display: block; font-family: var(--title); font-size: 21px; color: var(--text); }
.num-stat span { font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-2); }

/* ── Cartes KPI animées (hover lift) ── */
.stat-card { transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.stat-card:hover { transform: translateY(-4px); border-color: rgba(0, 230, 118, 0.35); box-shadow: 0 18px 40px -20px rgba(0, 230, 118, 0.4); }

/* ── Mobile admin : sidebar en tiroir coulissant ── */
@media (max-width: 900px) {
  .menu-burger { display: inline-flex; }
  .ad-sidebar {
    position: fixed; top: 0; bottom: 0; left: 0; width: min(280px, 84vw); z-index: 116;
    transform: translateX(-105%); transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 18px 14px; border-right: 1px solid var(--line); border-bottom: none;
    flex-direction: column; box-shadow: 40px 0 80px -30px rgba(0, 0, 0, 0.85);
  }
  body.menu-open .ad-sidebar { transform: translateX(0); }
  .menu-overlay { display: block; pointer-events: none; }
  body.menu-open .menu-overlay { pointer-events: auto; }
  .ad-side-label { display: block; }
  .ad-nav { flex-direction: column; overflow: visible; }
  .ad-link { white-space: normal; flex: none; }
  .ad-side-foot { display: flex; }
  .ad-main { margin-left: 0; padding: 18px 14px 70px; }
  .ad-topbar {
    position: sticky; top: 0; z-index: 100; display: flex; align-items: center; gap: 10px;
    padding: 12px 2px; background: rgba(7, 7, 9, 0.88); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); margin-bottom: 16px;
  }
  .ad-topbar .ad-title { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .ad-topbar .who { flex-wrap: wrap; gap: 8px; }
  .ad-topbar .who .live-dot, .ad-topbar .who #clock { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .login-particles span, .login-h1 span, .login-card-glow, .login-aurora span { animation: none; }
}

/* ── Numéros : chips catégorie, lignes à moi, bouton claim animé ── */
.svc-chip {
  display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
  color: var(--cyan); background: rgba(105, 240, 174, 0.1); border: 1px solid rgba(105, 240, 174, 0.28);
}
tr.row-mine { background: rgba(0, 230, 118, 0.05); }
.claim-pulse { animation: claimPulse 1.8s ease infinite; }
@keyframes claimPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

/* ═══════════════ Abonnements v2 — avatars, vitrine, perso ═══════════════ */

/* Avatar monogramme coloré par palier */
.avatar {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 12px;
  font-family: var(--title); font-weight: 800; font-size: 13.5px; color: #0a0a0c;
  flex: none; letter-spacing: 0.02em;
}
.avatar.sm { width: 30px; height: 30px; font-size: 12px; border-radius: 10px; }
.avatar.lg { width: 54px; height: 54px; font-size: 20px; border-radius: 16px; }
.avatar.vip-bronze { background: linear-gradient(135deg, #E8A15C, #CD7F32); }
.avatar.vip-argent { background: linear-gradient(135deg, #E6EBF2, #9AA3B2); }
.avatar.vip-gold { background: linear-gradient(135deg, #FFE27A, #FFB800); }
.avatar.vip-ultime { background: linear-gradient(135deg, #00E676, #00C853); box-shadow: 0 0 18px rgba(0, 230, 118, 0.6); }

/* Chip utilisateur du topbar */
.who-chip { display: inline-flex; align-items: center; gap: 8px; }

/* ── Carte « Mon abonnement » (personnalisée) ── */
.vip-me { margin-bottom: 6px; }
.vip-me-card {
  position: relative; overflow: hidden;
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; border-radius: 22px;
  background: linear-gradient(160deg, rgba(18,18,24,0.92), rgba(10,10,13,0.97));
  border: 1px solid var(--line);
}
.vip-me-card.vip-bronze { border-color: rgba(205, 127, 50, 0.55); }
.vip-me-card.vip-argent { border-color: rgba(215, 220, 226, 0.45); }
.vip-me-card.vip-gold { border-color: rgba(255, 215, 0, 0.55); }
.vip-me-card.vip-ultime { border-color: rgba(0, 230, 118, 0.6); }
.vip-me-glow {
  position: absolute; inset: -50%; pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(0, 230, 118, 0.18), transparent 55%);
}
.vip-me-card.vip-bronze .vip-me-glow { background: radial-gradient(circle at 30% 20%, rgba(205,127,50,0.22), transparent 55%); }
.vip-me-card.vip-argent .vip-me-glow { background: radial-gradient(circle at 30% 20%, rgba(215,220,226,0.18), transparent 55%); }
.vip-me-card.vip-gold .vip-me-glow { background: radial-gradient(circle at 30% 20%, rgba(255,215,0,0.2), transparent 55%); }
.vip-me-avatar { position: relative; z-index: 1; }
.vip-me-body { position: relative; z-index: 1; flex: 1; min-width: 0; }
.vip-me-eyebrow { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.vip-me-title { font-family: var(--title); font-size: 24px; font-weight: 800; margin: 4px 0 2px; color: var(--text); }
.vip-me-card.vip-ultime .vip-me-title { background: linear-gradient(100deg, #00E676, #69F0AE); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vip-me-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 10px; }
.vip-me-perks { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.vip-me-perks span {
  font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  color: var(--muted); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
}
.vip-me-meter { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.vip-me-meter-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--yellow), var(--cyan)); box-shadow: 0 0 12px rgba(0, 230, 118, 0.7); transition: width 0.6s var(--ease); }
.vip-me-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; font-size: 12.5px; color: var(--muted-2); }
.vip-me-meta b { color: var(--text); }

/* ── Vitrine des 4 paliers ── */
.vip-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 14px; }
.vip-tier-card {
  position: relative; display: flex; flex-direction: column; gap: 8px; text-align: left;
  padding: 18px 16px; border-radius: 18px; cursor: pointer;
  background: linear-gradient(170deg, rgba(18,18,24,0.9), rgba(10,10,13,0.96));
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.vip-tier-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--tc, #888), transparent);
  opacity: 0.7;
}
.vip-tier-card.vip-bronze { --tc: #CD7F32; }
.vip-tier-card.vip-argent { --tc: #C0C7D1; }
.vip-tier-card.vip-gold { --tc: #FFD700; }
.vip-tier-card.vip-ultime { --tc: #00E676; }
.vip-tier-card:hover { transform: translateY(-5px); border-color: var(--tc); box-shadow: 0 22px 48px -22px var(--tc); }
.vip-tier-card.current { border-color: var(--tc); box-shadow: 0 0 0 1px var(--tc) inset, 0 18px 44px -22px var(--tc); }
.vip-tier-card.picked { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow) inset; }
.vip-tier-emoji { font-size: 26px; }
.vip-tier-name { font-family: var(--title); font-size: 17px; font-weight: 800; color: var(--text); }
.vip-tier-card.vip-ultime .vip-tier-name { background: linear-gradient(100deg, #00E676, #69F0AE); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vip-tier-count { font-size: 13px; font-weight: 700; color: var(--tc); }
.vip-tier-speed { font-size: 12px; color: var(--muted); }
.vip-tier-perks { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.vip-tier-perks span { font-size: 11.5px; color: var(--muted-2); line-height: 1.45; }
.vip-tier-you { font-size: 11px; font-weight: 800; color: var(--tc); margin-top: auto; }
.vip-tier-pick { font-size: 11px; font-weight: 700; color: var(--muted-2); margin-top: auto; }
.vip-tier-card:hover .vip-tier-pick { color: var(--yellow); }
.subscription-tier { min-height: 360px; padding: 22px 20px; gap: 10px; }
.subscription-tier.popular { border-color: color-mix(in srgb, var(--tc) 55%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--tc) 35%, transparent) inset, 0 22px 48px -26px var(--tc); }
.subscription-pop {
  position: absolute; top: 14px; right: -34px; transform: rotate(38deg);
  padding: 4px 40px; font-size: 9px; font-weight: 900; letter-spacing: 0.14em;
  color: #0b0b0e; background: linear-gradient(90deg, var(--tc, #FFD700), color-mix(in srgb, var(--tc, #FFD700) 70%, #fff));
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.6); z-index: 2;
}
.subscription-tier-top { min-height: 30px; display:flex; justify-content:space-between; align-items:center; }
.subscription-current { padding:4px 8px; border:1px solid color-mix(in srgb,var(--tc) 45%,transparent); border-radius:999px; color:var(--tc); font-size:9px; font-weight:900; letter-spacing:.1em; }
.subscription-price { display:flex; align-items:baseline; gap:7px; margin-top:2px; }
.subscription-price b { color:#fff; font-family:var(--title); font-size:31px; line-height:1; }
.subscription-price small { color:var(--muted); font-size:11px; }
.subscription-ltc { padding-bottom:10px; border-bottom:1px solid var(--line); color:var(--muted-2); font-family:monospace; font-size:10.5px; display:flex; flex-direction:column; gap:3px; }
.subscription-ltc b { color: var(--text); font-size: 12px; }
.subscription-ltc em { font-style: normal; font-size: 9.5px; font-family: var(--font); color: var(--muted-2); }
.subscription-cta { display:block; margin-top:auto; padding:10px 12px; border:1px solid color-mix(in srgb,var(--tc) 55%,transparent); border-radius:11px; color:var(--tc); background:color-mix(in srgb,var(--tc) 8%,transparent); font-size:12px; font-weight:800; text-align:center; }
.subscription-tier:hover .subscription-cta { color:#09090b; background:var(--tc); }
.subscription-pay { 
  --tc: #FFD700;
  position:relative; overflow:hidden;
  max-width:760px; margin:22px auto 0; padding:24px 22px 20px;
  border:1px solid color-mix(in srgb, var(--tc) 38%, transparent); border-radius:20px;
  background:
    radial-gradient(620px circle at 100% 0%, color-mix(in srgb, var(--tc) 14%, transparent), transparent 45%),
    radial-gradient(400px circle at 0% 100%, rgba(0,230,118,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  box-shadow:0 28px 70px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.03) inset;
  backdrop-filter: blur(12px);
  transition: border-color .3s;
}
.subscription-pay::before {
  content:''; position:absolute; inset:0 0 auto; height:3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--tc) 70%, transparent), var(--tc), #00E676);
}
.subscription-pay.is-waiting { border-color: color-mix(in srgb, var(--tc) 40%, transparent); }
.subscription-pay.is-confirming, .subscription-pay.is-checking { border-color: rgba(0,230,118,.4); box-shadow:0 28px 70px -40px rgba(0,0,0,.9), 0 0 26px -10px var(--tc); }
.subscription-pay-head { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; }
.subscription-pay-head > div:first-child { display:flex; flex-direction:column; gap:6px; }
.subscription-pay-head b { display:block; font-family:var(--title); font-size:20px; letter-spacing:-0.01em; color: var(--text); }
.subscription-pay-head .publications-eyebrow { font-size:9px; }
.subscription-pay-tier {
  align-self: flex-start;
  display:inline-flex; align-items:center; gap:6px;
  font-size:10.5px; font-weight:800; letter-spacing:.02em; color: var(--tc);
  padding:4px 10px; border-radius:999px;
  background: color-mix(in srgb, var(--tc) 10%, transparent);
  border:1px solid color-mix(in srgb, var(--tc) 38%, transparent);
}
.subscription-pay-steps { display:flex; gap:8px; flex-wrap:wrap; margin:16px 0 14px; }
.sp-step {
  display:inline-flex; align-items:center; gap:6px;
  font-size:10.5px; font-weight:700; color: var(--muted-2);
  padding:5px 10px 5px 5px; border-radius:999px;
  background: rgba(0,0,0,.25); border:1px solid var(--line);
  transition: color .25s, border-color .25s;
}
.sp-step i {
  display:inline-flex; align-items:center; justify-content:center;
  width:18px; height:18px; border-radius:50%; font-style:normal;
  font-size:9.5px; font-weight:900; color:#0b0b0e; background: var(--muted-2);
}
.sp-step.active { color: var(--tc); border-color: color-mix(in srgb, var(--tc) 45%, transparent); }
.sp-step.active i { background: var(--tc); color:#0b0b0e; }
.sp-step.done { color:#bff5d4; border-color: rgba(0,230,118,.35); }
.sp-step.done i { background: var(--green); }
.subscription-pay > p { margin:14px 0 18px; color:#c9c5b8; font-size:13px; line-height:1.6; max-width: 620px; }
.subscription-pay-amount { 
  display:flex; align-items:center; justify-content:space-between; gap:14px; 
  padding:14px 16px; border:1px solid color-mix(in srgb, var(--tc) 30%, transparent); border-radius:14px 14px 0 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--tc) 12%, transparent), color-mix(in srgb, var(--tc) 4%, transparent));
}
.subscription-pay-amount span { color: var(--muted); font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; font-weight:700; }
.subscription-pay-amount-right { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.subscription-pay-amount b { color: var(--tc); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size:19px; letter-spacing:.02em; text-shadow: 0 0 18px color-mix(in srgb, var(--tc) 35%, transparent); }
.subscription-pay-amount small { color: var(--muted-2); font-size:11px; }
.subscription-pay-rate { margin:10px 2px 0 !important; font-size:11px !important; color: var(--muted-2) !important; }
.subscription-pay-address { 
  display:flex; align-items:center; gap:12px; 
  padding:14px 16px; border:1px solid rgba(255,255,255,.08); border-top:0; border-radius:0 0 14px 14px;
  background: rgba(0,0,0,.28);
  transition: border-color .2s;
}
.subscription-pay-address:focus-within, .subscription-pay-address:hover { border-color: rgba(0,230,118,.24); }
.subscription-pay-address span { flex:1; min-width:0; overflow-wrap:anywhere; color:#e8e8ec; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size:12px; letter-spacing:.02em; line-height:1.5; }
.subscription-pay-address .mini-btn { flex:none; height:36px; border-radius:10px; font-weight:800; }
.subscription-pay-actions { display:flex; align-items:center; gap:14px; margin-top:18px; flex-wrap:wrap; }
.subscription-pay-actions .btn { height:42px; padding:0 18px; border-radius:11px; font-weight:800; display:inline-flex; align-items:center; gap:9px; }
.subscription-pay-actions .btn .loader { flex:none; }
.subscription-pay-actions .btn:disabled { opacity:.75; cursor:progress; }
.subscription-pay-actions small { color:var(--muted-2); font-size:11px; line-height:1.4; max-width: 360px; }
.subscription-pay .badge { font-size:11px; padding:6px 12px; border-radius:999px; }
.subscription-pay.is-paid { border-color: rgba(0,230,118,.35); background: radial-gradient(600px circle at 100% 0%, rgba(0,230,118,.12), transparent 45%), linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.subscription-pay.is-unavailable { border-color: rgba(248,113,113,.35); }
.subscription-pay-status {
  display:flex; align-items:flex-start; gap:10px; margin-top:14px;
  padding:12px 14px; border-radius:12px; font-size:12.5px; line-height:1.55;
}
.subscription-pay-status b { color: var(--text); font-size:12.5px; }
.subscription-pay-status.waiting { background: rgba(255,215,0,.07); border:1px solid rgba(255,215,0,.18); color:#e8dcc2; }
.subscription-pay-status.confirmed { background: rgba(0,230,118,.08); border:1px solid rgba(0,230,118,.24); color:#c2f0d4; }
.subscription-pay-status.unavailable { background: rgba(248,113,113,.07); border:1px solid rgba(248,113,113,.24); color:#f0c2c2; }
.subscription-pay-status.no-match { background: rgba(248,113,113,.06); border:1px solid rgba(248,113,113,.2); color:#f0c2c2; }
.subscription-pay-status.checking { background: rgba(0,230,118,.06); border:1px solid rgba(0,230,118,.22); color:#c2f0d4; }
@keyframes spPulse { 0%,100% { opacity:1; } 50% { opacity:.45; } }
.subscription-pay-status.checking { animation: spPulse 1.4s ease-in-out infinite; }

/* ── Tableau comparatif des abonnements (✓ / ✗) ── */
.tier-compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: linear-gradient(175deg, rgba(255,255,255,.03), rgba(255,255,255,.008));
  font-size: 12.3px;
}
.tier-compare th, .tier-compare td { padding: 11px 13px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.05); }
.tier-compare thead th { background: rgba(0,0,0,.28); font-weight: 800; }
.tier-compare tbody tr:last-child td { border-bottom: 0; }
.tier-compare tbody tr:hover td { background: rgba(255,255,255,.025); }
.tier-compare .tc-feat { text-align: left; color: var(--muted); font-weight: 600; }
.tier-compare th.tc-tier { position: relative; min-width: 110px; color: var(--tc); }
.tier-compare th.tc-tier b { display: block; font-family: var(--title); font-size: 14px; letter-spacing: 0.02em; }
.tier-compare th.tc-tier em { display: block; font-style: normal; font-size: 8.5px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }
.tier-compare th.tc-tier.popular { background: color-mix(in srgb, var(--tc) 12%, transparent); box-shadow: inset 0 3px 0 var(--tc); }
.tier-compare th.tc-tier.popular em { color: var(--tc); }
.tier-compare td { color: var(--text); }
.tier-compare .tc-yes { color: var(--green); font-weight: 900; font-size: 14px; }
.tier-compare .tc-no { color: var(--red); font-weight: 900; font-size: 14px; opacity: .85; }
.tier-compare .tc-cell-yes { color: var(--green); }
.tier-compare .tc-cell-no { color: var(--red); }
.tier-compare-note { font-size: 12px; color: var(--muted-2); margin: 12px 2px 0; line-height: 1.55; }
.tier-compare-note b { color: var(--green); }
@media (max-width: 760px) {
  .tier-compare { font-size: 11px; }
  .tier-compare th, .tier-compare td { padding: 9px 7px; }
}

/* ── Bandeau « numéros verrouillés » (carotte d'upgrade) ── */
.num-locked {
  display: flex; align-items: center; gap: 13px; flex-wrap: wrap;
  margin: 12px 0 0; padding: 13px 15px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 230, 118, 0.03));
  border: 1px solid rgba(255, 215, 0, 0.22);
}
.num-locked-ico { font-size: 21px; line-height: 1; }
.num-locked-body { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 2px; }
.num-locked-body b { font-size: 13px; color: var(--text); }
.num-locked-body span { font-size: 12px; color: var(--muted); line-height: 1.5; }
.num-locked-body span b { font-size: 12px; }
.num-locked .btn { flex: none; }

/* ── Temps restant sur la carte « Mon abonnement » ── */
.vip-me-time { font-size: 11.5px; color: var(--muted-2); }
.vip-me-time b { color: var(--yellow); }
.vip-me-time.expired { color: var(--red); }
.vip-me-time.expired b { color: var(--red); }

/* ── Hero personnalisé du panneau Numéros ── */
.num-hero {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 18px; border-radius: 18px;
  background: linear-gradient(160deg, rgba(18,18,24,0.9), rgba(10,10,13,0.96));
  border: 1px solid var(--line);
}
.num-hero.vip-bronze { border-color: rgba(205, 127, 50, 0.5); }
.num-hero.vip-argent { border-color: rgba(215, 220, 226, 0.42); }
.num-hero.vip-gold { border-color: rgba(255, 215, 0, 0.5); }
.num-hero.vip-ultime { border-color: rgba(0, 230, 118, 0.55); box-shadow: 0 0 30px -12px rgba(0, 230, 118, 0.6); }
.num-hero-body { flex: 1; min-width: 0; }
.num-hero-title { font-family: var(--title); font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.num-hero-perks { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.num-hero-perks span { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
.num-hero-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.3px; color: var(--muted-2); }
.num-hero-meta b { color: var(--text); }

/* Mobile */
@media (max-width: 900px) {
  .vip-showcase { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vip-showcase { grid-template-columns: 1fr; }
  .vip-me-card { flex-direction: column; align-items: center; text-align: center; }
  .vip-me-perks, .vip-me-meta { justify-content: center; }
  .num-hero { flex-direction: column; text-align: center; }
  .num-hero-perks, .num-hero-meta { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .vip-me-glow, .vip-tier-card, .avatar.vip-ultime { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   FINITIONS VOLT — grain, marquee, spotlight, mobile waouh
   (dessinées à la main, pas de template)
   ════════════════════════════════════════════════════════════════ */

/* ── Grain argentique : toute la page, ultra léger ── */
body::after {
  content: '';
  position: fixed; inset: -50%; z-index: 99990; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.028; animation: grainShift 1.4s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1.5%, 1%); }
  50% { transform: translate(1%, -1.5%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ── Scrollbar discrète ── */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0a0a0e; }
::-webkit-scrollbar-thumb {
  background: #1e1e27; border-radius: 999px; border: 3px solid #0a0a0e;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 230, 118, 0.5); }

/* ── Logo : halo doux permanent ── */
.logo-text { filter: drop-shadow(0 0 14px rgba(0, 230, 118, 0.28)); }

/* ── Bandeau marques défilant ── */
.brands-marquee {
  position: relative; padding: 22px 0; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0) 60%);
}
.brands-marquee::before, .brands-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.brands-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.brands-marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.brands-marquee-track {
  display: flex; gap: 46px; align-items: center; width: max-content;
  animation: marquee 42s linear infinite;
}
.brands-marquee:hover .brands-marquee-track { animation-play-state: paused; }
.brand-chip {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--title); font-size: 15px; font-weight: 600; color: var(--muted);
  opacity: 0.82; transition: color 0.25s, opacity 0.25s, transform 0.25s var(--ease);
}
.brand-chip img { width: 26px; height: 26px; object-fit: contain; }
.brand-chip:hover { color: var(--text); opacity: 1; transform: translateY(-2px); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Spotlight au survol des cartes promo ── */
.pick-item { position: relative; }
.pick-item::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity 0.28s ease;
  background: radial-gradient(130px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 230, 118, 0.14), transparent 68%);
}
.pick-item:hover::before { opacity: 1; }

/* ── How : ligne de liaison entre étapes (desktop) ── */
.how-grid { position: relative; }
.how-grid::before {
  content: ''; position: absolute; top: 46px; left: 13%; right: 13%; height: 1px;
  background: repeating-linear-gradient(90deg, rgba(0, 230, 118, 0.35) 0 6px, transparent 6px 14px);
  pointer-events: none;
}
@media (max-width: 900px) { .how-grid::before { display: none; } }
.how-card { position: relative; }
.how-card:hover { box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0, 230, 118, 0.25) inset; }
.how-num { transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.how-card:hover .how-num { transform: rotate(-6deg) scale(1.08); box-shadow: 0 8px 20px -8px rgba(0, 230, 118, 0.6); }

/* ── Ornement de séparation de section ── */
.section-divider {
  display: flex; align-items: center; gap: 14px; max-width: 1160px; margin: 0 auto; padding: 0 24px;
  color: var(--muted-2);
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.section-divider svg { color: var(--yellow); opacity: 0.7; }

/* ── Titres : lettrage légèrement plus net ── */
.h2 { letter-spacing: -0.02em; }

/* ── Mobile : navigation qui se replie au scroll ── */
.nav { transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s; }
.nav.is-hidden { transform: translateY(-102%); }

/* ── Mobile : zone safe + CTA ── */
@media (max-width: 900px) {
  body { padding-bottom: 0; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding: 64px 0; }
  .btn.mag { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .brands-marquee { padding: 18px 0; }
  .brand-chip { font-size: 13.5px; }
  .sticky-cta { padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
  .sticky-info b { font-size: 17px; }
  /* cibles tactiles confortables */
  .nav-links a, .mobile-menu a { min-height: 44px; display: inline-flex; align-items: center; }
  .pick-item { min-height: 92px; }
}

@media (max-width: 380px) {
  .h1-line { font-size: clamp(34px, 11vw, 44px); }
}

@media (prefers-reduced-motion: reduce) {
  body::after, .brands-marquee-track, .pick-item::before { animation: none !important; }
}

/* ═══════════════ Finitions v2 — chiffres, glass, micro-interactions ═══════════════ */

/* Suffixe compact des grands chiffres (« 1 min ») */
.num-suffix { font-size: 0.52em; font-weight: 600; margin-left: 3px; color: var(--cyan); }

/* Stats hero : léger relief au survol */
.stat { padding: 6px 10px; border-radius: 14px; transition: background 0.3s, transform 0.3s var(--ease); }
.stat:hover { background: rgba(0, 230, 118, 0.05); transform: translateY(-2px); }

/* Cartes flottantes : pastille de prix cohérente */
.hcard .hic img { width: 26px; height: 26px; object-fit: contain; }

/* Glassmorphism des formulaires de commande */
.order-form {
  background: linear-gradient(170deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012) 40%, var(--card) 100%);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.8);
}
.order-summary {
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(0, 230, 118, 0.06) inset;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.order-summary:hover { transform: translateY(-3px); border-color: rgba(0, 230, 118, 0.28); }

/* FAQ : fond doux au survol + décalage question */
.faq-q {
  border-radius: 14px; padding-left: 14px; margin: 0 -14px;
  transition: color 0.25s, background 0.3s, transform 0.3s var(--ease);
}
.faq-q:hover { background: rgba(0, 230, 118, 0.04); transform: translateX(3px); }

/* Halos doux derrière les sections */
#comment, #obtenir { position: relative; }
#comment::before, #obtenir::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
#comment::before {
  background: radial-gradient(700px circle at 85% 15%, rgba(0, 200, 83, 0.06), transparent 60%);
}
#obtenir::before {
  background: radial-gradient(800px circle at 10% 20%, rgba(0, 230, 118, 0.06), transparent 60%);
}
#comment > .wrap, #obtenir > .wrap { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .stat { padding: 4px 8px; }
  .stat .num { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .hcard { animation: none; }
}

/* ═══════════════ Paiements — cartes méthodes stylées ═══════════════ */
.pay-method {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border-radius: 12px; font-size: 12.5px; font-weight: 600;
  color: var(--text); background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.pay-method img { width: 20px; height: 20px; object-fit: contain; }
.pay-method:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.22); }
.pay-logos { display: inline-flex; gap: 4px; }
.pay-method.active { border-color: rgba(0, 230, 118, 0.45); background: rgba(0, 230, 118, 0.07); }
.pay-method.soon { opacity: 0.6; filter: saturate(0.5); }
.pay-tag {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px; color: var(--muted-2);
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line);
}
.pay-method.active .pay-tag { color: #052e22; background: var(--green); border-color: var(--green); }
.pay-method.soon .pay-tag { color: #fecaca; background: rgba(248, 113, 113, 0.12); border-color: rgba(248, 113, 113, 0.4); }
.ltc-mark {
  display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 7px;
  font-weight: 800; font-size: 13px; color: #0a0a0c;
  background: linear-gradient(135deg, #69F0AE, #00C853);
  box-shadow: 0 4px 12px -4px rgba(0, 230, 118, 0.8);
}

/* Rangée de paiement du checkout (formulaire) — une seule ligne, propre */
.checkout-pay {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 16px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.checkout-pay .pay-method { padding: 7px 12px; }
.checkout-pay .pay-method .ltc-mark { width: 20px; height: 20px; font-size: 12px; border-radius: 6px; }

/* Note « bientôt » (footer + checkout) */
.pay-soon-note { font-size: 12px; color: var(--muted-2); }

/* ═══════════════ Login v3 — stats, watermark, réussite ═══════════════ */

/* Chips de stats sous le titre de connexion */
.login-stats { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 22px; }
.login-stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 74px; padding: 11px 12px; border-radius: 14px; text-align: center;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.login-stat:hover { transform: translateY(-3px); border-color: rgba(0, 230, 118, 0.4); background: rgba(0, 230, 118, 0.05); }
.login-stat b {
  font-family: var(--title); font-size: 16px; font-weight: 700;
  background: linear-gradient(100deg, var(--yellow), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.login-stat small { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }

/* Watermark discret */
.login-screen::after {
  content: 'VOLT LOW'; position: absolute; bottom: 8vh; left: 50%; transform: translateX(-50%);
  font-family: var(--title); font-weight: 800; font-size: clamp(60px, 16vw, 200px);
  letter-spacing: -0.02em; color: transparent;
  -webkit-text-stroke: 1px rgba(0, 230, 118, 0.06); pointer-events: none; z-index: -1;
  white-space: nowrap;
}

/* Bannière de réussite */
.login-ok {
  align-items: center; gap: 8px; margin: 0 0 16px; padding: 11px 13px; border-radius: 12px;
  font-size: 12.8px; font-weight: 600; color: #bbf7d0;
  background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.35);
  animation: okPop 0.4s var(--ease) both;
}
@keyframes okPop { from { opacity: 0; transform: translateY(-6px) scale(0.98); } to { opacity: 1; transform: none; } }

/* Carte de connexion : liseré animé + halo renforcé */
.login-card {
  background: linear-gradient(150deg, rgba(0, 230, 118, 0.65), rgba(255, 255, 255, 0.08) 40%, rgba(105, 240, 174, 0.55) 72%, rgba(0, 200, 83, 0.5));
  box-shadow: 0 40px 100px -32px rgba(0, 0, 0, 0.95), 0 0 90px -30px rgba(0, 230, 118, 0.7);
}

/* Bouton de connexion : halo plus vivant */
.login-submit { position: relative; overflow: hidden; }
.login-submit::after {
  content: ''; position: absolute; top: 0; left: -90%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg); animation: btnSheen 3.2s ease-in-out infinite;
}
@keyframes btnSheen { 0%, 60% { left: -90%; } 100% { left: 140%; } }

@media (max-width: 900px) {
  .login-stats { justify-content: center; }
  .login-screen::after { font-size: 18vw; bottom: 6vh; }
}
@media (prefers-reduced-motion: reduce) {
  .login-submit::after { animation: none; }
}

/* ═══════════════ Finitions v3 — aurora global, tags prix ═══════════════ */

/* Fond aurora global (ambiant, discret) */
.bg-aurora {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
}
.bg-aurora::before, .bg-aurora::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.22;
}
.bg-aurora::before {
  width: 60vw; height: 60vw; left: -18vw; top: -20vh;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.5), transparent 62%);
  animation: auroraDrift 26s var(--ease) infinite alternate;
}
.bg-aurora::after {
  width: 48vw; height: 48vw; right: -16vw; bottom: -22vh;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.42), transparent 62%);
  animation: auroraDrift2 32s var(--ease) infinite alternate;
}
@keyframes auroraDrift { to { transform: translate3d(9vw, 7vh, 0) scale(1.15); } }
@keyframes auroraDrift2 { to { transform: translate3d(-8vw, -6vh, 0) scale(1.12); } }

/* Prix dans le CTA sticky : couleur verte */
#sticky-price { color: var(--yellow); }

@media (max-width: 900px) {
  .bg-aurora::before, .bg-aurora::after { filter: blur(90px); opacity: 0.16; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-aurora::before, .bg-aurora::after { animation: none; }
}

/* ═══════════════ Admin v8 — TikTok + temps + animations ═══════════════ */

/* Transition de panneau plus vivante */
.panel.active { animation: panelIn 0.5s var(--ease) both; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* Cartes KPI : entrée en cascade */
.stat-cards .stat-card { animation: cardIn 0.5s var(--ease) both; }
.stat-cards .stat-card:nth-child(1) { animation-delay: 0.02s; }
.stat-cards .stat-card:nth-child(2) { animation-delay: 0.06s; }
.stat-cards .stat-card:nth-child(3) { animation-delay: 0.10s; }
.stat-cards .stat-card:nth-child(4) { animation-delay: 0.14s; }
.stat-cards .stat-card:nth-child(5) { animation-delay: 0.18s; }
.stat-cards .stat-card:nth-child(6) { animation-delay: 0.22s; }
.stat-cards .stat-card:nth-child(7) { animation-delay: 0.26s; }
.stat-cards .stat-card:nth-child(8) { animation-delay: 0.30s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

/* ── TikTok + temps ── */
.tiktok-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tiktok-time-card { background: radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.1), transparent 70%) !important; }
.tiktok-clock {
  font-family: var(--title); font-size: clamp(38px, 7vw, 54px); font-weight: 700;
  color: var(--yellow); letter-spacing: -0.02em; margin: 12px 0 2px;
  text-shadow: 0 0 30px rgba(0, 230, 118, 0.4); font-variant-numeric: tabular-nums;
}
.tiktok-clock.expired { color: var(--red); text-shadow: 0 0 24px rgba(248, 113, 113, 0.4); }
.tiktok-clock-lbl { font-size: 12.5px; color: var(--muted); }
.tiktok-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
/* ── Publications vPRO : lisible, pro, esthétique ++ ── */
.tiktok-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.tiktok-time-card { 
  position: relative; overflow: hidden;
  background: radial-gradient(420px circle at 0% 0%, rgba(0,230,118,0.10), transparent 55%), var(--card) !important;
  border: 1px solid rgba(0,230,118,0.18) !important;
}
.publications-card {
  position: relative; overflow: hidden;
  padding: 22px 20px 18px !important;
  background:
    radial-gradient(520px circle at 100% 0%, rgba(105,240,174,0.14), transparent 40%),
    radial-gradient(360px circle at 0% 100%, rgba(0,200,83,0.08), transparent 60%),
    linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015) 55%, rgba(0,0,0,0.18)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 18px 50px -28px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.publications-card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, #00E676, #69F0AE, #00C853);
}
.publications-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 2px; }
.publications-head .dtitle { font-size: 18px; letter-spacing: -0.01em; display:flex; align-items:center; gap:10px; }
.publications-eyebrow { 
  display:inline-flex; align-items:center; gap:6px;
  color:#052e22; background: linear-gradient(135deg,#69F0AE,#00E676);
  padding: 3px 9px; border-radius: 999px;
  font-size:9px; font-weight:900; letter-spacing:.14em; text-transform:uppercase;
  box-shadow: 0 4px 14px -6px rgba(0,230,118,0.8);
}
.publications-gift { 
  display:inline-flex; align-items:center; gap:5px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(0,230,118,0.10); border: 1px solid rgba(0,230,118,0.28);
  color:#69F0AE; font-size:11.5px; font-weight:800; letter-spacing:.02em;
  box-shadow: 0 0 20px -10px rgba(0,230,118,0.6) inset;
}
.publications-intro { 
  max-width: 460px; margin: 10px 0 0; 
  color: #c5c5d0; font-size: 13.2px; line-height: 1.6; font-weight: 400;
}
.platform-strip { 
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0;
}
.platform-strip span { 
  display:inline-flex; align-items:center; gap:6px;
  min-width: 28px; height: 34px; padding: 0 11px;
  border: 1px solid rgba(255,255,255,0.09); border-radius: 999px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(6px);
  font-size:13px; font-weight:600; color: var(--muted);
  letter-spacing:0.01em;
  transition: all .22s var(--ease);
}
.platform-strip span:hover { border-color: rgba(0,230,118,0.32); color: var(--text); transform: translateY(-1px); background: rgba(0,230,118,0.06); }
.platform-strip span.is-active { border-color: rgba(0,230,118,0.6); background: rgba(0,230,118,0.12); color: #eafff2; box-shadow: 0 6px 18px -12px rgba(0,230,118,0.8); }
.tiktok-add-row { display: flex; gap: 10px; margin: 18px 0 8px; align-items: center; }
.tiktok-add-row input { flex: 1; min-width: 0; font-size:14px; }
.publications-composer { 
  display:flex; gap:10px; align-items:center;
  padding: 10px; 
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.22));
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.02) inset;
  transition: border-color .22s, box-shadow .22s;
}
.publications-composer:focus-within { border-color: rgba(0,230,118,0.42); box-shadow: 0 0 0 4px rgba(0,230,118,0.08), 0 10px 30px -20px rgba(0,0,0,0.9); }
.publications-composer select { 
  flex: none; width: 146px; height:42px;
  border-radius: 11px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,14,0.9); color: var(--text);
  font-size:13px; font-weight:600; padding: 0 10px;
  appearance: none; cursor:pointer;
  background-image: linear-gradient(45deg, transparent 50%, #69F0AE 50%), linear-gradient(135deg, #69F0AE 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.publications-composer select:focus { outline:none; border-color: rgba(0,230,118,0.4); }
.publications-composer input { 
  flex:1; height:42px;
  border: 1px solid rgba(255,255,255,0.06) !important;
  background: rgba(255,255,255,0.035) !important; border-radius: 11px !important;
  padding: 0 14px !important; color: var(--text) !important; font-size:13.5px !important;
}
.publications-composer input::placeholder { color: var(--muted-2); }
.publications-composer input:focus { border-color: rgba(105,240,174,.38) !important; background: rgba(255,255,255,.06) !important; box-shadow: none !important; }
.publications-composer .btn { height:42px; padding: 0 18px; border-radius: 11px; font-weight:800; letter-spacing:.01em; }
.publications-empty { min-height: 146px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap:8px; padding: 24px 18px; border: 1px dashed rgba(255,255,255,.12); border-radius: 16px; background: radial-gradient(400px circle at 50% 0%, rgba(105,240,174,0.08), transparent 60%), rgba(0,0,0,.14); text-align: center; }
.publications-empty-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, rgba(105,240,174,.20), rgba(0,200,83,.10)); border:1px solid rgba(105,240,174,.18); font-size: 22px; box-shadow: 0 8px 22px -12px rgba(0,230,118,0.6); }
.publications-empty b { font-size: 14px; color: var(--text); font-weight:700; }
.publications-empty small { max-width: 340px; margin-top: 2px; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.claim-credit-zero { 
  display: flex; align-items: flex-start; gap: 12px; margin-top: 14px; 
  padding: 13px 15px; border-radius: 14px;
  border: 1px solid rgba(255,184,0,.26); background: linear-gradient(135deg, rgba(255,184,0,.10), rgba(255,184,0,.03));
  box-shadow: 0 8px 24px -16px rgba(255,184,0,.6);
}
.claim-credit-zero > span { font-size: 22px; line-height:1; margin-top:1px; }
.claim-credit-zero div { display: flex; flex-direction: column; gap: 3px; }
.claim-credit-zero b { color: #FFD54F; font-size: 13px; font-weight:800; }
.claim-credit-zero small { color: var(--muted); font-size: 11.8px; line-height:1.45; }
.referral-card { 
  position:relative; overflow:hidden;
  display: grid; grid-template-columns:auto 1fr auto; align-items:center; gap:16px; 
  margin-top:16px; padding:18px 20px; 
  border:1px solid rgba(255,184,0,.22); border-radius:18px; 
  background:
    radial-gradient(500px circle at 0% 0%, rgba(255,184,0,.12), transparent 45%),
    linear-gradient(120deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  box-shadow: 0 14px 40px -26px rgba(255,184,0,.5), 0 0 0 1px rgba(255,255,255,.02) inset;
}
.referral-card::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
  background: linear-gradient(180deg,#FFD54F,#FFB800);
}
.referral-icon { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background: radial-gradient(circle at 30% 20%, rgba(255,184,0,.22), rgba(255,184,0,.08)); border:1px solid rgba(255,184,0,.18); font-size:24px; box-shadow: 0 8px 18px -12px rgba(255,184,0,.6); }
.referral-body { min-width:0; }
.referral-title { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.referral-title b { color:#FFE082; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size:18px; letter-spacing:.06em; background: rgba(0,0,0,.22); border:1px dashed rgba(255,184,0,.28); padding: 4px 10px; border-radius: 9px; }
.referral-body p { margin:8px 0 0; color:#c9c5b8; font-size:12.2px; line-height:1.55; max-width: 520px; }
.referral-body p b { color:#FFE082; }
.referral-stats { min-width:88px; padding-left:18px; border-left:1px solid rgba(255,255,255,.08); text-align:center; }
.referral-stats b { display:block; color:#FFD54F; font-size:28px; font-weight:800; line-height:1; }
.referral-stats span { display:block; margin-top:4px; color:var(--muted-2); font-size:10.5px; line-height:1.35; letter-spacing:.02em; }

.tiktok-list { display: flex; flex-direction: column; gap: 10px; margin-top:10px; }
.tiktok-item, .verif-item {
  position:relative;
  display: flex; align-items: center; gap: 12px; padding: 12px 12px;
  border-radius: 14px; 
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 20px -16px rgba(0,0,0,0.8);
  animation: cardIn 0.4s var(--ease) both;
  transition: transform .22s var(--ease), border-color .22s, background .22s;
}
.tiktok-item:hover, .verif-item:hover { transform: translateY(-2px); border-color: rgba(0,230,118,0.22); background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)); }
.tiktok-avatar {
  flex: none; width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size:15px; color: #052e22; 
  background: linear-gradient(135deg, #69F0AE, #00C853);
  border: 1px solid rgba(0,230,118,0.24);
  box-shadow: 0 6px 16px -8px rgba(0,230,118,0.7);
}
.tiktok-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap:2px; }
.tiktok-meta b { font-size: 13.6px; color: var(--text); font-weight:700; letter-spacing:-0.01em; }
.tiktok-meta small { font-size: 11.8px; color: var(--muted); display:flex; align-items:center; gap:6px; }
.tiktok-meta small::before { content:''; width:6px; height:6px; border-radius:50%; background: #FFB800; opacity:.8; }
.tiktok-meta small.verified::before { background: #00E676; box-shadow: 0 0 8px rgba(0,230,118,.6); }
.verif-actions { display: flex; gap: 6px; flex-wrap:wrap; }
.verif-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

/* Chips lisibles pour plateformes : nouveau composant */
.pub-platform-pills { display:flex; flex-wrap:wrap; gap:8px; margin: 14px 0 2px; }
.pub-pill {
  display:inline-flex; align-items:center; gap:7px;
  padding: 7px 12px; border-radius: 999px; font-size:12.5px; font-weight:700;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); color: var(--muted);
  cursor:pointer; transition: all .2s var(--ease); user-select:none;
}
.pub-pill:hover { border-color: rgba(255,255,255,0.18); color: var(--text); transform: translateY(-1px); }
.pub-pill.active { background: rgba(0,230,118,0.12); border-color: rgba(0,230,118,0.45); color: #eafff3; box-shadow: 0 6px 16px -12px rgba(0,230,118,.7); }
.pub-pill .emoji { font-size:14px; line-height:1; }

@media (max-width: 900px) {
  .tiktok-grid { grid-template-columns: 1fr; }
  .tiktok-clock { font-size: 40px; }
  .tiktok-add-row { flex-direction: column; }
  .tiktok-add-row .btn { width: 100%; }
  .referral-card { grid-template-columns:auto 1fr; }
  .referral-stats { grid-column:1 / -1; padding:10px 0 0; border-left:0; border-top:1px solid var(--line); }
  .subscription-pay-actions { align-items:stretch; flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) {
  .panel.active, .stat-cards .stat-card, .tiktok-item, .verif-item { animation: none; }
}

/* Ligne d'en-tête du récap (bouton Changer, sans tampon) */
.sum-head-row { display: flex; justify-content: flex-end; margin-bottom: 4px; }

/* ═══════════════ Abonnements perso + chat équipe ═══════════════ */

/* Éditeur de paliers */
.tier-editor .field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tier-editor textarea {
  width: 100%; margin-top: 8px; padding: 12px 13px; border-radius: 12px; resize: vertical;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font); font-size: 13.5px;
}
.tier-editor textarea:focus { outline: none; border-color: rgba(0, 230, 118, 0.6); }
.tier-editor input[type="color"] { border: none; padding: 0; background: transparent; }
.tier-toggles { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 8px; }
.switch-row { display: inline-flex; align-items: center; gap: 8px; font-size: 12.8px; color: var(--muted); cursor: pointer; }
.switch-row input { width: 16px; height: 16px; accent-color: var(--yellow); cursor: pointer; }

/* Cartes paliers : boutons admin + tags */
.vip-tier-card { cursor: pointer; }
.vip-tier-admin { display: flex; gap: 6px; margin-top: auto; padding-top: 8px; border-top: 1px dashed var(--line); }
.vip-tier-admin .mini-btn { flex: 1; }
.vip-tier-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.vip-tier-tags i { font-style: normal; font-size: 10px; color: var(--muted-2); background: rgba(255,255,255,0.05); border-radius: 999px; padding: 2px 7px; }

/* ── Chat équipe ── */
.chat-shell {
  display: flex; flex-direction: column; height: calc(100vh - 130px); min-height: 420px;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--card);
}
.chat-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
}
.chat-header b { font-family: var(--title); font-size: 15px; }
.chat-header small { display: block; font-size: 11.5px; color: var(--muted-2); }
.chat-body {
  flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
}
.chat-msg { max-width: 78%; align-self: flex-start; animation: msgIn 0.3s var(--ease) both; }
.chat-msg.mine { align-self: flex-end; }
.chat-msg-meta { display: flex; gap: 8px; align-items: baseline; margin-bottom: 4px; padding: 0 4px; }
.chat-msg-meta b { font-size: 12px; color: var(--muted); }
.chat-msg.mine .chat-msg-meta { justify-content: flex-end; }
.chat-msg-meta span { font-size: 10.5px; color: var(--muted-2); }
.chat-msg-text {
  padding: 10px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.5;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  border-bottom-left-radius: 4px; word-break: break-word;
}
.chat-msg.mine .chat-msg-text {
  background: rgba(0, 230, 118, 0.12); border-color: rgba(0, 230, 118, 0.3);
  border-bottom-left-radius: 16px; border-bottom-right-radius: 4px; color: var(--text);
}
.chat-empty { color: var(--muted-2); font-size: 13px; text-align: center; margin: auto; }
.chat-composer { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: rgba(0,0,0,0.2); }
.chat-composer input {
  flex: 1; min-width: 0; padding: 11px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line);
  color: var(--text); font-size: 13.5px;
}
.chat-composer input:focus { outline: none; border-color: rgba(0, 230, 118, 0.6); }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .tier-editor .field-row { grid-template-columns: 1fr; }
  .chat-shell { height: calc(100vh - 150px); min-height: 380px; }
  .chat-msg { max-width: 92%; }
  .chat-composer .btn { padding: 10px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-msg { animation: none; }
}

/* ═══════════════ Journal d'audit ═══════════════ */
.audit-list { display: flex; flex-direction: column; gap: 8px; }
.audit-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  border-radius: 13px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  animation: cardIn 0.35s var(--ease) both;
}
.audit-ico { flex: none; width: 10px; height: 10px; border-radius: 50%; background: #9b9ba6; }
.audit-ico[data-color="green"] { background: var(--green); box-shadow: 0 0 10px var(--green); }
.audit-ico[data-color="red"] { background: var(--red); box-shadow: 0 0 10px var(--red); }
.audit-ico[data-color="yellow"] { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }
.audit-ico[data-color="cyan"] { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.audit-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.audit-meta b { font-size: 13.5px; }
.audit-meta small { font-size: 12px; color: var(--muted); line-height: 1.45; word-break: break-word; }
.audit-meta small b { color: var(--text); font-weight: 600; }
.audit-when { flex: none; text-align: right; font-size: 12px; color: var(--muted-2); }
.audit-when i { display: block; font-style: normal; font-size: 11px; color: var(--muted-2); margin-top: 2px; font-family: monospace; }

@media (max-width: 640px) {
  .audit-item { flex-wrap: wrap; }
  .audit-when { width: 100%; text-align: left; margin-top: 2px; }
  .audit-when i { display: inline; margin-left: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .audit-item { animation: none; }
}

/* ═══════════════ BOÎTE DE DIALOGUE VOLT (remplace prompt/confirm) ═══════════════ */
.vdlg-overlay {
  position: fixed; inset: 0; z-index: 5000; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(0, 0, 0, 0.66); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.22s ease;
}
.vdlg-overlay.show { display: flex; opacity: 1; }
.vdlg {
  width: min(440px, 100%); border-radius: 20px; padding: 26px 24px 20px;
  background: linear-gradient(180deg, #14141b, #0d0d12);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 230, 118, 0.08) inset;
  text-align: center;
  transform: translateY(14px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.vdlg-overlay.show .vdlg { transform: translateY(0) scale(1); }
.vdlg-icon {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 16px;
  display: grid; place-items: center; font-size: 26px;
  background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3);
}
.vdlg.danger .vdlg-icon { background: rgba(248, 113, 113, 0.1); border-color: rgba(248, 113, 113, 0.35); }
.vdlg-title { font-family: var(--title); font-size: 18px; margin-bottom: 8px; }
.vdlg-msg { font-size: 13.5px; color: var(--muted); line-height: 1.6; white-space: pre-line; }
.vdlg-field { margin-top: 16px; text-align: left; }
.vdlg-field input {
  width: 100%; padding: 12px 14px; border-radius: 12px; font-size: 14px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); color: var(--text);
  font-family: var(--font);
}
.vdlg-field input:focus { outline: none; border-color: rgba(0, 230, 118, 0.6); }
.vdlg-choices { display: grid; gap: 8px; margin-top: 16px; text-align: left; }
.vdlg-choices:empty { display: none; }
.vdlg-choice {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 12px 14px; border-radius: 13px; cursor: pointer; text-align: left;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font); font-size: 13.5px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.vdlg-choice:hover { border-color: rgba(0, 230, 118, 0.55); background: rgba(0, 230, 118, 0.06); transform: translateX(2px); }
.vdlg-choice.picked { border-color: var(--yellow); background: rgba(0, 230, 118, 0.1); }
.vdlg-choice .vc-emoji { font-size: 19px; flex: none; }
.vdlg-choice .vc-body { flex: 1; min-width: 0; }
.vdlg-choice .vc-title { font-weight: 600; }
.vdlg-choice .vc-sub { display: block; font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.vdlg-actions { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.vdlg-actions .btn { min-width: 120px; }

/* ── Écran « accès refusé » / badges de permission ── */
.perm-note {
  display: flex; gap: 12px; align-items: flex-start; text-align: left;
  padding: 14px 16px; border-radius: 14px; margin-bottom: 14px;
  background: rgba(255, 184, 0, 0.07); border: 1px solid rgba(255, 184, 0, 0.28);
  font-size: 13px; color: var(--muted); line-height: 1.55;
}
.perm-note b { color: var(--text); }
.perm-note .pn-icon { font-size: 20px; line-height: 1; }
.noaccess-perks { display: grid; gap: 8px; margin: 16px 0 4px; text-align: left; }
.noaccess-perks li {
  list-style: none; font-size: 12.8px; color: var(--muted);
  padding: 10px 12px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
}
.noaccess-perks li b { color: var(--text); }

/* ═══════════════ MOBILE v1 — expérience optimisée (≤ 760 px) ═══════════════ */

/* Badge multi-appareils (topbar + comptes) */
.badge-devices {
  display: inline-flex; align-items: center; gap: 5px;
  color: #FFD54F; border: 1px solid rgba(255, 184, 0, 0.35);
  background: rgba(255, 184, 0, 0.08); font-size: 10.5px;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.badge-devices:hover { background: rgba(255, 184, 0, 0.16); }

/* Tableau comparatif des abonnements : scroll horizontal propre sur mobile */
#tier-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
#tier-compare .tier-compare { min-width: 620px; }

/* Numéros : les lignes deviennent des CARTES (fini le scroll horizontal) */
@media (max-width: 760px) {
  #panel-numbers .atable-wrap { overflow: visible; border: 0; background: transparent; }
  #panel-numbers .atable { min-width: 0 !important; display: block; }
  #panel-numbers .atable thead { display: none; }
  #panel-numbers .atable tbody { display: block; }
  #panel-numbers #num-tbody tr {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px;
    margin-bottom: 10px; padding: 12px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 8px 20px -18px rgba(0,0,0,.9);
  }
  #panel-numbers #num-tbody tr.row-mine { border-color: rgba(0, 230, 118, 0.4); background: rgba(0, 230, 118, 0.05); }
  #panel-numbers #num-tbody td {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    border: 0; padding: 7px 0; font-size: 12.5px;
  }
  #panel-numbers #num-tbody td::before {
    content: attr(data-label); flex: none; font-size: 9.5px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2);
  }
  #panel-numbers #num-tbody td:first-child { grid-column: 1 / -1; border-bottom: 1px dashed rgba(255,255,255,0.08); padding-bottom: 9px; }
  #panel-numbers #num-tbody td:last-child { grid-column: 1 / -1; justify-content: flex-start; padding-top: 9px; border-top: 1px dashed rgba(255,255,255,0.08); }
  #panel-numbers #num-tbody td:last-child::before { display: none; }
  #panel-numbers #num-tbody .mini-btn { min-height: 40px; padding: 0 16px; }
}

/* Barres d'outils et formulaires : pleine largeur sur mobile */
@media (max-width: 640px) {
  .admin-toolbar { flex-direction: column; align-items: stretch; }
  .admin-toolbar input, .admin-toolbar select { width: 100%; min-width: 0; }
  .num-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .num-stat { padding: 11px 12px; }
  .num-stat b { font-size: 18px; }
  .num-hero { flex-wrap: wrap; padding: 14px; }
  .num-hero-body { flex-basis: 100%; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ad-card { padding: 15px 14px; border-radius: 15px; }
  .ad-split { grid-template-columns: 1fr; }
  .ad-charts { grid-template-columns: 1fr; }
  .panel { padding: 12px; }
  .who-chip .avatar { display: none; }
  .vip-me-card { flex-direction: column; padding: 18px 16px; }
  .vip-me-avatar { display: none; }
  .subscription-pay { padding: 18px 14px 16px; }
  .subscription-pay-head { flex-direction: column; }
  .subscription-pay-amount { flex-direction: column; align-items: flex-start; gap: 6px; }
  .subscription-pay-amount-right { justify-content: flex-start; }
  .subscription-pay-address { flex-wrap: wrap; }
  .subscription-pay-address .mini-btn { width: 100%; }
  .tier-editor .field-row { grid-template-columns: 1fr; gap: 10px; }
  .tier-compare th, .tier-compare td { padding: 9px 8px; font-size: 11px; }
  .num-chips { gap: 6px; }
  .num-chip { padding: 9px 14px; font-size: 12px; min-height: 40px; }
  .mini-btn { min-height: 38px; padding: 0 13px; }
  .btn, .btn-sm { min-height: 44px; }
  .atable td { padding: 10px 10px; }
  .login-tabs .login-tab { font-size: 11.5px; padding: 10px 6px; }
  .sw-ways { grid-template-columns: 1fr; }
  .subscription-tier { min-height: 0; }
}

/* Très petits écrans */
@media (max-width: 400px) {
  .num-stats { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .who-chip b { max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
