/* ============================================================
   NIGHTCUBE — vitrine
   Régie de club en orbite : noir spatial, filaire néon cyan.
   ============================================================ */

:root {
  --bg: #05060a;
  --bg-2: #070910;
  --panel: rgba(255, 255, 255, 0.022);
  --panel-solid: #0a0d16;
  --line: rgba(148, 178, 214, 0.13);
  --line-soft: rgba(148, 178, 214, 0.07);
  --ink: #e8eaf2;
  --muted: #8d94ab;
  --faint: #7a8199; /* AA : 5.2:1 sur #05060a, 5.0:1 sur panneau */
  --cyan: #2be2ff;
  --cyan-deep: #0fb8d6;
  --cyan-glow: rgba(43, 226, 255, 0.55);
  --cyan-dim: rgba(43, 226, 255, 0.14);
  --violet: #7c6cff;
  --violet-dim: rgba(124, 108, 255, 0.16);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--cyan); color: #041016; }

a { color: inherit; text-decoration: none; }

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

/* ---------- atmosphère globale ---------- */

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 640px at 78% -8%, rgba(43, 226, 255, 0.05), transparent 62%),
    radial-gradient(900px 560px at 8% 108%, rgba(124, 108, 255, 0.045), transparent 60%);
}

main { position: relative; z-index: 1; }

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(560px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- connexion / mon espace ---------- */

.auth-card {
  text-align: center;
  padding: 56px 40px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.auth-logo { display: block; margin: 0 auto 24px; filter: drop-shadow(0 0 14px rgba(43, 226, 255, 0.35)); }

.auth-card h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.auth-card .lead { margin-inline: auto; margin-bottom: 32px; }

.auth-discord { width: 100%; justify-content: center; }

.auth-error {
  color: var(--violet);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.auth-note {
  color: var(--faint);
  font-size: 0.8rem;
  margin-top: 20px;
}

/* ---------- mon espace : layout sidebar ---------- */

/* Sur les dashboards, la nav fixe reçoit un fond + une bordure permanents
   (séparation nette avec le contenu, sans attendre le scroll), et s'étend sur
   toute la largeur : le logo vient s'aligner au-dessus de la colonne du menu,
   comme sur la console KingShot. */
body.dash .nav {
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

body.dash .nav-inner {
  width: 100%;
  padding-inline: 24px;
}

.dash-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  padding-top: var(--nav-h); /* la nav est fixed : le layout démarre dessous */
  min-height: 100vh;
}

.dash-side {
  background: var(--bg-2);
  border-right: 1px solid var(--line-soft);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
}

.dash-brand {
  padding: 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.dash-brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 4px;
}

.dash-nav { display: flex; flex-direction: column; gap: 4px; }

/* Intitulés de catégorie : nettement plus discrets que les pages
   (icônes sur les liens + séparateur + teinte très atténuée) */
.dash-nav-cat {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(122, 129, 153, 0.55);
  margin: 20px 12px 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.dash-nav-cat:first-of-type { margin-top: 12px; }

.dash-nav a .nico {
  display: inline-flex;
  color: var(--faint);
  flex-shrink: 0;
  transition: color 0.2s;
}

.dash-nav a .nico svg { width: 16px; height: 16px; display: block; }

.dash-nav a:hover .nico,
.dash-nav a.on .nico { color: var(--cyan); }

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.dash-nav a:hover { background: rgba(255, 255, 255, 0.03); color: var(--ink); }

.dash-nav a.on {
  background: var(--cyan-dim);
  color: var(--ink);
  border-color: rgba(43, 226, 255, 0.35);
  box-shadow: 0 0 16px rgba(43, 226, 255, 0.1);
}

.dash-side-foot {
  margin-top: auto;
  padding: 0 10px;
}

.dash-side-foot a {
  font-size: 0.82rem;
  color: var(--faint);
  transition: color 0.2s;
}

.dash-side-foot a:hover { color: var(--cyan); }

.dash-main {
  padding: 56px 48px 96px;
  min-width: 0;
  width: 100%;
  max-width: 1100px;   /* contenu centré dans la colonne, pas collé à gauche */
  margin-inline: auto;
}

.dash-main .section-head { margin-bottom: 40px; }

/* Titres plus mesurés qu'en vitrine : c'est un outil, pas un hero. */
.dash-main .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* ---------- admin : cartes stats ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  padding: 22px 24px;
}

.card-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}

.card-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ink);
}

