/* ============================================================
   NYCTALIS — édition lisse
   Base sombre teintée violet · surfaces glossy arrondies · aurora
   ============================================================ */

:root {
  /* Surfaces — noir profond teinté violet */
  --void: #0a0711;
  --obsidian: #0f0b1a;
  --panel: #171122;
  --panel-2: #1e1633;
  --line: rgba(199, 155, 255, 0.10);
  --line-strong: rgba(199, 155, 255, 0.22);

  /* Accents violets */
  --iris: #9d5bff;         /* violet électrique — primaire */
  --iris-2: #c79bff;       /* lilas clair — stops de dégradé / lueurs */
  --fuchsia: #e15cff;      /* fuchsia-violet — secondaire */
  --ember: #f5b740;        /* or discret — étoiles uniquement */

  /* Texte */
  --white-hot: #f4f1fb;
  --fog: #cbc5da;
  --mist: #877f9c;

  /* Rayons & système */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --glow: 0 0 0 1px rgba(157, 91, 255, 0.35), 0 18px 50px -18px rgba(157, 91, 255, 0.6);
  --card-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.9);
  --sheen: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

html { scroll-behavior: smooth; }
html.no-cursor, html.no-cursor * { cursor: none !important; }

body {
  background: var(--void);
  color: var(--fog);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* halo global doux */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 50vw at 82% -8%, rgba(225, 92, 255, 0.10), transparent 60%),
    radial-gradient(55vw 55vw at 4% 6%, rgba(157, 91, 255, 0.12), transparent 58%),
    var(--void);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(157, 91, 255, 0.4); color: var(--white-hot); }

h1, h2, h3, h4 {
  font-family: "Sora", sans-serif;
  color: var(--white-hot);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

strong { color: var(--white-hot); font-weight: 600; }
em { font-style: normal; }

/* dégradé texte réutilisable */
.accent {
  background: linear-gradient(115deg, var(--iris-2), var(--fuchsia) 55%, var(--iris));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Kicker (le "//" devient une barre douce) ---- */
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.kicker span {
  display: inline-block; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--iris), var(--fuchsia));
  text-indent: -9999px; overflow: hidden;
}

/* ============================================================
   OVERLAYS AMBIANCE (aurora douce + grain léger)
   ============================================================ */
.fx { position: fixed; inset: 0; pointer-events: none; }

/* .fx--scanlines réutilisé en couche AURORA dérivante */
.fx--scanlines {
  z-index: -1;
  background:
    radial-gradient(38vw 38vw at 22% 24%, rgba(157, 91, 255, 0.14), transparent 62%),
    radial-gradient(34vw 34vw at 84% 34%, rgba(225, 92, 255, 0.10), transparent 62%),
    radial-gradient(42vw 42vw at 62% 96%, rgba(110, 68, 176, 0.14), transparent 62%);
  animation: auroraDrift 26s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2.5%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 1.5%, 0) scale(1.05); }
}

.fx--grain {
  z-index: 9990; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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)'/%3E%3C/svg%3E");
}

.fx--vignette { z-index: 9989; box-shadow: inset 0 0 300px 80px rgba(0, 0, 0, 0.7); }

/* ============================================================
   CURSEUR (point lumineux doux + halo)
   ============================================================ */
.cursor { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; }
.cursor__ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(199, 155, 255, 0.55);
  background: rgba(157, 91, 255, 0.04);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s, opacity 0.3s;
}
.cursor__dot {
  position: fixed; top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--iris-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px 2px rgba(157, 91, 255, 0.9);
}
.cursor__brackets { display: none; }
.cursor.is-hover .cursor__ring { width: 56px; height: 56px; border-color: rgba(199, 155, 255, 0.85); background: rgba(157, 91, 255, 0.1); }
.cursor.is-down .cursor__ring { width: 26px; height: 26px; }

/* ============================================================
   BOUTONS (pilules lisses)
   ============================================================ */
.btn {
  --pad: 0.9em 1.6em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: var(--pad);
  border-radius: var(--r-pill);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white-hot);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, filter 0.3s;
  will-change: transform;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--iris-2), var(--iris) 60%, #7d3ff0);
  color: #17092e;
  box-shadow: 0 12px 30px -12px rgba(157, 91, 255, 0.75), var(--sheen);
}
.btn--primary:hover { filter: brightness(1.06); box-shadow: 0 18px 44px -12px rgba(157, 91, 255, 0.9), var(--sheen); }

