/* ============================================================
   jam. — jamapp.fr
   Feuille de style unique du site (aucune dépendance).
   Palette : ardoise + bleu jam (#38B6FF), police Plus Jakarta Sans.
   ============================================================ */

:root {
  --bg: #0B0E10;
  --bg2: #0E1113;
  --panel: #13171B;
  --panel2: #191E23;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #F2F5F7;
  --muted: #96A1A9;
  --faint: #6B767E;
  --accent: #38B6FF;
  --accent-soft: rgba(56, 182, 255, 0.14);
  --accent-2: #7CD1FF;
  --star: #FFC94A;
  --radius: 20px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }

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

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
::selection { background: rgba(56, 182, 255, 0.32); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 14, 16, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.scrolled {
  background: rgba(11, 14, 16, 0.78);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header .inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.brand .dot, .dot { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--text); }
.site-nav a.cta {
  color: #04141F;
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 18px rgba(56, 182, 255, 0.25);
}
.site-nav a.cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(56, 182, 255, 0.4);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 40px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 8%; right: -12%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.13) 0%, transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -14%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(56, 182, 255, 0.22);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 182, 255, 0.5); }
  55% { box-shadow: 0 0 0 7px rgba(56, 182, 255, 0); }
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 22px 0 20px;
}
.hero h1 .grad {
  background: linear-gradient(92deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 34px;
}
.hero .sub strong { color: var(--text); font-weight: 700; }

.badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.badges a {
  display: inline-block;
  border-radius: 12px;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.badges a:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08); }
.badges img { height: 54px; width: auto; }
.badges.big img { height: 62px; }

.hero .note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--faint);
}
.hero .note b { color: var(--muted); font-weight: 600; }