/* ---------- admin : staff, formulaires, tableaux ---------- */

.flash {
  padding: 12px 18px;
  margin-bottom: 28px;
  border: 1px solid;
  font-size: 0.9rem;
}

.flash.ok { color: var(--cyan); border-color: rgba(43, 226, 255, 0.4); background: var(--cyan-dim); }
.flash.err { color: var(--violet); border-color: rgba(124, 108, 255, 0.4); background: var(--violet-dim); }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 0.92rem;
}

.admin-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.admin-table td:first-child, .admin-table th:first-child { color: var(--ink); }

.admin-table .role-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  border: 1px solid rgba(43, 226, 255, 0.35);
  color: var(--cyan);
}

.admin-table .role-tag.owner { border-color: rgba(124, 108, 255, 0.4); color: var(--violet); }

.admin-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  margin-bottom: 40px;
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--faint);
}

.admin-form input, .admin-form select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  padding: 0.6em 0.8em;
  font: inherit;
  font-size: 0.9rem;
  min-width: 180px;
}

.admin-form input:focus-visible, .admin-form select:focus-visible {
  outline: none;
  border-color: var(--cyan);
}

.admin-form button {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75em 1.6em;
  background: var(--cyan);
  color: #03151b;
  border: none;
  cursor: pointer;
}

.btn-remove {
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  background: none;
  border: 1px solid var(--line-soft);
  padding: 0.4em 0.9em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-remove:hover { color: var(--violet); border-color: rgba(124, 108, 255, 0.4); }

.admin-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  padding: 0.6em 0.8em;
  font: inherit;
  font-size: 0.9rem;
  min-width: 260px;
  resize: vertical;
}

.admin-form textarea:focus-visible { outline: none; border-color: var(--cyan); }

.admin-form input[type="file"] {
  min-width: 220px;
  padding: 0;
  border: none;
  background: none;
  color: var(--faint);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  height: 38px;
}

.admin-form input[type="file"]::file-selector-button {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7em 1em;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.admin-form input[type="file"]::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan);
}

.admin-form .checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.stripe-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--faint);
}

.stripe-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); }
.stripe-status.on { color: var(--cyan); }
.stripe-status.on .dot { background: var(--cyan); box-shadow: 0 0 8px var(--cyan-glow); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.offer-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}

.offer-card .offer-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--bg-2);
}

.offer-card .offer-body { padding: 16px 18px; }

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}

.offer-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
  max-width: none;
}

.offer-card .offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-card .offer-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.offer-card.inactive { opacity: 0.5; }

/* ---------- admin : visiteurs ---------- */

.trend-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 140px;
  margin-bottom: 8px;
  padding-top: 10px;
}

.trend-bar {
  flex: 1;
  min-width: 8px;
  background: var(--cyan-dim);
  border-top: 2px solid var(--cyan);
  position: relative;
}

.trend-labels {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}

.trend-labels span {
  flex: 1;
  min-width: 8px;
  text-align: center;
  font-size: 0.62rem;
  color: var(--faint);
}

.online-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--muted);
}

.online-row .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
  flex-shrink: 0;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.quick-links .btn { font-size: 0.68rem; padding: 0.8em 1.4em; }

/* ---------- admin : modales de création/édition ---------- */

dialog.modal {
  background: var(--panel-solid);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  padding: 0;
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100vh - 80px);
  margin: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(43, 226, 255, 0.06);
}

dialog.modal::backdrop {
  background: rgba(3, 4, 8, 0.72);
  backdrop-filter: blur(4px);
}

dialog.modal[open] { animation: modalIn 0.28s var(--ease-out); }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
}

.modal-head h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-close {
  background: none;
  border: none;
  color: var(--faint);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s, transform 0.25s var(--ease-out);
}

.modal-close:hover { color: var(--cyan); transform: rotate(90deg); }

.modal-body { padding: 22px; overflow-y: auto; max-height: calc(100vh - 180px); }

.modal-form { display: flex; flex-direction: column; gap: 16px; }

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--faint);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  padding: 0.65em 0.85em;
  font: inherit;
  font-size: 0.9rem;
  width: 100%;
  resize: vertical;
}

.modal-form input:focus-visible,
.modal-form select:focus-visible,
.modal-form textarea:focus-visible { outline: none; border-color: var(--cyan); }

