/* ============================================================
   DA — néon minimal. Un seul accent qui rayonne, tout le reste
   au repos. Fond quasi noir, hairlines fines, aucune texture
   décorative superflue. Monde assumé sombre : couleurs posées
   une seule fois dans :root, pas de media query de thème.
   ============================================================ */

:root {
  --bg: #040404;
  --surface: #0b0b0b;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);
  --ink: #f2f1ec;
  --muted: #8c8b84;
  --muted-2: #5c5b55;
  --neon: #f4c430;
  --neon-soft: #ffe08a;
  --neon-deep: #6b4f0c;
  --ok: #6bd6a8;
  --warn: #e0705a;

  --display: "Unbounded", system-ui, sans-serif;
  --body: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --radius: 16px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-inline: clamp(18px, 6vw, 40px);
  position: relative;
  overflow-x: hidden;
}

/* Halo ambiant fixe — seule source de "décor" de toute la page */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  width: min(900px, 140vw);
  height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(244, 196, 48, 0.16), transparent 72%);
  pointer-events: none;
  z-index: 0;
  animation: breathe 7s ease-in-out infinite;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(85% 60% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(85% 60% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; text-wrap: balance; margin: 0; }
p { margin: 0; }
a { color: inherit; }
svg { display: block; }
::selection { background: var(--neon-deep); color: var(--ink); }

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

.wrap { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.num { font-variant-numeric: tabular-nums; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
}

/* ---------------- Header ---------------- */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: clamp(20px, 3.6vh, 32px);
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.top__link {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.top__link:hover { color: var(--neon-soft); }
.top__link__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 6px 1px rgba(107, 214, 168, 0.7);
}

/* ---------------- Hero ---------------- */
.hero {
  text-align: center;
  padding-block: clamp(28px, 6vh, 56px) clamp(10px, 2vh, 18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero h1 {
  font-size: clamp(32px, 7vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 13ch;
  animation: rise 0.6s 0.05s both;
}
.hero h1 .glow {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(244, 196, 48, 0.65), 0 0 46px rgba(244, 196, 48, 0.3);
}
.hero__lede {
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  animation: rise 0.6s 0.12s both;
}
.hero__lede strong { color: var(--ink); font-weight: 500; }

/* ---------------- Panneau bonus (chiffres au repos) ---------------- */
.panel {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), rgba(11,11,11,0.4));
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 40px 80px -40px rgba(244, 196, 48, 0.18);
  animation: rise 0.6s 0.18s both;
}
.panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 20px 0;
}
.panel__badge svg { width: 11px; height: 11px; fill: var(--neon); }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 8px 18px;
}
.stat {
  padding: 10px 14px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat__value {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 38px);
  color: var(--neon);
  text-shadow: 0 0 20px rgba(244, 196, 48, 0.35);
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.panel__cta {
  padding: 4px 18px 18px;
}
.panel__fine {
  padding: 0 20px 18px;
  font-size: 10.5px;
  color: var(--muted-2);
  text-align: center;
  line-height: 1.5;
}

.btn {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: #0a0700;
  background: var(--neon);
  padding: 15px 20px;
  border-radius: 11px;
  border: none;
  box-shadow: 0 0 0 1px rgba(244,196,48,0.5), 0 12px 30px -10px rgba(244, 196, 48, 0.55);
  transition: box-shadow 0.2s ease, transform 0.12s ease, filter 0.2s ease;
}
.btn:hover { box-shadow: 0 0 0 1px rgba(244,196,48,0.7), 0 0 40px rgba(244, 196, 48, 0.55); filter: brightness(1.05); }
.btn:active { transform: scale(0.98); }

.link-min {
  margin-top: 4px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--muted-2);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.link-min:hover { color: var(--neon-soft); border-color: var(--neon-deep); }

/* ---------------- Confiance (ligne minimaliste) ---------------- */
.trust {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 34px);
  flex-wrap: wrap;
  margin-top: clamp(30px, 5vh, 44px);
  padding-top: clamp(20px, 3vh, 28px);
  border-top: 1px solid var(--line);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.trust__item svg { width: 14px; height: 14px; fill: var(--ok); flex: none; }

/* ---------------- Section shell ---------------- */
.section { padding-block: clamp(40px, 7vh, 64px); }
.section__head { margin-bottom: clamp(20px, 3vh, 28px); }
.section__head h2 { font-size: clamp(20px, 2.8vw, 26px); margin-top: 8px; }

/* ---------------- FAQ ---------------- */
.faq details {
  border-top: 1px solid var(--line);
  padding-block: 16px;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ind {
  flex: none;
  position: relative;
  width: 16px; height: 16px;
}
.faq summary .ind::before,
.faq summary .ind::after {
  content: "";
  position: absolute;
  background: var(--neon);
  transition: transform 0.2s ease;
}
.faq summary .ind::before { top: 7px; left: 0; width: 16px; height: 1.5px; }
.faq summary .ind::after { top: 0; left: 7px; width: 1.5px; height: 16px; }
.faq details[open] summary .ind::after { transform: rotate(90deg); }
.faq__a { margin-top: 10px; padding-right: 26px; font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---------------- Jeu responsable ---------------- */
.warn-panel {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 17px;
  border-radius: 10px;
  border: 1px solid rgba(224, 112, 90, 0.3);
  background: rgba(224, 112, 90, 0.05);
}
.warn-panel__badge {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--warn);
  color: var(--warn);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}
.warn-panel__text { font-size: 11.5px; color: var(--muted); line-height: 1.55; }
.warn-panel__text strong { color: var(--ink); }
.warn-panel a { color: var(--neon-soft); text-decoration: none; }
.warn-panel a:hover { text-decoration: underline; }

/* ---------------- Footer ---------------- */
.foot {
  border-top: 1px solid var(--line);
  padding-block: clamp(24px, 4vh, 34px) 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.foot__socials { display: flex; gap: 10px; }
.foot__social {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2);
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
}
.foot__social svg { width: 12px; height: 12px; fill: currentColor; }
.foot__social:hover { color: var(--neon-soft); border-color: var(--neon-deep); box-shadow: 0 0 14px rgba(244,196,48,0.35); }
.foot__copy { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted-2); }

/* ---------------- Motion ---------------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--line); }
}