.btn--ghost { background: rgba(255, 255, 255, 0.03); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--ghost:hover { background: rgba(157, 91, 255, 0.08); box-shadow: inset 0 0 0 1px var(--iris); color: var(--white-hot); }

.btn--lg { --pad: 1.05em 2.1em; font-size: 1rem; }

/* halo suiveur doux */
[data-neon] { position: relative; overflow: hidden; }
[data-neon]::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(140px circle at var(--neon-x, 50%) var(--neon-y, 50%), rgba(255, 255, 255, 0.28), transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
[data-neon]:hover::after { opacity: 1; }

/* ============================================================
   HUD / NAV
   ============================================================ */
.hud { position: fixed; top: 0; left: 0; right: 0; z-index: 900; transition: transform 0.4s var(--ease); }
.hud__inner {
  max-width: var(--maxw); margin: 0.7rem auto 0; padding: 0.7rem 1.4rem;
  display: flex; align-items: center; gap: 1.4rem;
  border-radius: var(--r-pill);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.hud.is-scrolled .hud__inner {
  background: rgba(20, 15, 32, 0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 40px -20px rgba(0, 0, 0, 0.9);
}
.hud.is-hidden { transform: translateY(-140%); }

/* on garde une marge latérale au conteneur */
.hud__inner { margin-left: var(--gutter); margin-right: var(--gutter); }

.brand { display: inline-flex; align-items: center; gap: 0.6em; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 0 9px rgba(157, 91, 255, 0.55)); }
.logo-mark { height: 30px; width: auto; display: block; }
.brand__word { font-family: "Jost", sans-serif; font-weight: 300; font-size: 1.25rem; letter-spacing: 0.3em; text-transform: lowercase; color: var(--white-hot); padding-left: 0.14em; }

.hud__nav { display: flex; gap: 0.2rem; margin-left: 0.8rem; }
.hud__nav a {
  position: relative; font-size: 0.86rem; font-weight: 500; color: var(--fog);
  padding: 0.5em 0.85em; border-radius: var(--r-pill); transition: color 0.25s, background 0.25s;
}
.hud__nav a:hover { color: var(--white-hot); background: rgba(255, 255, 255, 0.05); }

.hud__meta { margin-left: auto; display: flex; align-items: center; gap: 1.1rem; }
.status { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--mist); text-transform: uppercase; }
.status__led { width: 7px; height: 7px; border-radius: 50%; background: var(--iris); box-shadow: 0 0 10px var(--iris); animation: pulse 2s ease-in-out infinite; }
.status__count { color: var(--iris-2); font-variant-numeric: tabular-nums; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.btn-mini {
  display: inline-block; line-height: 1;
  font-family: "Space Grotesk", sans-serif; font-size: 0.82rem; font-weight: 600;
  color: #17092e; background: linear-gradient(135deg, var(--iris-2), var(--iris));
  padding: 0.7em 1.15em; border-radius: var(--r-pill);
  box-shadow: 0 10px 24px -12px rgba(157, 91, 255, 0.8), var(--sheen);
  transition: filter 0.3s, box-shadow 0.3s, transform 0.35s var(--ease);
}
.btn-mini:hover { filter: brightness(1.07); }

.lang { display: inline-flex; align-items: center; gap: 0.1rem; }
.lang a { font-size: 0.76rem; font-weight: 500; color: var(--mist); padding: 0.35em 0.55em; border-radius: var(--r-pill); transition: color 0.25s, background 0.25s; }
.lang a:hover { color: var(--white-hot); }
.lang a.is-active { color: var(--white-hot); background: rgba(255, 255, 255, 0.07); }

.burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 22px; height: 2px; border-radius: 2px; background: var(--white-hot); transition: transform 0.3s, opacity 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 9rem var(--gutter) 7rem; overflow: hidden; }

/* .grid-floor réutilisé en grand halo doux derrière la carte */
.grid-floor {
  position: absolute; top: 20%; right: -6%; width: 60vw; height: 70vh;
  background: radial-gradient(circle at 60% 40%, rgba(157, 91, 255, 0.22), rgba(225, 92, 255, 0.08) 40%, transparent 66%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.hero__copy { max-width: 640px; }
.hero__copy .kicker { margin-bottom: 1.6rem; }

/* Entrée du hero au chargement (cascade) */
.hero__copy > * { animation: heroIn 0.95s var(--ease-soft) backwards; }
.hero__copy > *:nth-child(1) { animation-delay: 0.10s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.22s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.36s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.50s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.60s; }
.hero__card { animation: heroIn 1s var(--ease-soft) 0.35s backwards; }
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.hero__title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.6rem; }
.hero__title .line { display: block; }
.hero__title em {
  background: linear-gradient(115deg, var(--iris-2), var(--fuchsia) 50%, var(--iris));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 7s linear infinite;
}
@keyframes sheen { to { background-position: 220% center; } }

.hero__lede { font-size: 1.12rem; color: var(--fog); margin-bottom: 2.3rem; max-width: 47ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero__badges li { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.82rem; color: var(--mist); }
.tick { width: 18px; height: 18px; flex: none; border-radius: 50%; background: rgba(157, 91, 255, 0.14); position: relative; }
.tick::after { content: ""; position: absolute; left: 6px; top: 4px; width: 4px; height: 8px; border: solid var(--iris-2); border-width: 0 2px 2px 0; transform: rotate(40deg); }

/* Carte flottante */
.hero__card { justify-self: center; }
.pcard {
  position: relative; width: min(350px, 84vw);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)), var(--panel-2);
  padding: 1.5rem; border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line), var(--card-shadow), var(--sheen);
}
.pcard--float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.pcard__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }
.pcard__tag { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iris-2); font-weight: 600; }
.pcard__live { display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.pcard__live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fuchsia); box-shadow: 0 0 8px var(--fuchsia); }
.pcard__art { height: 130px; display: grid; place-items: center; color: var(--iris-2); background: radial-gradient(circle at 50% 42%, rgba(157, 91, 255, 0.18), transparent 66%); margin-bottom: 1.1rem; border-radius: var(--r-md); filter: drop-shadow(0 6px 16px rgba(157, 91, 255, 0.35)); }
.pcard__name { font-size: 1.45rem; margin-bottom: 0.3rem; }
.pcard__desc { font-size: 0.88rem; color: var(--fog); margin-bottom: 1.1rem; }
.pcard__foot { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.pcard__cta {
  display: block; width: 100%; border: 0; cursor: inherit; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, var(--iris-2), var(--iris)); color: #17092e;
  font-family: "Space Grotesk", sans-serif; font-size: 0.9rem; font-weight: 600; padding: 0.9em;
  border-radius: var(--r-pill); box-shadow: 0 12px 28px -12px rgba(157, 91, 255, 0.8), var(--sheen);
  transition: filter 0.3s;
}
.pcard__cta:hover { filter: brightness(1.07); }

.rating { display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.86rem; font-weight: 600; color: var(--white-hot); }
.stars { --r: 100%; width: 78px; height: 14px; background: linear-gradient(90deg, var(--ember) var(--r), rgba(199,155,255,0.2) var(--r)); -webkit-mask: repeat left center/15.6px 14px; mask: repeat left center/15.6px 14px; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='14' viewBox='0 0 15 14'%3E%3Cpath d='M7.5 0l2 4.7 5 .4-3.8 3.3 1.2 5L7.5 10.9 3.1 13.4l1.2-5L.5 5.1l5-.4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='14' viewBox='0 0 15 14'%3E%3Cpath d='M7.5 0l2 4.7 5 .4-3.8 3.3 1.2 5L7.5 10.9 3.1 13.4l1.2-5L.5 5.1l5-.4z'/%3E%3C/svg%3E"); }
.price { font-family: "Sora", sans-serif; font-weight: 700; color: var(--white-hot); font-size: 1.1rem; }
.price s { color: var(--mist); font-weight: 400; margin-right: 0.4em; font-size: 0.85em; }
.price__per { font-size: 0.62rem; color: var(--mist); font-weight: 400; margin-left: 0.15em; }

.hero__scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; font-size: 0.6rem; letter-spacing: 0.3em; color: var(--mist); }
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(var(--iris-2), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { overflow: hidden; padding: 0.4rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { display: flex; width: max-content; }
.marquee__track { display: flex; align-items: center; gap: 2.5rem; padding: 1rem 1.25rem; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--fog); white-space: nowrap; transition: color 0.3s; }
.marquee__track span:hover { color: var(--iris-2); }
.marquee__track i { color: var(--fuchsia); font-style: normal; font-size: 0.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 10vw, 8rem) var(--gutter); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)), var(--panel);
  border-radius: var(--r-md); padding: 1.8rem 1.6rem;
  box-shadow: inset 0 0 0 1px var(--line), var(--sheen);
}
.stat__num { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--white-hot); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.stat__label { font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mist); }
.stat__label::first-letter { text-transform: uppercase; }