.modal-form input[type="file"] {
  padding: 0;
  border: none;
  background: none;
  color: var(--faint);
  font-size: 0.8rem;
}

.modal-form input[type="file"]::file-selector-button {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7em 1em;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border: 1px solid var(--line-soft);
  cursor: pointer;
}

.modal-form input[type="color"] { padding: 3px; height: 42px; cursor: pointer; }

.modal-form .checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.modal-form .checkbox-field input { width: auto; }

/* Champs compacts côte à côte (X/Y/Z, taille/portée...) */
.modal-form .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
}

.modal-form fieldset {
  border: 1px solid var(--line-soft);
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.modal-form fieldset legend { padding: 0 8px; color: var(--faint); font-size: 0.78rem; }

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

.modal-actions button[type="submit"] {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8em 1.8em;
  background: var(--cyan);
  color: #03151b;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.modal-actions button[type="submit"]:hover {
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-1px);
}

/* En-tête de section : titre + bouton d'action à droite */
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.panel-head h3 { margin: 0; }

.btn-sm { font-size: 0.64rem; padding: 0.75em 1.4em; }

/* ---------- admin : monitoring ---------- */

.gauge {
  margin-bottom: 22px;
}

.gauge-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.gauge-label strong { color: var(--ink); font-weight: 500; }

.gauge-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
  transition: width 0.4s var(--ease-out);
}

.gauge-fill.warn { background: var(--violet); box-shadow: 0 0 10px rgba(124, 108, 255, 0.4); }

/* Joueurs actuellement en ligne (monitoring) */
.player-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-chip {
  padding: 5px 12px;
  font-size: 0.8rem;
  color: var(--ink);
  border: 1px solid rgba(77, 232, 255, 0.25);
  background: rgba(77, 232, 255, 0.06);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-side {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    padding: 18px 20px;
  }
  .dash-brand { display: none; }
  .dash-nav { flex-direction: row; flex-wrap: wrap; }
  .dash-side-foot { margin: 0 0 0 auto; padding: 0; }
  .dash-main { padding: 40px 24px 72px; }
}

/* ---------- typo utilitaires ---------- */

.overline {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cyan);
}

.overline .dot { color: var(--faint); padding-inline: 0.55em; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 56px;
}

.section-head .num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--faint);
  white-space: nowrap;
}

.section-head .num b {
  color: var(--cyan);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 22px var(--cyan-glow);
}

.lead {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.05rem;
}

.lead b { color: var(--ink); font-weight: 500; }

/* ---------- boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.35s var(--ease-out), background 0.35s, color 0.35s,
    border-color 0.35s, transform 0.35s var(--ease-out);
}

.btn-primary {
  background: var(--cyan);
  color: #03151b;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #6fefff;
  box-shadow: 0 0 34px var(--cyan-glow), 0 0 90px rgba(43, 226, 255, 0.25);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border-color: rgba(43, 226, 255, 0.4);
  color: var(--cyan);
  background: transparent;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--cyan);
  background: var(--cyan-dim);
  box-shadow: 0 0 24px rgba(43, 226, 255, 0.22), inset 0 0 24px rgba(43, 226, 255, 0.06);
  transform: translateY(-2px);
}

.btn-ghost:active { transform: translateY(0); }

.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}

.nav.scrolled {
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Desktop : 3 zones — logo à gauche, liens VRAIMENT centrés, actions à droite. */
@media (min-width: 821px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
  }
  .nav-inner > .brand { justify-self: start; }
  .nav-inner > nav { justify-self: center; }
  .nav-inner > .nav-actions { justify-self: end; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.brand canvas { display: block; }

.brand-logo {
  display: block;
  filter: drop-shadow(0 0 10px rgba(43, 226, 255, 0.35));
}

.brand .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  color: var(--ink);
}

.brand .wordmark span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

/* Apparition en cascade au chargement */
.nav-links li { animation: rise 0.55s var(--ease-out) both; }
.nav-links li:nth-child(1) { animation-delay: 0.05s; }
.nav-links li:nth-child(2) { animation-delay: 0.12s; }
.nav-links li:nth-child(3) { animation-delay: 0.19s; }
.nav-links li:nth-child(4) { animation-delay: 0.26s; }