/* — entrée de page (hero uniquement) — */
.anim { opacity: 0; transform: translateY(22px); animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.38s; }
.d5 { animation-delay: 0.5s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* — colonne téléphone du hero — */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: heroPhone 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes heroPhone {
  from { opacity: 0; transform: translateY(46px) rotate(2deg); }
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.hero-media .phone { animation: floatY 7s ease-in-out 1.6s infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* cartes flottantes autour du téléphone */
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(24, 29, 34, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: cardIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards, floatY 6s ease-in-out infinite;
}
.float-card small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }
.fc-1 { top: 12%; left: -4%; animation-delay: 0.9s, 2s; }
.fc-2 { top: 46%; right: -6%; animation-delay: 1.15s, 3.2s; }
.fc-3 { bottom: 9%; left: 0%; animation-delay: 1.4s, 4.1s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.float-card .fc-icon {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.float-card .fc-icon svg { width: 17px; height: 17px; }
.float-card .fc-img {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.float-card .fc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* petit égaliseur animé */
.eq { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.eq i {
  width: 3.5px;
  border-radius: 2px;
  background: var(--accent);
  animation: eq 1.1s ease-in-out infinite;
}
.eq i:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.eq i:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.eq i:nth-child(4) { height: 100%; animation-delay: 0.45s; }
.eq i:nth-child(5) { height: 65%; animation-delay: 0.6s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}

/* ============================================================
   TÉLÉPHONE (maquette CSS — profils fictifs, vraies pochettes)
   ============================================================ */

.phone {
  width: 300px;
  flex: none;
}
.phone-frame {
  position: relative;
  background: #05070a;
  border: 1px solid #2a3138;
  border-radius: 46px;
  padding: 9px;
  box-shadow: inset 0 0 0 2px #10151a, inset 0 0 0 3.5px #3a424b, 0 40px 80px rgba(0, 0, 0, 0.55);
}
.phone-frame::before {
  /* Dynamic island */
  content: "";
  position: absolute;
  top: 19px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 22px;
  background: #05070a;
  border-radius: 999px;
  z-index: 20;
}
.phone-screen {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  background: var(--bg2);
  aspect-ratio: 9 / 19.2;
  isolation: isolate;
}

/* ---------- structure commune des écrans de l'app ---------- */
.app {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  font-size: 11.5px;
  line-height: 1.4;
}
.app-top {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px 10px;
  background: rgba(14, 17, 19, 0.9);
  border-bottom: 1px solid var(--line-soft);
  z-index: 5;
}
.app-logo { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; }
.app-title { font-size: 14px; font-weight: 800; letter-spacing: -0.02em; }
.app-top .side { display: flex; gap: 12px; color: #E8EDF0; }
.app-top .side svg { width: 16px; height: 16px; }
.app-body { flex: 1; overflow: hidden; position: relative; }

.app-tabbar {
  flex: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 9px 6px 22px;
  background: rgba(10, 12, 14, 0.96);
  border-top: 1px solid var(--line-soft);
  z-index: 5;
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  font-weight: 600;
  color: #8B959C;
}
.tab svg { width: 17px; height: 17px; }
.tab.on { color: var(--accent); }

/* avatars : photos fictives (jamais de vrai utilisateur) */
.avatar {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.avatar.sm { width: 22px; height: 22px; font-size: 9px; }
.av-1 { background: linear-gradient(135deg, #38B6FF, #1E6FA8); }
.av-2 { background: linear-gradient(135deg, #FF8A5C, #C2492B); }
.av-3 { background: linear-gradient(135deg, #4ADE80, #15803D); }
.av-4 { background: linear-gradient(135deg, #F472B6, #9D2463); }
.av-5 { background: linear-gradient(135deg, #A78BFA, #5B3FA8); }
.av-6 { background: linear-gradient(135deg, #FACC15, #B45309); }

/* pochettes : vraies covers (fallback dégradé si l'image ne charge pas) */
.cover {
  display: block;
  width: 52px; height: 52px;
  flex: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #1E262C, #10151A);
}
.cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover.lg { width: 64px; height: 64px; }
.cover.round { border-radius: 50%; }

/* étoiles de notation */
.stars { color: var(--star); font-size: 11px; letter-spacing: 1.5px; }
.stars .off { color: #3A434B; }

/* ---------- écran : FIL ---------- */
.feed-track { padding: 4px 0 10px; }
.phone-screen .autoscroll .feed-track {
  animation: feedScroll 26s linear 2.5s infinite;
}
@keyframes feedScroll {
  0% { transform: translateY(0); }
  46% { transform: translateY(-46%); }
  54% { transform: translateY(-46%); }
  100% { transform: translateY(0); }
}
.post {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.post-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.post-head b { font-size: 11.5px; }
.post-head .handle { color: var(--faint); font-size: 10px; }
.post-album {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 7px;
}
.post-album .meta b { display: block; font-size: 11.5px; letter-spacing: -0.01em; }
.post-album .meta span { color: var(--muted); font-size: 10px; }
.post-text { font-size: 10.5px; color: #C7CFD4; margin-bottom: 8px; }
.post-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #7E8890;
  font-size: 9.5px;
  font-weight: 600;
}
.post-actions span { display: inline-flex; align-items: center; gap: 4px; }
.post-actions svg { width: 13px; height: 13px; }
.post-actions .hot { color: var(--accent); }
.fab {
  position: absolute;
  right: 14px; bottom: 74px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #04141F;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(56, 182, 255, 0.45);
  z-index: 6;
}

/* ---------- écran : JEUX (fidèle à l'app) ---------- */
.blind-hero {
  margin: 10px 12px 10px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 12px 14px;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blind-bg { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.blind-bg img { width: 100%; height: 100%; object-fit: cover; }
.blind-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 12, 14, 0.2), rgba(10, 12, 14, 0.94) 78%); }
.blind-cover {
  position: absolute;
  top: 12px; right: 16px;
  width: 62px; height: 62px;
  border-radius: 14px;
  border: 2.5px solid var(--accent);
  overflow: hidden;
  transform: rotate(7deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.blind-cover img { width: 100%; height: 100%; object-fit: cover; filter: blur(5px) saturate(1.2); transform: scale(1.15); }
.blind-hero .tag { position: relative; font-size: 8.5px; font-weight: 800; color: #C9D1D6; letter-spacing: 0.14em; text-transform: uppercase; }
.blind-hero h4 { position: relative; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin: 1px 0 2px; }
.blind-row { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.blind-row p { font-size: 9.5px; color: var(--muted); max-width: 62%; }
.pill-btn {
  background: var(--accent);
  color: #04141F;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  flex: none;
}
.btn-row { display: flex; gap: 8px; margin: 0 12px 8px; }
.btn-dark, .btn-blue {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 10.5px;
}
.btn-dark { background: var(--panel2); color: var(--text); }
.btn-blue { background: var(--accent); color: #04141F; }
.btn-dark svg, .btn-blue svg, .btn-outline svg { width: 13px; height: 13px; flex: none; }
.settings-line { margin: 0 14px 12px; font-size: 8.5px; color: var(--faint); }
.sec-label {
  margin: 4px 14px 8px;
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}
.arcade-row { display: flex; gap: 10px; padding: 0 12px; overflow: hidden; }
.acard { flex: none; width: 106px; }
.acard .body {
  background: #101317;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 11px 10px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.acard .cover { width: 56px; height: 56px; border-radius: 10px; }
.pix img { image-rendering: pixelated; }
.pix .lens {
  position: absolute;
  width: 44%; height: 44%;
  top: 24%; left: 30%;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  z-index: 2;
}
.progress { width: 100%; margin-top: 11px; }
.progress .bar {
  height: 3.5px;
  border-radius: 3px;
  background: #2A3138;
  position: relative;
}
.progress .bar::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 18%;
  border-radius: 3px;
  background: var(--accent);
}
.progress .bar::after {
  content: "";
  position: absolute;
  left: 16%; top: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}
.progress .times { display: flex; justify-content: space-between; font-size: 8px; font-weight: 700; color: var(--muted); margin-top: 5px; }
.acard > b { display: block; margin-top: 9px; font-size: 11px; letter-spacing: -0.01em; }
.acard .sub { display: flex; align-items: center; gap: 5px; font-size: 8.5px; color: var(--muted); }
.dotc { width: 5px; height: 5px; border-radius: 50%; flex: none; }
.dc-v { background: #A78BFA; }
.dc-o { background: #FF8A5C; }
.dc-g { background: #4ADE80; }

/* giveaway (bandeau en bas de l'écran Jeux, comme dans l'app) */
.giveaway {
  margin: 10px 12px 0;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  height: 84px;
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
}
.giveaway .ga-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.giveaway .ga-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 12, 14, 0.05), rgba(10, 12, 14, 0.9) 80%); }
.giveaway .ga-chip {
  position: absolute;
  top: 8px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent);
  color: #04141F;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.giveaway .ga-chip svg { width: 9px; height: 9px; }
.giveaway .ga-meta { position: relative; }
.giveaway .ga-meta b { display: block; font-size: 11px; letter-spacing: -0.01em; }
.giveaway .ga-meta span { font-size: 8.5px; color: #C9D1D6; }

/* ---------- écran : VINYLES ---------- */
.vinyl-stats {
  display: flex;
  gap: 8px;
  margin: 10px 12px;
}
.vinyl-stats .vs {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 8px 10px;
  text-align: center;
}
.vinyl-stats b { display: block; font-size: 13px; font-weight: 800; }
.vinyl-stats span { font-size: 8px; color: var(--faint); }
.vinyl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
  padding: 2px 14px 12px;
}
.vinyl { min-width: 0; }
.vinyl .sleeve { position: relative; width: 82%; aspect-ratio: 1; }
.vinyl .disc {
  position: absolute;
  top: 5%; left: 30%;
  width: 90%; height: 90%;
  border-radius: 50%;
  background:
    radial-gradient(circle, #4A4A4A 0 12%, #1A1A1A 13% 20%, #2E2E2E 21% 24%, #181818 25% 34%, #2A2A2A 35% 38%, #171717 39% 52%, #292929 53% 56%, #1B1B1B 57% 92%, #333 93% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 6px 2px 12px rgba(0, 0, 0, 0.6);
}
.vinyl .sleeve .cover { width: 100%; height: 100%; border-radius: 5px; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45); }
.vinyl b { display: block; margin-top: 7px; font-size: 10.5px; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vinyl span { font-size: 8.5px; color: var(--muted); }

/* ---------- écran : COMMUNAUTÉS (fidèle à l'app) ---------- */
.searchbar {
  margin: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 10.5px;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 7px;
}
.searchbar svg { width: 12px; height: 12px; flex: none; }
.commu-actions { display: flex; gap: 8px; margin: 0 12px 12px; }
.btn-outline {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.45);
  color: var(--accent);
  font-weight: 800;
  font-size: 10.5px;
  flex: none;
}
.btn-outline svg { width: 12px; height: 12px; }
.commu-card {
  margin: 0 12px 9px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  padding: 13px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.commu-card .cc-ic {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  background: rgba(56, 182, 255, 0.16);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.commu-card .cc-ic svg { width: 17px; height: 17px; }
.commu-card .meta { min-width: 0; flex: 1; }
.commu-card b { display: flex; align-items: center; gap: 5px; font-size: 12px; letter-spacing: -0.01em; }
.commu-card span.sub { display: block; font-size: 9.5px; color: var(--muted); }
.commu-card .go { color: var(--faint); font-size: 15px; flex: none; }
.stack3 { display: flex; flex: none; }
.stack3 .cover { width: 27px; height: 27px; border-radius: 9px; border: 2px solid var(--bg2); margin-right: -9px; }
.stack3 .cover:last-child { margin-right: 0; }
.check {
  width: 14px; height: 14px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #04141F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check svg { width: 8px; height: 8px; }
.pin-zone {
  margin: 4px 12px;
  border: 1.5px dashed #333B42;
  border-radius: 15px;
  padding: 20px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 9.5px;
}
.pin-zone svg { width: 14px; height: 14px; margin: 0 auto 6px; color: var(--faint); }

/* ---------- écran : PROFIL (fidèle à l'app) ---------- */
.profil-cover {
  height: 74px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(120deg, #16324a, #0E1113 70%);
}
.profil-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.6) saturate(1.3);
  transform: scale(1.5);
}
.profil-avatar {
  width: 62px; height: 62px;
  margin: -31px auto 6px;
  border-radius: 50%;
  border: 3px solid var(--bg2);
  position: relative;
  overflow: hidden;
  z-index: 2;
  background: var(--panel2);
}
.profil-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.profil-id { text-align: center; }
.profil-id b { font-size: 14.5px; font-weight: 800; }
.profil-id .at { display: block; font-size: 9.5px; color: var(--faint); }
.profil-id .bio { display: block; font-size: 9.5px; color: var(--muted); margin-top: 2px; }
.hl-row { display: flex; justify-content: center; gap: 13px; margin: 11px 0 4px; }
.hl { width: 52px; text-align: center; }
.hl .ring {
  display: block;
  width: 50px; height: 50px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid #2A3138;
  background: var(--panel2);
}
.hl .ring img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hl .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  z-index: 2;
}
.hl .play svg { width: 14px; height: 14px; }
.hl i {
  font-style: normal;
  display: block;
  margin-top: 4px;
  font-size: 7.5px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profil-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 8px 0;
  text-align: center;
}
.profil-stats b { display: block; font-size: 13.5px; font-weight: 800; line-height: 1.2; }
.profil-stats span { font-size: 8.5px; color: var(--faint); }
.pactions { display: flex; justify-content: center; align-items: center; gap: 9px; margin-bottom: 8px; }
.pbtn-ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--panel2);
  color: #C9D1D6;
  display: flex; align-items: center; justify-content: center;
}
.pbtn-ic svg { width: 14px; height: 14px; }
.pbtn-follow {
  height: 32px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--panel2);
  color: var(--text);
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
}
.suivi-par {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 6px;
}
.suivi-par .mini { display: flex; }
.suivi-par .avatar.sm { width: 16px; height: 16px; border: 1.5px solid var(--bg2); margin-right: -5px; }
.suivi-par b { color: #C9D1D6; }
.ptabs {
  display: flex;
  background: var(--panel);
  border-radius: 999px;
  margin: 4px 14px 12px;
  padding: 3px;
}
.ptabs span {
  flex: 1;
  text-align: center;
  font-size: 9.5px;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 999px;
  color: var(--muted);
}
.ptabs .on { background: #2A3138; color: #fff; }
.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
}
.podium .step { text-align: center; flex: 1; max-width: 70px; }
.podium .step em {
  font-style: normal;
  display: block;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #D4DBE0;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.podium .step .cover { margin: 0 auto 6px; width: 44px; height: 44px; }
.podium .p1 .cover { width: 54px; height: 54px; box-shadow: 0 0 0 2.5px var(--accent); }
.podium .step .base {
  border-radius: 8px 8px 0 0;
  background: var(--panel2);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.podium .p1 .base { height: 40px; background: var(--accent); color: #04141F; }
.podium .p2 .base { height: 27px; }
.podium .p3 .base { height: 19px; }
.map-label {
  margin: 12px 16px 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.map-teaser {
  margin: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  padding: 10px 12px;
  font-size: 10.5px;
  font-weight: 700;
}
.map-teaser svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.map-teaser small { display: block; font-size: 8.5px; font-weight: 500; color: var(--faint); }
.map-teaser .go { margin-left: auto; color: var(--faint); font-size: 14px; }

/* ---------- écran : CARTE (vraies tuiles OSM/CARTO) ---------- */
.map-zone { position: absolute; inset: 0; background: #0D1114; overflow: hidden; }
.map-tiles {
  position: absolute;
  left: -243px; top: -160px;
  width: 768px; height: 768px;
  display: grid;
  grid-template-columns: repeat(3, 256px);
  grid-auto-rows: 256px;
}
.map-tiles img { width: 256px; height: 256px; }
.map-pin {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
  border: 2.5px solid #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
  z-index: 3;
  background: var(--panel2);
}
.map-pin img { width: 100%; height: 100%; object-fit: cover; transform: rotate(45deg) scale(1.45); }
.map-pin.mini {
  width: 15px; height: 15px;
  border-radius: 50%;
  transform: none;
  border-width: 2px;
  background: var(--accent);
}
.map-attrib {
  position: absolute;
  right: 8px; bottom: 66px;
  font-size: 6.5px;
  color: #7E8890;
  z-index: 5;
  background: rgba(13, 17, 20, 0.6);
  padding: 1px 5px;
  border-radius: 4px;
}
.map-sheet {
  position: absolute;
  left: 10px; right: 10px; bottom: 74px;
  background: rgba(19, 23, 27, 0.97);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
}
.map-sheet .meta b { display: block; font-size: 11px; }
.map-sheet .meta span { font-size: 9px; color: var(--faint); }
.chip {
  margin-left: auto;
  flex: none;
  font-size: 8.5px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(56, 182, 255, 0.3);
  padding: 4px 9px;
  border-radius: 999px;
}
.map-search {
  position: absolute;
  top: 78px; left: 12px; right: 12px;
  background: rgba(19, 23, 27, 0.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 4;
}
.map-search svg { width: 12px; height: 12px; }

/* ============================================================
   BANDE ARTISTES (vraies photos, défilement)
   ============================================================ */

.artists-strip {
  position: relative;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  overflow: hidden;
}
.artists-strip::before, .artists-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.artists-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.artists-strip::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.artists-strip .track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.achip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}
.achip .ph {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel2);
}
.achip .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SHOWCASE (téléphone sticky + fonctionnalités)
   ============================================================ */

.showcase { padding: 110px 0 40px; }
.showcase-wrap {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.showcase-head {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 30px;
  text-align: center;
}
.showcase-head h2, .section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-top: 18px;
}
.showcase-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

.feature-block {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.feature-block h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 16px 0 14px;
}
.feature-block h3 .hl { color: var(--accent); }
.feature-block p.desc { color: var(--muted); font-size: 16.5px; max-width: 460px; }
.feature-block ul.mini {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-block ul.mini li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #C9D1D6;
}
.feature-block ul.mini svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.feature-block .inline-phone {
  margin: 34px auto 0;
  display: none; /* affiché seulement en mobile / sans sticky */
}

.showcase-sticky {
  position: sticky;
  top: calc(50vh - 330px);
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.showcase-sticky .phone { width: 308px; }
.showcase-sticky .phone-screen .app {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.showcase-sticky .phone-screen .app.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* fallback : pas de JS → téléphone dans chaque bloc */
.no-sticky .showcase-sticky { display: none; }
.no-sticky .feature-block .inline-phone { display: block; }

/* ============================================================
   SECTIONS GÉNÉRIQUES / FEATURES GRID
   ============================================================ */

.section { padding: 90px 0; }
.section .wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 16.5px; margin-top: 14px; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 182, 255, 0.3);
  background: var(--panel2);
}
.feature .icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 21px; height: 21px; stroke: currentColor; }
.feature h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 7px; }
.feature p { font-size: 14px; color: var(--muted); }

/* ============================================================
   HISTOIRE
   ============================================================ */

.story { padding: 90px 0; }
.story .inner {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  background: linear-gradient(160deg, var(--panel) 0%, #101519 100%);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.story .inner::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.12), transparent 65%);
}
.story h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -0.025em; margin: 16px 0 18px; }
.story p { color: var(--muted); font-size: 16.5px; margin-bottom: 14px; max-width: 640px; }
.story p strong { color: var(--text); }
.story .sign { margin-top: 26px; font-weight: 800; font-size: 19px; color: var(--text); }

/* ============================================================
   BANDE CTA FINALE
   ============================================================ */

.cta-band { padding: 40px 0 110px; }
.cta-band .box {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(680px 320px at 50% -60px, rgba(56, 182, 255, 0.16), transparent 70%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(48px, 7vw, 88px) 24px 64px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 18px auto 14px;
  max-width: 620px;
}
.cta-band p { color: var(--muted); font-size: 17px; margin-bottom: 34px; }
.cta-band .badges { justify-content: center; }
.cta-covers {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
.cta-covers .cover {
  width: 58px; height: 58px;
  border-radius: 12px;
  border: 2px solid #10151A;
  margin: 0 -8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}
.cta-covers .cover:nth-child(odd) { transform: rotate(-5deg) translateY(4px); }
.cta-covers .cover:nth-child(even) { transform: rotate(4deg); }
.cta-covers .cover:hover { transform: translateY(-6px) rotate(0deg); z-index: 2; }

/* ============================================================
   FOOTER  (⚠️ jamais de nom personnel ici)
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 54px 0 40px;
  background: #090B0D;
}
.site-footer .inner { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.site-footer .cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.site-footer .brand { font-size: 30px; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  max-width: 560px;
}
.site-footer nav a { color: var(--muted); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.site-footer nav a:hover { color: var(--text); }
.legal-line {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  color: var(--faint);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.legal-line a { color: var(--muted); }

/* performance : les zones animées hors écran sont mises en pause par site.js */
.anim-paused, .anim-paused * { animation-play-state: paused !important; }

/* révélation au scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--rd, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGES LÉGALES / SUPPORT / 404
   ============================================================ */

body.legal main {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 60px) 0 90px;
}
body.legal h1 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
body.legal .updated { color: var(--faint); font-size: 14px; margin: 12px 0 26px; }
body.legal .intro { font-size: 17px; color: #C9D1D6; margin-bottom: 34px; }
body.legal h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 40px 0 12px; }
body.legal h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
body.legal p, body.legal li { color: var(--muted); font-size: 15.5px; }
body.legal p { margin-bottom: 12px; }
body.legal ul, body.legal ol { margin: 0 0 14px 22px; }
body.legal li { margin-bottom: 7px; }
body.legal strong { color: var(--text); }

.fiche {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 8px 22px;
  margin: 16px 0 18px;
}
.fiche dl { display: grid; grid-template-columns: 220px 1fr; }
.fiche dt, .fiche dd { padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.fiche dt { color: var(--faint); font-weight: 600; padding-right: 14px; }
.fiche dd { color: var(--text); }
.fiche dt:last-of-type, .fiche dd:last-of-type { border-bottom: none; }

.callout {
  background: var(--accent-soft);
  border: 1px solid rgba(56, 182, 255, 0.25);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 18px 0;
}
.callout p, .callout li { color: #CFE9FA; }
.callout p:last-child { margin-bottom: 0; }

.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  background: var(--panel2);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 2px 8px;
  color: var(--accent-2);
}

.table-wrap { overflow-x: auto; margin: 16px 0; border: 1px solid var(--line-soft); border-radius: 14px; }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--panel); }
.table-wrap th, .table-wrap td { text-align: left; padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.table-wrap th { color: var(--text); font-weight: 700; background: var(--panel2); }
.table-wrap tr:last-child td { border-bottom: none; }

.contact-btn {
  display: inline-block;
  background: var(--accent);
  color: #04141F;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 999px;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 22px rgba(56, 182, 255, 0.3);
}
.contact-btn:hover { background: var(--accent-2); transform: translateY(-2px); }

/* 404 */
.err { text-align: center; padding-top: 30px; }
.err h1 { font-size: clamp(60px, 12vw, 120px) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1023px) {
  .hero { min-height: 0; padding-bottom: 20px; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 56px; }
  .hero .copy { display: flex; flex-direction: column; align-items: center; }
  .hero .sub { max-width: 560px; }
  .badges { justify-content: center; }
  .float-card { display: none; }

  /* showcase : texte + téléphone empilés, pas de sticky */
  .showcase-wrap { grid-template-columns: 1fr; gap: 0; }
  .showcase-sticky { display: none; }
  .feature-block { min-height: 0; padding: 44px 0; text-align: center; align-items: center; }
  .feature-block p.desc { margin: 0 auto; }
  .feature-block ul.mini { align-items: center; }
  .feature-block .inline-phone { display: block; }

  .features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header .inner { width: calc(100% - 36px); }
  .hide-mobile { display: none; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero .wrap, .section .wrap, .showcase-wrap, .cta-band .box, .site-footer .inner { width: calc(100% - 36px); }
  .badges { gap: 10px; }
  .badges img { height: 46px; }
  .badges.big img { height: 52px; }
  .phone { width: 272px; }
  .showcase { padding-top: 70px; }
  .section { padding: 64px 0; }
  .features { grid-template-columns: 1fr; }
  .achip { font-size: 14px; }
  .cta-covers .cover { width: 46px; height: 46px; }
  .fiche dl { grid-template-columns: 1fr; }
  .fiche dt { padding-bottom: 0; border-bottom: none; }
  .fiche dd { padding-top: 3px; }
  .legal-line { justify-content: center; text-align: center; }
  .site-footer .cols { flex-direction: column; align-items: center; text-align: center; }
  .site-footer nav { justify-content: center; }
}

/* ============================================================
   ACCESSIBILITÉ — mouvement réduit
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim, .hero-media, .float-card { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-media .phone, .artists-strip .track, .eq i,
  .phone-screen .autoscroll .feed-track, .eyebrow .pulse { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .showcase-sticky .phone-screen .app { transition: opacity 0.2s linear; transform: none; }
}