/* on masque le "// " des labels de stats en le stylant discret */
.stat__label { position: relative; }

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(6rem, 13vw, 11rem) var(--gutter); }
.section--narrow { max-width: 820px; }
.section__head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__head .kicker { margin-bottom: 1.3rem; }
.section__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
.section__sub { color: var(--fog); margin-top: 1.4rem; max-width: 54ch; }

/* ============================================================
   PRODUITS (les 2 clients)
   ============================================================ */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.product {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)), var(--panel-2);
  border-radius: var(--r-lg); padding: 2.2rem;
  box-shadow: inset 0 0 0 1px var(--line), var(--card-shadow), var(--sheen);
  display: flex; flex-direction: column;
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px var(--line-strong), 0 40px 70px -34px rgba(157, 91, 255, 0.55), var(--sheen); }
.product__glow { position: absolute; top: -30%; right: -18%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(157, 91, 255, 0.24), transparent 62%); pointer-events: none; z-index: 0; transition: transform 0.7s var(--ease); }
.product__glow--alt { background: radial-gradient(circle, rgba(225, 92, 255, 0.22), transparent 62%); }
.product:hover .product__glow { transform: scale(1.18); }
.product > *:not(.product__glow) { position: relative; z-index: 1; }
.product__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.product__cat { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); font-weight: 500; }
.product__badge { font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; padding: 0.4em 0.85em; border-radius: var(--r-pill); color: var(--iris-2); background: rgba(157, 91, 255, 0.14); box-shadow: inset 0 0 0 1px rgba(157, 91, 255, 0.3); }
.product__badge--alt { color: var(--fuchsia); background: rgba(225, 92, 255, 0.14); box-shadow: inset 0 0 0 1px rgba(225, 92, 255, 0.3); }
.product__art { height: 118px; display: grid; place-items: center; color: var(--iris-2); margin-bottom: 0.4rem; transition: transform 0.5s var(--ease); filter: drop-shadow(0 8px 20px rgba(157, 91, 255, 0.4)); }
.product:hover .product__art { transform: translateY(-4px) scale(1.07); }
.product__name { font-size: 1.9rem; margin-bottom: 0.5rem; }
.product__desc { font-size: 0.95rem; color: var(--fog); margin-bottom: 1.4rem; }
.product__feats { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.6rem; }
.product__feats li { position: relative; padding-left: 1.9rem; font-size: 0.9rem; color: var(--fog); }
.product__feats li::before { content: ""; position: absolute; left: 0; top: -0.05em; width: 20px; height: 20px; border-radius: 50%; background: rgba(157, 91, 255, 0.14); }
.product__feats li::after { content: ""; position: absolute; left: 7px; top: 0.35em; width: 4px; height: 8px; border: solid var(--iris-2); border-width: 0 2px 2px 0; transform: rotate(40deg); }
.product__foot { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 1.3rem; margin-top: auto; margin-bottom: 1.4rem; border-top: 1px solid var(--line); }
.product__price { display: flex; flex-direction: column; gap: 0.25rem; }
.product__price .ppm { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.7rem; color: var(--white-hot); line-height: 1; }
.product__price .ppm i { font-family: "Space Grotesk", sans-serif; font-style: normal; font-size: 0.78rem; color: var(--mist); font-weight: 400; }
.product__price .ppl { font-size: 0.78rem; color: var(--iris-2); }
.product__price .ppl i { font-style: normal; color: var(--mist); }
.product__cta { display: flex; gap: 0.8rem; }
.product__cta .btn { flex: 1; justify-content: center; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.steps__line { position: absolute; top: 54px; left: 14%; right: 14%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--iris), var(--fuchsia), transparent); opacity: 0.4; }
.step { position: relative; text-align: center; padding: 0 1rem; }
.step__num { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--mist); }
.step__icon { width: 68px; height: 68px; margin: 0.8rem auto 1.2rem; display: grid; place-items: center; color: var(--iris-2); border-radius: 50%; background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)), var(--panel); box-shadow: inset 0 0 0 1px var(--line), 0 10px 30px -14px rgba(157, 91, 255, 0.5); position: relative; z-index: 2; }
.step__title { font-size: 1.35rem; margin-bottom: 0.5rem; }
.step__desc { font-size: 0.9rem; color: var(--fog); max-width: 30ch; margin: 0 auto; }

/* ============================================================
   LIVE / TICKER / REVIEWS
   ============================================================ */