/* Vrais boutons : chip avec icône, halo néon au survol */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s, background 0.25s,
    transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.nav-links a .nico {
  display: inline-flex;
  color: var(--faint);
  transition: color 0.25s, transform 0.3s var(--ease-out);
}

.nav-links a .nico svg { width: 15px; height: 15px; display: block; }

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: rgba(43, 226, 255, 0.35);
  background: var(--cyan-dim);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(43, 226, 255, 0.14);
}

.nav-links a:hover .nico,
.nav-links a:focus-visible .nico {
  color: var(--cyan);
  transform: scale(1.18);
}

/* Page courante (ex. Launcher sur /launcher) */
.nav-links a[aria-current="page"] {
  color: var(--cyan);
  border-color: rgba(43, 226, 255, 0.35);
  background: var(--cyan-dim);
}

.nav-links a[aria-current="page"] .nico { color: var(--cyan); }

.nav .btn-login {
  padding: 0.7em 1.6em;
  font-size: 0.68rem;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  border: 1px solid rgba(124, 108, 255, 0.4);
  background: var(--violet-dim);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.admin-btn:hover {
  border-color: var(--violet);
  box-shadow: 0 0 14px rgba(124, 108, 255, 0.25);
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}

.nav-burger span,
.nav-burger::before,
.nav-burger::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--cyan);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* ---------- sélecteur de langue ---------- */

.dropdown { position: relative; }

.dropdown > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, color 0.25s;
}

.dropdown > summary::-webkit-details-marker { display: none; }
.dropdown > summary::marker { content: ""; }
.dropdown > summary:hover,
.dropdown[open] > summary { border-color: var(--cyan); color: var(--ink); }

.dropdown .caret { color: var(--faint); font-size: 0.6rem; transition: transform 0.2s; }
.dropdown[open] .caret { transform: rotate(180deg); }

.lang-label { text-transform: uppercase; }

.flag-svg {
  display: inline-flex;
  width: 20px;
  height: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.flag-svg svg { width: 100%; height: 100%; display: block; }

.dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  z-index: 60;
  background: var(--panel-solid);
  border: 1px solid var(--line-soft);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-height: 60vh;
  overflow-y: auto;
}

.dd-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.dd-menu a:hover { background: rgba(43, 226, 255, 0.06); color: var(--ink); }
.dd-menu a.active { color: var(--cyan); }

.dd-form { margin: 0; border-top: 1px solid var(--line-soft); margin-top: 4px; padding-top: 4px; }

.dd-menu .dd-form button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.dd-menu .dd-form button:hover { background: rgba(43, 226, 255, 0.06); color: var(--ink); }

.user-dd > summary { padding: 4px 10px 4px 4px; }

.nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 1px var(--line-soft);
}

.uname {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .user-dd .uname { display: none; }
}

.nav-burger::before { top: 15px; }
.nav-burger span { top: 21px; }
.nav-burger::after { top: 27px; }

body.menu-open .nav-burger::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-burger span { opacity: 0; }
body.menu-open .nav-burger::after { transform: translateY(-6px) rotate(-45deg); }

/* menu mobile plein écran */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5, 6, 10, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24vh 10vw;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

body.menu-open .mobile-menu { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding-block: 10px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s, color 0.25s;
}

.mobile-menu a:hover { color: var(--cyan); }

.mobile-menu a { display: flex; align-items: center; gap: 16px; }

.mobile-menu .nico { display: inline-flex; color: var(--cyan); }
.mobile-menu .nico svg { width: 22px; height: 22px; display: block; }

body.menu-open .mobile-menu a {
  transform: translateY(0);
  opacity: 1;
}

body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.1s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.2s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.25s; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero::after {
  /* vignette pour asseoir le texte */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 52%, rgba(5, 6, 10, 0.55), transparent 70%),
    linear-gradient(to bottom, rgba(5, 6, 10, 0.5), transparent 22%, transparent 72%, var(--bg) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 24px;
  max-width: 1100px;
}

.hero .overline {
  display: inline-block;
  animation: rise 1s var(--ease-out) 0.15s both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 11vw, 8.2rem);
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  margin-block: 20px 26px;
  color: var(--ink);
  text-shadow:
    0 0 18px rgba(43, 226, 255, 0.35),
    0 0 60px rgba(43, 226, 255, 0.28),
    0 0 140px rgba(43, 226, 255, 0.2);
  animation: rise 1.1s var(--ease-out) 0.3s both;
}

.hero-title .cube-char { color: var(--cyan); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  letter-spacing: 0.04em;
  animation: rise 1.1s var(--ease-out) 0.5s both;
}

.hero-tagline strong { color: var(--ink); font-weight: 500; }

.hero-ctas {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: rise 1.1s var(--ease-out) 0.68s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  animation: rise 1s var(--ease-out) 1.1s both;
}

.scroll-hint .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  overflow: hidden;
  position: relative;
}

.scroll-hint .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #bff4ff);
  animation: scrolldrop 2.2s ease-in-out infinite;
}

@keyframes scrolldrop {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* ---------- sections ---------- */

section { position: relative; }

.section-pad { padding-block: 130px; }

/* fine ligne de séparation façon truss */
.rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 18%, var(--line) 82%, transparent);
  position: relative;
}

.rule::before,
.rule::after {
  content: "";
  position: absolute;
  top: -2.5px;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
  transform: rotate(45deg);
}

.rule::before { left: 18%; }
.rule::after { right: 18%; }

/* ---------- concept ---------- */

.concept-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.concept-card {
  position: relative;
  grid-column: span 6;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  padding: 34px 34px 38px;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out),
    background 0.4s;
}

/* décrochage de grille : rythme asymétrique */
.concept-card:nth-child(1) { grid-column: 1 / span 7; }
.concept-card:nth-child(2) { grid-column: 8 / span 5; margin-top: 56px; }
.concept-card:nth-child(3) { grid-column: 1 / span 5; align-self: start; }
.concept-card:nth-child(4) { grid-column: 6 / span 7; margin-top: 56px; }

.concept-card:hover {
  border-color: rgba(43, 226, 255, 0.45);
  background: rgba(43, 226, 255, 0.03);
  box-shadow: 0 0 40px rgba(43, 226, 255, 0.09), inset 0 0 60px rgba(43, 226, 255, 0.03);
  transform: translateY(-4px);
}

/* coins « repères de scène » */
.concept-card::before,
.concept-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(43, 226, 255, 0.55);
  transition: opacity 0.4s;
  opacity: 0.5;
}

.concept-card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.concept-card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.concept-card:hover::before,
.concept-card:hover::after { opacity: 1; }

.concept-card .mini-wire {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  display: block;
}

.concept-card .tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}

.concept-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.concept-card p {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 46ch;
}

.concept-card p b { color: var(--ink); font-weight: 500; }

/* ---------- soirées ---------- */

.events-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 34px;
}

.events-note .pulse {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--cyan-glow);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.events-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-block: 48px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.events-empty .pulse {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--cyan-glow);
  animation: pulse 2.4s ease-in-out infinite;
}

.events-empty p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
  margin: 0;
}

.event-row {
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding-block: 34px;
  border-top: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.35s, padding-left 0.35s var(--ease-out);
}

.event-row:last-of-type { border-bottom: 1px solid var(--line-soft); }

.event-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 0;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
  transition: width 0.5s var(--ease-out);
}

.event-row:hover { background: rgba(43, 226, 255, 0.025); padding-left: 14px; }
.event-row:hover::before { width: 100%; }

.event-date {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}

.event-date b {
  display: block;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
}

.event-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.event-dj {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
  margin-top: 6px;
}

.event-dj::before {
  content: "⌁ ";
  color: var(--cyan);
}

.badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.75em 1.4em;
  border: 1px solid;
  white-space: nowrap;
}

.badge-open {
  color: var(--cyan);
  border-color: rgba(43, 226, 255, 0.5);
  background: var(--cyan-dim);
  box-shadow: 0 0 16px rgba(43, 226, 255, 0.12);
}

.badge-full {
  color: var(--violet);
  border-color: rgba(124, 108, 255, 0.5);
  background: var(--violet-dim);
}

.event-arrow {
  font-size: 1.3rem;
  color: var(--faint);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}

.event-row:hover .event-arrow {
  color: var(--cyan);
  transform: translateX(6px);
}

/* ---------- bandeau launcher ---------- */

.launcher-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(700px 320px at 85% 50%, rgba(43, 226, 255, 0.07), transparent 70%),
    var(--bg-2);
}