.live { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.live .kicker { margin-bottom: 1rem; }
.live .section__title { margin-bottom: 1.6rem; }
.ticker { display: flex; flex-direction: column; gap: 0.7rem; }
.ticker__row { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1.1rem; border-radius: var(--r-md); background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)), var(--panel); box-shadow: inset 0 0 0 1px var(--line); font-size: 0.86rem; animation: tickerIn 0.5s var(--ease); }
@keyframes tickerIn { from { opacity: 0; transform: translateY(-8px); } }
.ticker__dot { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--iris); box-shadow: 0 0 10px var(--iris); }
.ticker__row b { color: var(--white-hot); font-weight: 600; }
.ticker__row .prod { color: var(--iris-2); }
.ticker__row time { margin-left: auto; font-size: 0.7rem; color: var(--mist); white-space: nowrap; }
.reviews { display: flex; flex-direction: column; gap: 1rem; }
.review { border-radius: var(--r-lg); padding: 1.5rem; background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), var(--panel-2); box-shadow: inset 0 0 0 1px var(--line), var(--sheen); transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.review:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line-strong), 0 24px 50px -30px rgba(0,0,0,0.9); }
.review blockquote { color: var(--fog); font-size: 0.96rem; margin: 0.7rem 0; }
.review figcaption { font-size: 0.8rem; color: var(--mist); }
.review figcaption span { color: var(--fuchsia); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.feat { position: relative; border-radius: var(--r-lg); padding: 1.8rem; background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)), var(--panel); box-shadow: inset 0 0 0 1px var(--line), var(--sheen); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.feat:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px var(--line-strong), 0 30px 60px -34px rgba(157, 91, 255, 0.5); }
.feat__tick { display: none; }
.feat__icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--iris-2); border-radius: var(--r-md); background: radial-gradient(circle, rgba(157, 91, 255, 0.16), transparent 72%); box-shadow: inset 0 0 0 1px var(--line); margin-bottom: 1.2rem; }
.feat h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feat p { font-size: 0.88rem; color: var(--fog); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.8rem; align-items: stretch; max-width: 800px; margin: 0 auto; }
.plan { position: relative; border-radius: var(--r-lg); padding: 2.2rem 1.9rem; background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), var(--panel-2); box-shadow: inset 0 0 0 1px var(--line), var(--card-shadow), var(--sheen); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.plan:hover { transform: translateY(-6px); }
.plan--featured { box-shadow: inset 0 0 0 1.5px rgba(157, 91, 255, 0.55), 0 40px 80px -34px rgba(157, 91, 255, 0.6), var(--sheen); }
.plan--featured::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); background: radial-gradient(500px 220px at 50% 0%, rgba(157, 91, 255, 0.14), transparent 70%); pointer-events: none; }
.plan__flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--iris-2), var(--iris)); color: #17092e; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.45em 1em; border-radius: var(--r-pill); box-shadow: 0 10px 24px -12px rgba(157, 91, 255, 0.9); }
.plan__tier { font-size: 0.78rem; letter-spacing: 0.18em; color: var(--mist); text-transform: uppercase; margin-top: 0.4rem; }
.plan__price { font-family: "Sora", sans-serif; font-weight: 800; font-size: 3.6rem; color: var(--white-hot); line-height: 1; margin: 0.7rem 0 0.2rem; display: flex; align-items: flex-start; letter-spacing: -0.03em; }
.plan__price .cur { font-size: 1.4rem; color: var(--iris-2); margin-top: 0.35rem; margin-right: 0.05rem; }
.plan__price .dec { font-size: 1.7rem; align-self: flex-start; margin-top: 0.4rem; color: var(--white-hot); }
.plan__price .per { font-size: 0.85rem; font-family: "Space Grotesk", sans-serif; color: var(--mist); align-self: flex-end; margin-bottom: 0.6rem; margin-left: 0.4rem; font-weight: 400; }
.plan__note { font-size: 0.88rem; color: var(--fog); margin-bottom: 1.5rem; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.9rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.9rem; font-size: 0.9rem; color: var(--fog); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: -0.05em; width: 20px; height: 20px; border-radius: 50%; background: rgba(157, 91, 255, 0.14); }
.plan__list li::after { content: ""; position: absolute; left: 7px; top: 0.32em; width: 4px; height: 8px; border: solid var(--iris-2); border-width: 0 2px 2px 0; transform: rotate(40deg); }
.plan__cta { width: 100%; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 0.9rem; }
.faq__item { border-radius: var(--r-md); overflow: hidden; background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)), var(--panel); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow 0.3s; }
.faq__item[open] { box-shadow: inset 0 0 0 1px var(--line-strong); }
.faq__item summary { list-style: none; cursor: inherit; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--white-hot); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__sign { position: relative; width: 16px; height: 16px; flex: none; }
.faq__sign::before, .faq__sign::after { content: ""; position: absolute; border-radius: 2px; background: var(--iris-2); transition: transform 0.3s var(--ease); }
.faq__sign::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__sign::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item[open] .faq__sign::after { transform: scaleY(0); }
.faq__item p { padding: 0 1.5rem 1.4rem; color: var(--fog); font-size: 0.92rem; max-width: 64ch; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; margin: 3rem var(--gutter) 4rem; }
.cta__inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; text-align: center; padding: clamp(3rem, 7vw, 5.5rem) 2rem; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)), var(--panel-2); box-shadow: inset 0 0 0 1px var(--line), var(--card-shadow), var(--sheen); }
.cta__inner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(600px 300px at 50% -10%, rgba(157, 91, 255, 0.2), transparent 70%), radial-gradient(500px 300px at 80% 120%, rgba(225, 92, 255, 0.14), transparent 70%); }
.cta__grid { display: none; }
.cta__inner .kicker { margin-bottom: 1rem; }
.cta__title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.cta__sub { color: var(--fog); max-width: 48ch; margin: 0 auto 2.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--obsidian); }
.footer__top { max-width: var(--maxw); margin: 0 auto; padding: 4rem var(--gutter) 2.5rem; display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; }
.footer__lockup { display: flex; align-items: center; gap: 0.8rem; }
.footer__mark { height: 40px; width: auto; display: block; filter: drop-shadow(0 0 12px rgba(157, 91, 255, 0.5)); }
.footer__logo { font-family: "Jost", sans-serif; font-weight: 300; font-size: 1.9rem; letter-spacing: 0.34em; text-transform: lowercase; color: var(--white-hot); padding-left: 0.17em; }
.footer__brand p { color: var(--mist); font-size: 0.9rem; margin-top: 1rem; max-width: 36ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h4 { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fog); margin-bottom: 1rem; }
.footer__cols a { display: block; color: var(--mist); font-size: 0.88rem; padding: 0.3em 0; transition: color 0.25s, transform 0.25s; }
.footer__cols a:hover { color: var(--iris-2); transform: translateX(3px); }
.footer__bottom { border-top: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; padding: 1.5rem var(--gutter); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--mist); }
.footer__disc { opacity: 0.7; }
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--fog); background: rgba(255, 255, 255, 0.03); box-shadow: inset 0 0 0 1px var(--line); transition: color 0.25s, transform 0.25s, background 0.25s; }
.footer__social a:hover { color: var(--iris-2); transform: translateY(-3px); background: rgba(157, 91, 255, 0.1); }

/* ============================================================
   ANIMATIONS DE SCROLL
   ============================================================ */
/* Barre de progression du défilement */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--iris), var(--fuchsia));
  box-shadow: 0 0 14px rgba(157, 91, 255, 0.7);
  will-change: transform;
}

/* Reveal — apparition douce, avec variantes directionnelles */
.js .reveal {
  opacity: 0; transform: translateY(46px) scale(0.98); filter: blur(5px);
  transition: opacity 0.9s var(--ease-soft), transform 1s var(--ease-soft), filter 0.9s var(--ease-soft);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; filter: none; }
.js .reveal[data-reveal="left"]  { transform: translateX(-56px) scale(0.99); }
.js .reveal[data-reveal="right"] { transform: translateX(56px) scale(0.99); }
.js .reveal[data-reveal="scale"] { transform: scale(0.9); }
.js .reveal[data-reveal="left"].is-in,
.js .reveal[data-reveal="right"].is-in,
.js .reveal[data-reveal="scale"].is-in { transform: none; }

/* Parallax léger (piloté au scroll par le JS) */
[data-parallax] { will-change: transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hud__nav { display: none; }
  .burger { display: flex; }
  .hud.menu-open .hud__inner { border-radius: var(--r-lg); }
  .hud.menu-open .hud__nav { display: flex; position: absolute; top: calc(100% + 8px); left: var(--gutter); right: var(--gutter); flex-direction: column; background: rgba(20, 15, 32, 0.94); backdrop-filter: blur(18px); padding: 0.8rem; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px var(--line), 0 20px 50px -20px rgba(0,0,0,0.9); }
  .hud.menu-open .hud__nav a { padding: 0.8em 1em; }
  .hud__meta .status { display: none; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { order: -1; justify-self: start; }
  .hero__scroll { display: none; }
  .grid-floor { top: 0; right: -30%; opacity: 0.7; }

  .products { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .live { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps__line { display: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(2.7rem, 14vw, 4rem); }
  .product__cta { flex-direction: column; }
  .product { padding: 1.7rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ACCESSIBILITÉ — mouvement réduit
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  [data-parallax] { transform: none !important; }
  .pcard--float, .fx--scanlines, .grid-floor, .marquee__track { animation: none !important; }
  .cursor { display: none; }
  html.no-cursor, html.no-cursor * { cursor: auto !important; }
}


/* ============================================================
   PAGE STATUT
   ============================================================ */
.status-page { padding-top: clamp(8rem, 12vw, 11rem); }

.ok-dot { width: 10px; height: 10px; border-radius: 50%; background: #3ee6a0; box-shadow: 0 0 12px #3ee6a0; position: relative; flex: none; }
.ok-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid #3ee6a0; opacity: 0.6; animation: okPulse 2.2s ease-out infinite; }
@keyframes okPulse { 0% { transform: scale(0.6); opacity: 0.7; } 100% { transform: scale(2); opacity: 0; } }

.status-banner { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; padding: 1.7rem 2rem; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(62,230,160,0.08), rgba(255,255,255,0.01)), var(--panel); box-shadow: inset 0 0 0 1px rgba(62,230,160,0.28), var(--sheen); margin-bottom: 2.5rem; }
.status-banner__title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--white-hot); }
.status-banner__sub { color: var(--fog); font-size: 0.9rem; margin-top: 0.15rem; }
.status-banner__right { margin-left: auto; text-align: right; }
.status-banner__right .srow__label { justify-content: flex-end; }
.status-banner__right .status-up { color: #3ee6a0; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.5rem; }

.status-badge { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.84rem; font-weight: 600; padding: 0.5em 1em; border-radius: var(--r-pill); white-space: nowrap; }
.status-badge--ok { color: #3ee6a0; background: rgba(62,230,160,0.12); box-shadow: inset 0 0 0 1px rgba(62,230,160,0.38); }

.status-list { display: flex; flex-direction: column; gap: 1rem; }
.srow { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 1.5rem 1.9rem; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)), var(--panel); box-shadow: inset 0 0 0 1px var(--line), var(--sheen); transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.srow:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(62,230,160,0.32), 0 26px 55px -32px rgba(0,0,0,0.9); }
.srow__main { display: flex; align-items: center; gap: 1.1rem; min-width: 210px; }
.srow__icon { width: 54px; height: 54px; flex: none; display: grid; place-items: center; color: var(--iris-2); border-radius: var(--r-md); background: radial-gradient(circle, rgba(157,91,255,0.16), transparent 72%); box-shadow: inset 0 0 0 1px var(--line); }
.srow__name { font-size: 1.3rem; margin-bottom: 0.1rem; }
.srow__game { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.srow__meta { display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
.srow__field { display: flex; flex-direction: column; gap: 0.2rem; }
.srow__label { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.srow__value { font-size: 0.98rem; color: var(--white-hot); font-weight: 500; }
.srow__value--never { color: #3ee6a0; }

.status-note { margin-top: 2rem; font-size: 0.84rem; color: var(--mist); display: inline-flex; align-items: center; gap: 0.6em; }

@media (max-width: 720px) {
  .srow { flex-direction: column; align-items: flex-start; }
  .srow__meta { gap: 1.4rem; }
  .status-banner__right { margin-left: 0; text-align: left; width: 100%; }
}

/* Icônes-logo (statut) : image plein cadre au lieu de l'icône SVG teintée */
.srow__icon--img { background: none; box-shadow: none; padding: 0; overflow: hidden; }
.srow__logo { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ============================================================
   PAGES PRODUIT
   ============================================================ */
.phero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-top: clamp(7rem, 11vw, 10rem); }
.phero__cat { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); font-weight: 500; display: inline-flex; align-items: center; gap: 0.6em; margin-bottom: 1.1rem; }
.phero__cat img { width: 22px; height: 22px; border-radius: 6px; }
.phero__title { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.1rem; }
.phero__row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.phero__desc { font-size: 1.06rem; color: var(--fog); max-width: 50ch; margin-bottom: 1.6rem; }
.phero__price { display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.phero__price .big { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.1rem; color: var(--white-hot); letter-spacing: -0.02em; }
.phero__price .big i { font-style: normal; font-size: 0.9rem; color: var(--mist); font-weight: 400; }
.phero__price .alt { font-size: 0.92rem; color: var(--iris-2); }
.phero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.mockup { position: relative; border-radius: var(--r-lg); overflow: hidden; padding: 1.5rem; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), var(--panel-2); box-shadow: inset 0 0 0 1px var(--line), var(--card-shadow), var(--sheen); }
.mockup::before { content: ""; position: absolute; top: -30%; right: -20%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(157,91,255,0.22), transparent 62%); pointer-events: none; }
.mockup > * { position: relative; }
.mockup__bar { display: flex; align-items: center; gap: 0.5rem; padding-bottom: 1.2rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.mockup__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--graphite-2); }
.mockup__ver { margin-left: auto; font-size: 0.72rem; color: var(--mist); letter-spacing: 0.05em; }
.mockup__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.mockup__logo { width: 62px; height: 62px; border-radius: var(--r-md); overflow: hidden; flex: none; box-shadow: 0 8px 22px -10px rgba(157,91,255,0.5); }
.mockup__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mockup__title { font-size: 1.25rem; }
.mockup__status { display: inline-flex; align-items: center; gap: 0.45em; font-size: 0.78rem; color: #3ee6a0; margin-top: 0.25rem; }
.mockup__toggles { display: flex; flex-direction: column; gap: 0.65rem; }
.mtoggle { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-radius: var(--r-md); background: rgba(255,255,255,0.02); box-shadow: inset 0 0 0 1px var(--line); font-size: 0.9rem; color: var(--fog); }
.switch { width: 38px; height: 22px; border-radius: 999px; background: rgba(62,230,160,0.22); box-shadow: inset 0 0 0 1px rgba(62,230,160,0.5); position: relative; flex: none; }
.switch::after { content: ""; position: absolute; top: 3px; right: 3px; width: 16px; height: 16px; border-radius: 50%; background: #3ee6a0; box-shadow: 0 0 8px rgba(62,230,160,0.7); }

.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip { font-size: 0.86rem; color: var(--fog); padding: 0.55em 1em; border-radius: var(--r-pill); background: rgba(255,255,255,0.03); box-shadow: inset 0 0 0 1px var(--line); transition: color 0.25s, box-shadow 0.25s, transform 0.25s; }
.chip:hover { color: var(--white-hot); box-shadow: inset 0 0 0 1px var(--iris); transform: translateY(-2px); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.shot { position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-md); overflow: hidden; background: linear-gradient(160deg, var(--panel-2), var(--panel)); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.shot::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 42%, rgba(157,91,255,0.16), transparent 60%); }
.shot img { position: relative; width: 48px; height: 48px; opacity: 0.85; border-radius: 10px; }
.shot span { position: absolute; bottom: 0.7rem; left: 0.9rem; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border-radius: var(--r-lg); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); background: var(--line); }
.spec { display: flex; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.5rem; background: var(--panel); }
.spec dt { color: var(--mist); font-size: 0.9rem; }
.spec dd { color: var(--white-hot); font-size: 0.9rem; font-weight: 500; text-align: right; }

@media (max-width: 860px) {
  .phero { grid-template-columns: 1fr; }
  .phero__visual { order: -1; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .specs { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Modules cliquables (arsenal) */
.chip { border: 0; font-family: "Space Grotesk", sans-serif; cursor: inherit; }
.chip.is-active { color: #17092e; background: linear-gradient(135deg, var(--iris-2), var(--iris)); box-shadow: 0 8px 20px -10px rgba(157,91,255,0.7); }
.chip-detail { margin-top: 1.7rem; padding: 1.4rem 1.7rem; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)), var(--panel); box-shadow: inset 0 0 0 1px var(--line), var(--sheen); transition: box-shadow 0.3s; }
.chip-detail__name { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--iris-2); margin-bottom: 0.35rem; }
.chip-detail__text { color: var(--fog); font-size: 0.95rem; }

/* ============================================================
   ARSENAL — animations (apparition, survol, actif, détail)
   ============================================================ */
/* le conteneur ne s'anime pas lui-même : ce sont les puces qui apparaissent */
.js .chips.reveal { opacity: 1; transform: none; filter: none; }
.js .chips.reveal .chip { opacity: 0; }
.chips.reveal.is-in .chip { animation: chipPop 0.55s var(--ease-soft) var(--pop-delay, 0s) both; }
@keyframes chipPop {
  0%   { opacity: 0; transform: translateY(16px) scale(0.8); }
  60%  { opacity: 1; transform: translateY(-3px) scale(1.06); }
  100% { opacity: 1; transform: none; }
}

/* survol élastique + halo */
.chip { transition: color 0.25s, box-shadow 0.3s, background 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.chip:hover { transform: translateY(-3px) scale(1.06); color: var(--white-hot); box-shadow: inset 0 0 0 1px var(--iris), 0 10px 22px -12px rgba(157, 91, 255, 0.75); }
.chip:active { transform: translateY(-1px) scale(0.97); }

/* puce active : pulsation */
.chip.is-active { animation: chipGlow 2.2s ease-in-out infinite; }
.chip.is-active:hover { transform: translateY(-3px) scale(1.06); }
@keyframes chipGlow {
  0%, 100% { box-shadow: 0 8px 20px -10px rgba(157, 91, 255, 0.8); }
  50%      { box-shadow: 0 10px 30px -8px rgba(225, 92, 255, 1); }
}

/* panneau de détail : barre d'accent + animation au changement */
.chip-detail { position: relative; overflow: hidden; }
.chip-detail::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--iris-2), var(--fuchsia)); opacity: 0; transition: opacity 0.4s; }
.chip-detail.is-updating::before { opacity: 1; }
.chip-detail.is-updating { animation: detailPop 0.4s var(--ease-soft); }
.chip-detail.is-updating .chip-detail__name { animation: detailIn 0.4s var(--ease-soft); }
.chip-detail.is-updating .chip-detail__text { animation: detailIn 0.45s var(--ease-soft) 0.05s backwards; }
@keyframes detailPop { 0% { transform: scale(0.992); } 55% { transform: scale(1.006); } 100% { transform: scale(1); } }
@keyframes detailIn { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .js .chips.reveal .chip { opacity: 1 !important; animation: none !important; }
  .chip.is-active { animation: none !important; }
}

/* ============================================================
   ARSENAL v2 — le bouton s'agrandit au clic (accordéon)
   ============================================================ */
.chips { align-items: flex-start; }
.chip {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left; overflow: hidden;
  transition: color 0.3s, background 0.35s, box-shadow 0.35s, padding 0.4s var(--ease), border-radius 0.35s, flex-basis 0.001s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chip__name { white-space: nowrap; font-weight: 500; }
.chip__desc {
  max-height: 0; opacity: 0; overflow: hidden; max-width: 0;
  color: var(--fog); font-size: 0.92rem; line-height: 1.55; font-weight: 400;
  transition: max-height 0.5s var(--ease), opacity 0.4s, margin-top 0.45s var(--ease);
}
.chip:not(.is-open):hover { transform: translateY(-3px) scale(1.06); color: var(--white-hot); box-shadow: inset 0 0 0 1px var(--iris), 0 10px 22px -12px rgba(157, 91, 255, 0.75); }
.chip:not(.is-open):active { transform: translateY(-1px) scale(0.97); }

.chip.is-open {
  flex: 1 1 100%;
  padding: 1.15rem 1.45rem;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(157, 91, 255, 0.14), rgba(255, 255, 255, 0.01)), var(--panel);
  box-shadow: inset 0 0 0 1px var(--iris), 0 16px 36px -18px rgba(157, 91, 255, 0.8);
}
.js .chips.reveal .chip.is-open { opacity: 1; }
.chip.is-open .chip__name { color: var(--iris-2); font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.chip.is-open .chip__desc { max-height: 200px; max-width: 62ch; opacity: 1; margin-top: 0.55rem; }

@media (prefers-reduced-motion: reduce) {
  .chip, .chip__desc { transition: none !important; }
}

/* ============================================================
   ARSENAL v3 — dépliage fluide (grid-rows, plus lent & smooth)
   ============================================================ */
.chip__reveal {
  display: grid; grid-template-rows: 0fr; max-width: 0; overflow: hidden;
  transition: grid-template-rows 0.6s cubic-bezier(0.33, 1, 0.68, 1), max-width 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.chip.is-open .chip__reveal {
  grid-template-rows: 1fr; max-width: 62ch;
  transition: grid-template-rows 0.6s cubic-bezier(0.33, 1, 0.68, 1), max-width 0.02s;
}
.chip__desc {
  min-height: 0; max-height: none; max-width: none; overflow: hidden;
  opacity: 0; padding-top: 0;
  transition: opacity 0.55s ease 0.05s;
}
.chip.is-open .chip__desc { opacity: 1; max-height: none; max-width: none; }

/* le bouton grandit plus lentement et en douceur */
.chip {
  transition: color 0.5s ease, background 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.55s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chip:not(.is-open):hover { transform: translateY(-3px) scale(1.06); }
.chip:not(.is-open):active { transform: translateY(-1px) scale(0.97); }

@media (prefers-reduced-motion: reduce) {
  .chip__reveal, .chip__desc, .chip { transition: none !important; }
}

/* ============================================================
   ARSENAL v4 — bulles centrées + dépliage lisse (pas de FLIP)
   ============================================================ */
.chip:not(.is-open) { align-items: center; text-align: center; }
.chip.is-open { align-items: flex-start; text-align: left; flex: 0 1 auto; }

/* largeur fixée aussitôt (contenu stable), seule la hauteur s'anime en douceur */
.chip__reveal { transition: grid-template-rows 0.5s cubic-bezier(0.33, 1, 0.68, 1), max-width 0.02s; }
.chip.is-open .chip__reveal { grid-template-rows: 1fr; max-width: min(90vw, 440px); transition: grid-template-rows 0.5s cubic-bezier(0.33, 1, 0.68, 1), max-width 0.02s; }

/* gap nom/desc uniquement à l ouverture (sinon hauteur residuelle -> texte non centre) */
.chip__reveal { min-height: 0; }
.chip.is-open .chip__name { margin-bottom: 0.55rem; }

/* GIF produit dans la carte hero */
.pcard__gif { height: 120px; width: auto; max-width: 100%; object-fit: contain; display: block; border-radius: 10px; }

/* video plein-cadre dans la carte produit */
.product__gif { width: 100%; height: 118px; object-fit: cover; border-radius: var(--r-md); display: block; }

/* ============================================================
   VIDÉO EN BANDEAU PLEIN LARGEUR (haut des cartes)
   ============================================================ */
/* carte hero flottante */
.pcard { display: flex; flex-direction: column; overflow: hidden; }
.pcard__art { order: -1; margin: -1.5rem -1.5rem 1.3rem; height: 158px; background: none; filter: none; border-radius: 0; padding: 0; }
.pcard__gif { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* carte produit (section "Nos clients") */
.product__art:has(.product__gif) { order: -1; margin: -2.2rem -2.2rem 1.4rem; height: 178px; background: none; filter: none; border-radius: 0; }
.product:hover .product__art:has(.product__gif) { transform: none; }
.product__gif { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

@media (max-width: 560px) {
  .product__art:has(.product__gif) { margin: -1.7rem -1.7rem 1.3rem; height: 150px; }
}

/* fix bandeau video : flux normal (sous le label), pleine largeur, pas de chevauchement */
.pcard__art { order: 0; margin: 0 -1.5rem 1.3rem; }
.product__art:has(.product__gif) { order: 0; margin: 0 -2.2rem 1.4rem; }
@media (max-width: 560px) { .product__art:has(.product__gif) { margin: 0 -1.7rem 1.3rem; } }

/* fix : la video ne doit pas deborder de son bandeau */
.pcard__art, .product__art:has(.product__gif) { overflow: hidden; }
.pcard__gif, .product__gif { display: block; }

/* ============================================================
   PANEL LICENCES
   ============================================================ */
.panel-page { padding-top: clamp(7rem, 11vw, 9.5rem); }

/* --- connexion --- */
.login-wrap { min-height: 68vh; display: grid; place-items: center; }
.login { width: min(440px, 100%); padding: 2.4rem; border-radius: var(--r-lg); text-align: center; background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01)), var(--panel-2); box-shadow: inset 0 0 0 1px var(--line), var(--card-shadow), var(--sheen); }
.login__logo { height: 42px; margin: 0 auto 1.3rem; filter: drop-shadow(0 0 12px rgba(157,91,255,0.5)); }
.login h1 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.login__sub { color: var(--fog); font-size: 0.92rem; margin-bottom: 1.9rem; }
.field { text-align: left; margin-bottom: 1rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.4rem; }
.field input { width: 100%; padding: 0.9em 1.1em; border-radius: var(--r-md); border: 0; background: rgba(255,255,255,0.03); box-shadow: inset 0 0 0 1px var(--line); color: var(--white-hot); font-family: inherit; font-size: 0.95rem; transition: box-shadow 0.25s; }
.field input:focus { outline: none; box-shadow: inset 0 0 0 1px var(--iris); }
.login .btn { width: 100%; justify-content: center; margin-top: 0.6rem; }
.login__note { font-size: 0.8rem; color: var(--mist); margin-top: 1.3rem; }
.login__note a { color: var(--iris-2); }

/* --- tableau de bord --- */
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.panel-head__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
.panel-head__title span { color: var(--iris-2); }
.panel-user { display: flex; align-items: center; gap: 0.8rem; }
.panel-user__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: "Sora", sans-serif; font-weight: 700; color: #17092e; background: linear-gradient(135deg, var(--iris-2), var(--iris)); }
.panel-user__mail { font-size: 0.9rem; color: var(--fog); }
.panel-user .link-btn { font-size: 0.85rem; }

.ptiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.6rem; }
.ptile { padding: 1.4rem 1.5rem; border-radius: var(--r-md); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)), var(--panel); box-shadow: inset 0 0 0 1px var(--line), var(--sheen); }
.ptile__num { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--white-hot); letter-spacing: -0.02em; }
.ptile__num.ok { color: #3ee6a0; }
.ptile__label { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mist); }

.panel-section-title { font-size: 1.15rem; margin-bottom: 1.1rem; color: var(--white-hot); }

.licenses { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.6rem; }
.license { padding: 1.6rem 1.8rem; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), var(--panel-2); box-shadow: inset 0 0 0 1px var(--line), var(--sheen); transition: box-shadow 0.35s; }
.license:hover { box-shadow: inset 0 0 0 1px var(--line-strong), 0 24px 50px -30px rgba(0,0,0,0.9); }
.license__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.license__icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: var(--r-sm); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); color: var(--iris-2); background: radial-gradient(circle, rgba(157,91,255,0.16), transparent 72%); }
.license__icon img { width: 26px; height: 26px; }
.license__name { font-size: 1.25rem; }
.license__game { font-size: 0.78rem; color: var(--mist); }
.license__top .status-badge { margin-left: auto; }
.license__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2rem; margin-bottom: 1.5rem; }
.pfield { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.pfield--wide { grid-column: 1 / -1; }
.pfield__label { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mist); }
.pfield__value { font-size: 0.95rem; color: var(--white-hot); font-weight: 500; }
.pfield__value.ok { color: #3ee6a0; }
.pfield__value .link-btn { margin-left: 0.6rem; }
.keyfield__row { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.keyfield__key { font-family: "Space Mono", "Space Grotesk", monospace; font-size: 0.92rem; letter-spacing: 0.04em; color: var(--iris-2); background: rgba(157,91,255,0.1); padding: 0.5em 0.8em; border-radius: var(--r-sm); box-shadow: inset 0 0 0 1px rgba(157,91,255,0.25); }
.keyfield__btn { border: 0; background: rgba(255,255,255,0.04); box-shadow: inset 0 0 0 1px var(--line); color: var(--fog); font-family: inherit; font-size: 0.8rem; padding: 0.5em 0.85em; border-radius: var(--r-sm); cursor: inherit; transition: color 0.2s, box-shadow 0.2s; }
.keyfield__btn:hover { color: var(--white-hot); box-shadow: inset 0 0 0 1px var(--iris); }
.link-btn { border: 0; background: none; color: var(--iris-2); font-family: inherit; font-size: 0.82rem; padding: 0; cursor: inherit; transition: color 0.2s; }
.link-btn:hover { color: var(--fuchsia); text-decoration: underline; }
.license__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.activate { padding: 1.6rem 1.8rem; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)), var(--panel); box-shadow: inset 0 0 0 1px var(--line); }
.activate__row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.activate__row input { flex: 1; min-width: 220px; padding: 0.85em 1.1em; border-radius: var(--r-md); border: 0; background: rgba(255,255,255,0.03); box-shadow: inset 0 0 0 1px var(--line); color: var(--white-hot); font-family: inherit; }
.activate__row input:focus { outline: none; box-shadow: inset 0 0 0 1px var(--iris); }