/* grille perspective façon dancefloor */
.launcher-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to right, rgba(43, 226, 255, 0.05) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(to bottom, rgba(43, 226, 255, 0.05) 0 1px, transparent 1px 90px);
  mask-image: radial-gradient(70% 90% at 70% 50%, black, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 90% at 70% 50%, black, transparent 78%);
  pointer-events: none;
}

.launcher-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
  padding-block: 96px;
}

.launcher-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1.15;
  margin-block: 14px 18px;
}

.launcher-band h2 em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
}

.launcher-points {
  list-style: none;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.launcher-points li { display: flex; gap: 14px; align-items: flex-start; }

.launcher-points .tick {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.35em;
}

.launcher-points b {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}

.launcher-points .pt-desc {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.launcher-cta-zone {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.launcher-cta-zone .ver {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- contact ---------- */

.contact { text-align: center; }

.contact .section-title { margin-block: 18px 22px; }

.contact .lead { margin-inline: auto; }

.contact-ctas {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-canvas {
  width: 150px;
  height: 150px;
  margin-inline: auto;
  display: block;
  margin-bottom: 8px;
}

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line-soft);
  padding-block: 44px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer .brand { margin-right: 0; }

.footer-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin-right: auto;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--cyan); }

.footer .colophon {
  font-size: 0.78rem;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-align: right;
}

.footer .colophon b { color: var(--muted); font-weight: 500; }

/* ---------- reveals au scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Page launcher
   ============================================================ */

.sub-hero {
  position: relative;
  min-height: 68svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: var(--nav-h);
}

.sub-hero .hero-canvas { position: absolute; inset: 0; }

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 55%, rgba(5, 6, 10, 0.5), transparent 72%),
    linear-gradient(to bottom, rgba(5, 6, 10, 0.55), transparent 25%, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

.sub-hero .hero-content { max-width: 900px; }

.sub-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-block: 20px 24px;
  text-shadow:
    0 0 18px rgba(43, 226, 255, 0.3),
    0 0 70px rgba(43, 226, 255, 0.22);
  animation: rise 1.1s var(--ease-out) 0.3s both;
}

.sub-hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.sub-hero .hero-tagline { animation-delay: 0.45s; }
.sub-hero .hero-ctas { animation-delay: 0.6s; margin-top: 36px; }

.dl-meta {
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
  animation: rise 1.1s var(--ease-out) 0.75s both;
}

/* étapes */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  padding: 38px 32px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.step:hover {
  border-color: rgba(43, 226, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 34px rgba(43, 226, 255, 0.08);
}

.step .step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(43, 226, 255, 0.65);
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.step p { color: var(--muted); font-size: 0.94rem; }

.step .connector {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 22px;
  height: 1px;
  background: linear-gradient(to right, rgba(43, 226, 255, 0.5), transparent);
}

.step:last-child .connector { display: none; }

/* config requise */
.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.spec {
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--cyan);
  background: var(--panel);
  padding: 26px 28px;
}

.spec .spec-k {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}

.spec .spec-v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.spec .spec-note { color: var(--muted); font-size: 0.85rem; margin-top: 6px; }

/* FAQ */
.faq { max-width: 780px; }

.faq details {
  border-top: 1px solid var(--line-soft);
}

.faq details:last-child { border-bottom: 1px solid var(--line-soft); }

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: color 0.25s;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary:hover { color: var(--cyan); }

.faq summary .plus {
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}

.faq details[open] summary .plus { transform: rotate(45deg); }

.faq .faq-body {
  color: var(--muted);
  padding-bottom: 26px;
  max-width: 62ch;
}

.faq .faq-body b { color: var(--ink); font-weight: 500; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .concept-card:nth-child(n) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .launcher-band .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 72px;
  }

  .steps, .specs { grid-template-columns: 1fr; }

  .step .connector { display: none; }

  .event-row {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding-block: 26px;
  }

  .event-date { grid-column: 1 / -1; display: flex; gap: 14px; align-items: baseline; }
  .event-date b { display: inline; }
  .event-arrow { display: none; }
}

@media (max-width: 820px) {
  .nav-links, .nav .btn-login { display: none; }
  .nav-burger { display: block; }
  .lang-dd .lang-label { display: none; }
  .dropdown > summary { padding: 0 9px; }

  .section-pad { padding-block: 84px; }

  .section-head {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
  }
}

@media (min-width: 821px) {
  .mobile-menu { display: none; }
}

/* ---------- accessibilité mouvement ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