.panel-demo { margin-top: 2rem; font-size: 0.8rem; color: var(--mist); text-align: center; }

/* --- toast --- */
.toast { position: fixed; left: 50%; bottom: 2rem; transform: translateX(-50%) translateY(24px); background: var(--panel-2); box-shadow: inset 0 0 0 1px var(--line-strong), 0 20px 50px -18px rgba(0,0,0,0.9); color: var(--white-hot); padding: 0.85rem 1.4rem; border-radius: var(--r-pill); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.6em; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.35s var(--ease); z-index: 10001; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 760px) {
  .ptiles { grid-template-columns: 1fr 1fr; }
  .license__grid { grid-template-columns: 1fr; }
}

/* --- panel : ajouts back-end (badges, erreurs, états) --- */
/* Force l'attribut [hidden] à cacher même les éléments avec un display explicite
   (ex. .login-wrap { display:grid }), sinon loginView/adminView restent visibles. */
[hidden] { display: none !important; }
.status-badge--bad { color: #ff8a9b; background: rgba(255,138,155,0.12); box-shadow: inset 0 0 0 1px rgba(255,138,155,0.38); }
.status-badge--warn { color: var(--ember); background: rgba(245,183,64,0.12); box-shadow: inset 0 0 0 1px rgba(245,183,64,0.34); }
.pfield__value.muted { color: var(--mist); }
.pfield__value.bad { color: #ff8a9b; }
.login__err { margin-top: 0.9rem; font-size: 0.85rem; color: #ff8a9b; }
.login__note .link-btn { font-size: inherit; }
.panel-empty { color: var(--mist); font-size: 0.92rem; padding: 0.4rem 0 1.6rem; }
.ptile__num.ok { color: #3ee6a0; }
