/* =========================================================
   SWINK — base : polices, tokens, reset, utilitaires
   ========================================================= */
@font-face { font-family: "Mona Sans"; src: url("/fonts/MonaSans-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Mona Sans"; src: url("/fonts/MonaSans-Medium.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Mona Sans"; src: url("/fonts/MonaSans-SemiBold.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Mona Expanded"; src: url("/fonts/MonaSansExpanded-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Mona Expanded"; src: url("/fonts/MonaSansExpanded-Black.woff2") format("woff2"); font-weight: 900; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("/fonts/JetBrainsMono-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("/fonts/JetBrainsMono-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Departure Mono"; src: url("/fonts/DepartureMono-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }

:root {
  --bg: #05060a;
  --bg-2: #090b11;
  --panel: #0c0f16;
  --panel-2: #121622;
  --panel-3: #181d2b;
  --line: rgba(150, 180, 255, .09);
  --line-2: rgba(150, 180, 255, .17);
  --text: #eef3ff;
  --dim: #97a0b6;
  --faint: #5d6579;
  --ice: #9fd6ff;
  --blue: #3d8bff;
  --blue-2: #1d5cff;
  --blue-soft: rgba(61, 139, 255, .14);
  --coral: #ff7f7f;
  --coral-soft: rgba(255, 127, 127, .14);
  --ok: #7cf0b8;

  --f-display: "Mona Expanded", "Mona Sans", system-ui, sans-serif;
  --f-body: "Mona Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --f-pixel: "Departure Mono", "JetBrains Mono", ui-monospace, monospace;

  --wrap: 1240px;
  --gutter: clamp(16px, 3.4vw, 36px);
  --r-xl: clamp(20px, 2.4vw, 30px);
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-in-out: cubic-bezier(.76, 0, .24, 1);
  --player-h: 0px;
  --level: 0;          /* niveau audio 0→1, mis à jour en JS */
  --mx: 50%;           /* position de la souris (spot) */
  --my: 30%;
  color-scheme: dark;
}
body.has-player { --player-h: 76px; }

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: clip;
  padding-bottom: calc(var(--player-h) + env(safe-area-inset-bottom));
}
body::before { /* halo de fond */
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60vw 50vh at 85% -10%, rgba(61, 139, 255, .10), transparent 70%),
    radial-gradient(50vw 40vh at 0% 110%, rgba(61, 139, 255, .06), transparent 70%);
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: fixed; top: 10px; left: 10px; z-index: 200; padding: 10px 16px; border-radius: 999px; background: var(--text); color: var(--bg); transform: translateY(-160%); transition: transform .2s; }
.skip:focus { transform: none; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.mono { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; }
.pixel { font-family: var(--f-pixel); letter-spacing: .04em; }
.muted { color: var(--dim); }
.display { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; letter-spacing: -.035em; line-height: .9; }
.h2 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; letter-spacing: -.03em; line-height: .95; font-size: clamp(34px, 5.4vw, 68px); }
.h3 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; }
.accent { color: var(--ice); text-shadow: 0 0 40px rgba(61, 139, 255, .55), 0 0 2px rgba(159, 214, 255, .5); }
.star { flex: none; color: var(--ice); display: inline-block; vertical-align: -1px; }
.ico { flex: none; }

.kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--ice); margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 12px; color: var(--dim); background: rgba(255, 255, 255, .02); }
.chip b { color: var(--text); font-weight: 700; }
.tag { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 4px 10px; font-size: 10.5px; }
.tag--new { background: var(--blue); color: #fff; }
.tag--sold { background: var(--coral-soft); color: var(--coral); }
mark.todo { background: var(--coral-soft); color: var(--coral); padding: 0 6px; border-radius: 6px; }

.onair-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); display: inline-block; flex: none; transition: background .3s, box-shadow .3s; }
body.is-playing .onair-dot { background: var(--coral); box-shadow: 0 0 0 0 rgba(255, 127, 127, .6); animation: onair 1.6s infinite; }
@keyframes onair { 0% { box-shadow: 0 0 0 0 rgba(255, 127, 127, .55); } 70% { box-shadow: 0 0 0 8px rgba(255, 127, 127, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 127, 127, 0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   Layout : header (pilule flottante), footer, panneaux, boutons
   ========================================================= */
.site-header { position: fixed; top: 14px; left: 0; right: 0; z-index: 60; display: flex; justify-content: center; pointer-events: none; padding-inline: 12px; }
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 6px 6px 12px;
  border-radius: 999px;
  background: rgba(10, 12, 19, .72);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: transform .45s var(--ease), background .3s;
}
.site-header.is-hidden .nav { transform: translateY(-140%); }
.brand { display: flex; align-items: center; gap: 8px; padding: 4px 10px 4px 2px; }
.brand__glyph { width: 26px; height: auto; filter: drop-shadow(0 0 calc(4px + var(--level) * 14px) rgba(90, 170, 255, .7)); transform: rotate(calc(var(--level) * 12deg)) scale(calc(1 + var(--level) * .15)); transition: transform .08s linear; }
.brand__word { font-family: var(--f-display); font-weight: 900; font-size: 15px; letter-spacing: -.02em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; padding-inline: 6px; border-left: 1px solid var(--line); }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--dim);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav-link[aria-current="page"] { color: var(--text); background: var(--blue-soft); box-shadow: inset 0 0 0 1px rgba(61, 139, 255, .35); }
.nav-tools { display: flex; align-items: center; gap: 4px; padding-left: 6px; border-left: 1px solid var(--line); }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-grid; place-items: center; color: var(--dim);
  transition: color .2s, background .2s, transform .2s;
}
.icon-btn:hover { color: var(--text); background: rgba(255, 255, 255, .07); }
.icon-btn[aria-pressed="true"] { color: var(--ice); }
.nav-burger { display: none; }

.lang-switch { display: flex; padding: 3px; border-radius: 999px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); }
.lang-opt { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; color: var(--faint); transition: color .2s, background .2s; }
.lang-opt .flag { width: 18px; height: auto; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .15); filter: grayscale(.9) brightness(.8); transition: filter .2s; }
.lang-opt:hover { color: var(--text); }
.lang-opt:hover .flag, .lang-opt.is-active .flag { filter: none; }
.lang-opt.is-active { color: var(--text); background: rgba(255, 255, 255, .09); }

.mobile-menu {
  pointer-events: auto;
  position: fixed; inset: 0; z-index: -1;
  background: rgba(5, 6, 10, .96); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
  padding: 90px var(--gutter) 40px;
}
.mobile-menu ul { display: grid; gap: 4px; }
.mobile-menu a { display: flex; align-items: baseline; gap: 14px; font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 11vw, 56px); letter-spacing: -.03em; line-height: 1.05; opacity: 0; transform: translateY(18px); animation: menu-in .5s var(--ease) forwards; animation-delay: calc(var(--i) * 45ms); }
.mobile-menu a .mono { color: var(--blue); font-size: 12px; }
.mobile-menu a[aria-current="page"] { color: var(--ice); }
.mobile-menu__lang .lang-switch { width: max-content; }
@keyframes menu-in { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-grid; }
  .nav { width: 100%; justify-content: space-between; }
  .nav-tools .lang-switch { display: none; }
}

/* ---------- sections & panneaux ---------- */
main { display: block; outline: none; }
.section { padding-block: clamp(48px, 7vw, 96px) 0; }
.section--tight { padding-top: 28px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head .kicker { margin-bottom: 10px; }
.section-lede { color: var(--dim); max-width: 60ch; margin: -12px 0 24px; }
.panel {
  position: relative;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--dim); padding: 8px 0; transition: color .2s, gap .2s; white-space: nowrap; }
.link-arrow:hover { color: var(--text); gap: 12px; }

.page-head { padding-top: clamp(120px, 16vw, 170px); }
.page-title { font-size: clamp(56px, 12vw, 160px); margin-bottom: 18px; }
.page-lede { color: var(--dim); font-size: clamp(16px, 1.5vw, 19px); max-width: 58ch; }

/* ---------- boutons ---------- */
.btn {
  --bg-btn: var(--blue);
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(180deg, #5ea0ff, var(--blue-2));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(160, 200, 255, .35) inset, 0 10px 30px rgba(29, 92, 255, .35), 0 0 calc(10px + var(--level) * 40px) rgba(61, 139, 255, calc(.25 + var(--level) * .4));
}
.btn--primary::after { /* reflet chromé qui passe */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:hover { box-shadow: 0 0 0 1px rgba(200, 225, 255, .6) inset, 0 14px 40px rgba(29, 92, 255, .55); }
.btn--ghost { color: var(--text); border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); }
.btn--ghost:hover { border-color: var(--ice); background: rgba(159, 214, 255, .08); }
.btn--sm { height: 36px; padding: 0 14px; font-size: 11px; gap: 7px; }
.btn--lg { height: 58px; padding: 0 28px; font-size: 13px; }
.btn__price { padding-left: 12px; margin-left: 2px; border-left: 1px solid rgba(255, 255, 255, .35); }
.btn__dot { margin-right: -2px; }
.btn:active { transform: scale(.97); }

/* Gumroad injecte ses propres styles sur .gumroad-button : on garde les nôtres */
.btn.gumroad-button { font-family: var(--f-mono) !important; font-weight: 700 !important; line-height: 1 !important; border-radius: 999px !important; text-decoration: none !important; }
.btn--primary.gumroad-button { background: linear-gradient(180deg, #5ea0ff, var(--blue-2)) !important; color: #fff !important; border: 0 !important; }
.btn--ghost.gumroad-button { background: rgba(255, 255, 255, .03) !important; color: var(--text) !important; border: 1px solid var(--line-2) !important; box-shadow: none !important; }
.gumroad-button .gumroad-button-logo, .gumroad-button-logo { display: none !important; }

/* ---------- footer ---------- */
.site-footer { margin-top: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(61, 139, 255, .04)); overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-block: 56px 20px; }
.foot-logo { width: 190px; margin: -18px 0 6px -14px; }
.foot-brand p { color: var(--dim); max-width: 28ch; }
.foot-col__title { color: var(--faint); margin-bottom: 14px; }
.foot-col ul { display: grid; gap: 8px; }
.foot-col a { color: var(--dim); transition: color .2s; font-size: 15px; word-break: break-word; }
.foot-col a:hover { color: var(--text); }
.foot-giant {
  font-family: var(--f-display); font-weight: 900; line-height: .75; letter-spacing: -.06em;
  font-size: clamp(90px, 27vw, 420px); text-align: center; user-select: none;
  color: transparent; -webkit-text-stroke: 1px rgba(159, 214, 255, .22);
  background: radial-gradient(40% 80% at var(--fx, 50%) 60%, rgba(159, 214, 255, .5), transparent 60%);
  -webkit-background-clip: text; background-clip: text;
  margin: 10px 0 -2%;
}
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 18px 28px; color: var(--faint); border-top: 1px solid var(--line); }
.foot-bottom span { display: inline-flex; align-items: center; gap: 8px; }
.foot-bottom a:hover { color: var(--text); }
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

/* =========================================================
   Accueil : hero, marquee, dernier drop, radio, artiste, FAQ
   ========================================================= */
.hero { padding: 84px 12px 0; }
.hero__panel {
  position: relative; overflow: hidden; isolation: isolate;
  width: min(100%, 1400px); margin-inline: auto;
  min-height: min(92vh, 880px);
  border-radius: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line-2);
  background: radial-gradient(120% 80% at 50% 0%, #0e1422 0%, #070910 60%, #05060a 100%);
  display: flex; flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 40px 120px rgba(0, 0, 0, .5);
}
.hero__pattern {
  position: absolute; inset: -20%; z-index: -3;
  background: url("/img/brand/pattern-1000.webp") 0 0 / 520px repeat;
  opacity: .16; filter: saturate(1.1);
  animation: drift 60s linear infinite;
  -webkit-mask-image: radial-gradient(60% 55% at var(--mx) var(--my), #000 0%, rgba(0, 0, 0, .35) 45%, transparent 80%);
          mask-image: radial-gradient(60% 55% at var(--mx) var(--my), #000 0%, rgba(0, 0, 0, .35) 45%, transparent 80%);
}
@keyframes drift { to { background-position: 520px -520px; } }
.hero__spot {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(61, 139, 255, calc(.22 + var(--level) * .35)), transparent 65%);
  transition: background .1s;
}
.hero__sparks { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
.hero__float { position: absolute; z-index: -1; pointer-events: none; opacity: .5; filter: blur(1px) drop-shadow(0 0 30px rgba(61, 139, 255, .4)); will-change: transform; }
.hero__float--a { width: clamp(90px, 12vw, 170px); top: 16%; left: 6%; transform: rotate(-24deg); animation: bob 7s ease-in-out infinite; }
.hero__float--b { width: clamp(70px, 9vw, 130px); bottom: 18%; right: 7%; transform: rotate(28deg) scaleX(-1); animation: bob 9s ease-in-out -3s infinite; filter: blur(2.5px) drop-shadow(0 0 30px rgba(61, 139, 255, .4)); opacity: .35; }
@keyframes bob { 50% { translate: 0 -18px; } }

.hero__inner { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: clamp(40px, 6vw, 70px) var(--gutter) 30px; }
.hero__eyebrow { color: var(--dim); }
.hero__logo { position: relative; width: min(640px, 86vw); margin: -10px 0 -6px; transform-style: preserve-3d; perspective: 900px; }
.hero__logo img {
  width: 100%; height: auto; position: relative; z-index: 1;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(calc(1 + var(--level) * .045));
  transition: transform .18s var(--ease);
  filter: drop-shadow(0 18px 40px rgba(29, 92, 255, .35)) drop-shadow(0 0 calc(var(--level) * 30px) rgba(159, 214, 255, .6));
  animation: logo-in 1.4s var(--ease) both;
}
.hero__logo-glow { position: absolute; inset: 18% 10%; z-index: 0; border-radius: 50%; background: radial-gradient(closest-side, rgba(61, 139, 255, .45), transparent); filter: blur(30px); opacity: calc(.55 + var(--level) * .45); }
@keyframes logo-in { from { opacity: 0; transform: translateY(24px) scale(.92); filter: blur(12px); } }
.hero__title { font-size: clamp(38px, 7.6vw, 108px); max-width: 14ch; margin-top: 6px; }
.hero__title span { display: inline-block; }
.hero__lede { color: var(--dim); max-width: 46ch; margin: 18px auto 0; font-size: clamp(15px, 1.4vw, 18px); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; justify-content: center; }
.hero__strip {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px clamp(18px, 3vw, 32px);
  border-top: 1px solid var(--line); color: var(--dim);
  background: rgba(5, 6, 10, .35);
}
.hero__strip li { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 640px) { .hero__strip { justify-content: center; } .hero__panel { min-height: auto; } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); margin-top: 22px; padding: 14px 0; color: var(--dim); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 42px; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee--big { margin-top: 70px; padding: 18px 0; }
.marquee--big .marquee__track { font-family: var(--f-display); font-weight: 900; font-size: clamp(40px, 7vw, 96px); letter-spacing: -.03em; gap: 50px; animation-duration: 60s; color: var(--text); }
.marquee--big .marquee__track span .star { width: .45em; height: .45em; }
.marquee--big .outline { color: transparent; -webkit-text-stroke: 1px var(--dim); }

/* ---------- dernier drop ---------- */
.drop { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); padding: clamp(18px, 3vw, 36px); overflow: hidden; }
.drop::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 0% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%); pointer-events: none; border-radius: inherit; }
.drop__media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 60px color-mix(in srgb, var(--accent) 25%, transparent); transform-style: preserve-3d; }
.drop__media img { width: 100%; height: 100%; object-fit: cover; }
.drop__info { position: relative; display: flex; flex-direction: column; min-width: 0; }
.drop__title { font-size: clamp(48px, 7vw, 96px); margin: 6px 0 4px; }
.drop__sub { color: var(--dim); font-size: 18px; }
.drop__price { font-family: var(--f-display); font-weight: 900; font-size: clamp(34px, 4vw, 48px); letter-spacing: -.03em; margin: 16px 0 10px; text-transform: none; }
.drop__text { color: var(--dim); max-width: 52ch; margin-bottom: 18px; }
.drop__info .chips { margin-bottom: 18px; }
.drop__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.drop__note { color: var(--faint); margin-top: 14px; }
@media (max-width: 860px) { .drop { grid-template-columns: minmax(0, 1fr); } .drop__media { max-width: 460px; } }

/* ---------- radio teaser ---------- */
.radio-teaser { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 56px); padding: clamp(22px, 3.4vw, 44px); align-items: center; overflow: hidden; }
.radio-teaser .display { font-size: clamp(48px, 7vw, 92px); margin-bottom: 14px; }
.radio-teaser p { color: var(--dim); max-width: 42ch; margin-bottom: 24px; }
.radio-teaser .kicker { color: var(--coral); }
@media (max-width: 860px) { .radio-teaser { grid-template-columns: minmax(0, 1fr); } }

/* ---------- beats (liste) ---------- */
.beats { padding: 6px clamp(10px, 2vw, 22px); }
.beat {
  display: grid; grid-template-columns: 40px minmax(0, 1fr) 90px 120px auto; align-items: center; gap: 14px;
  padding: 12px 6px; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.beat:last-child { border-bottom: 0; }
.beat:hover { background: rgba(255, 255, 255, .025); }
.beat__dot { width: 40px; display: grid; place-items: center; }
.beat__dot .star { width: 10px; color: var(--faint); transition: color .2s, transform .4s; }
.beat:hover .beat__dot .star { color: var(--ice); transform: rotate(90deg) scale(1.3); }
.beat__title { font-family: var(--f-display); font-weight: 700; font-size: clamp(16px, 1.8vw, 20px); text-transform: lowercase; letter-spacing: -.01em; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.beat__pack { color: var(--faint); font-size: 10.5px; }
.beat__bpm { font-size: 14px; color: var(--text); text-align: right; }
.beat__bpm small { font-size: 9px; color: var(--faint); }
.beat__preview { color: var(--faint); font-size: 10px; text-align: right; }
.beat.is-sold { opacity: .45; }
.beat.is-sold .beat__title { text-decoration: line-through; }
@media (max-width: 720px) {
  .beat { grid-template-columns: 32px minmax(0, 1fr) auto; }
  .beat__preview { display: none; }
  .beat__action { grid-column: 2 / -1; }
  .beat__bpm { text-align: left; }
}

/* ---------- artiste ---------- */
.artist-teaser { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(20px, 4vw, 56px); padding: clamp(22px, 3.4vw, 44px); align-items: center; overflow: hidden; }
.artist-teaser__art { position: relative; display: grid; place-items: center; min-height: 340px; }
.artist-teaser__ring { position: absolute; width: min(90%, 380px); aspect-ratio: 1; border-radius: 50%; border: 1px dashed var(--line-2); animation: spin 40s linear infinite; }
.artist-teaser__ring::after { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--ice); box-shadow: 0 0 16px var(--ice); }
@keyframes spin { to { transform: rotate(360deg); } }
.float-glyph { width: min(78%, 340px); position: relative; z-index: 1; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 20px 50px rgba(29, 92, 255, .45)) drop-shadow(0 0 calc(var(--level) * 40px) rgba(159, 214, 255, .8)); transform: scale(calc(1 + var(--level) * .08)) rotate(calc(var(--level) * -6deg)); transition: transform .08s linear; }
@keyframes float { 50% { translate: 0 -16px; } }
.artist-teaser .display { font-size: clamp(56px, 8vw, 110px); margin-bottom: 16px; }
.artist-teaser .lead { color: var(--dim); margin-bottom: 20px; max-width: 48ch; }
.artist-teaser .chips { margin-bottom: 26px; }
@media (max-width: 860px) { .artist-teaser { grid-template-columns: minmax(0, 1fr); } .artist-teaser__art { min-height: 260px; } }

/* ---------- FAQ ---------- */
.faq { padding: 6px clamp(14px, 2.4vw, 28px); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 0; }
.faq__item summary { list-style: none; display: grid; grid-template-columns: 40px 1fr 32px; align-items: center; gap: 12px; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: clamp(15px, 1.4vw, 18px); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .mono { color: var(--faint); }
.faq__plus { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); transition: transform .3s var(--ease), background .2s; }
.faq__item[open] .faq__plus { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); }
.faq__item p { color: var(--dim); padding: 0 44px 22px 52px; max-width: 75ch; animation: fade-down .35s var(--ease); }
@keyframes fade-down { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- newsletter ---------- */
.stay { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: end; padding: clamp(24px, 4vw, 52px); overflow: hidden; }
.stay::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: url("/img/brand/glyph-256.webp") center / contain no-repeat; opacity: .08; transform: rotate(20deg); pointer-events: none; }
.stay__title { font-size: clamp(38px, 5.6vw, 76px); }
.stay__side p { color: var(--dim); margin-bottom: 18px; }
@media (max-width: 760px) { .stay { grid-template-columns: 1fr; } }

/* =========================================================
   Shop : cartes produit, filtres, fiche produit, prods
   ========================================================= */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: clamp(14px, 2vw, 24px); }
.card { position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg); background: var(--panel); border: 1px solid var(--line); overflow: hidden; transition: border-color .3s, transform .4s var(--ease), box-shadow .4s; }
.card:hover { border-color: color-mix(in srgb, var(--accent, #7cc4ff) 45%, transparent); box-shadow: 0 30px 70px rgba(0, 0, 0, .45), 0 0 50px color-mix(in srgb, var(--accent, #7cc4ff) 14%, transparent); }
.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--panel-2); transform-style: preserve-3d; }
.card__link { display: block; height: 100%; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.card:hover .card__media img { transform: scale(1.05); }
.card__glare { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(300px circle at var(--gx, 50%) var(--gy, 0%), rgba(255, 255, 255, .22), transparent 55%); opacity: 0; transition: opacity .3s; mix-blend-mode: overlay; }
[data-tilt]:hover .card__glare { opacity: 1; }
.badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 5px 10px; border-radius: 999px; background: var(--blue); color: #fff; font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 6px 18px rgba(29, 92, 255, .4); }
.badge--coral { background: var(--coral); color: #1a0606; box-shadow: 0 6px 18px rgba(255, 127, 127, .35); }
.card__play { position: absolute; left: 12px; bottom: 12px; z-index: 2; opacity: 0; transform: translateY(8px) scale(.9); transition: opacity .3s, transform .3s var(--ease); }
.card:hover .card__play, .card__play.is-current, .card:focus-within .card__play { opacity: 1; transform: none; }
@media (hover: none) { .card__play { opacity: 1; transform: none; } }
.card__body { display: flex; flex-direction: column; gap: 6px; padding: 16px 16px 16px; flex: 1; }
.card__meta { color: var(--faint); font-size: 10.5px; }
.card__meta span { color: var(--blue); }
.card__title { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; font-size: 22px; line-height: 1; }
.card__title a:hover { color: var(--ice); }
.card__sub { color: var(--dim); font-size: 14px; }
.card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-size: 15px; color: var(--text); letter-spacing: .02em; }
.card--soon .card__media--soon { display: grid; place-items: center; background: radial-gradient(80% 60% at 50% 40%, rgba(255, 127, 127, .16), transparent), var(--panel-2); }
.card--soon .card__media--soon img { width: 78%; height: auto; object-fit: contain; filter: drop-shadow(0 16px 40px rgba(255, 90, 90, .35)); animation: float 7s ease-in-out infinite; }
.card--soon:hover { border-color: rgba(255, 127, 127, .4); }

/* play button */
.play-btn {
  --s: 46px;
  position: relative; width: var(--s); height: var(--s); border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  background: rgba(8, 10, 16, .72); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.play-btn:hover { transform: scale(1.08); box-shadow: inset 0 0 0 1px var(--ice), 0 0 24px rgba(61, 139, 255, .5); }
.play-btn--sm { --s: 36px; background: var(--panel-3); }
.play-btn .ico-pause, .play-btn .eq { display: none; }
.play-btn.is-current { background: var(--blue); box-shadow: 0 0 0 4px rgba(61, 139, 255, .2), 0 0 calc(10px + var(--level) * 30px) rgba(61, 139, 255, .7); }
.play-btn.is-current.is-playing .ico-play { display: none; }
.play-btn.is-current.is-playing .eq { display: flex; }
.play-btn.is-current.is-playing:hover .eq { display: none; }
.play-btn.is-current.is-playing:hover .ico-pause { display: block; }
.play-btn.is-current:not(.is-playing) .ico-play { display: block; }
.eq { gap: 2px; align-items: flex-end; height: 14px; }
.eq i { width: 3px; border-radius: 1px; background: currentColor; animation: eq .8s ease-in-out infinite; height: 4px; }
.eq i:nth-child(2) { animation-delay: -.25s; } .eq i:nth-child(3) { animation-delay: -.5s; } .eq i:nth-child(4) { animation-delay: -.12s; }
@keyframes eq { 50% { height: 14px; } }

/* ---------- filtres ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.filter { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--dim); font-weight: 500; transition: all .2s; }
.filter .mono { font-size: 10px; color: var(--faint); }
.filter:hover:not(:disabled) { color: var(--text); border-color: var(--ice); }
.filter.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.filter.is-active .mono { color: var(--bg); }
.filter:disabled { opacity: .45; cursor: not-allowed; }
.card.is-filtered { display: none; }
.empty { color: var(--dim); padding: 40px 0; text-align: center; }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust li { display: flex; align-items: center; gap: 16px; padding: 24px clamp(16px, 2.4vw, 30px); font-weight: 600; }
.trust li + li { border-left: 1px solid var(--line); }
.trust b { color: var(--blue); }
@media (max-width: 720px) { .trust { grid-template-columns: 1fr; } .trust li + li { border-left: 0; border-top: 1px solid var(--line); } }

/* ---------- fiche produit ---------- */
.product { padding-top: clamp(100px, 13vw, 130px); }
.crumbs { color: var(--faint); margin-bottom: 22px; display: flex; gap: 8px; }
.crumbs a:hover { color: var(--text); }
.product__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: start; }
.product__media { position: sticky; top: 96px; }
.product__cover { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 5; background: var(--panel-2); box-shadow: 0 40px 100px rgba(0, 0, 0, .55), 0 0 90px color-mix(in srgb, var(--accent) 22%, transparent); transform-style: preserve-3d; }
.product__cover img { width: 100%; height: 100%; object-fit: cover; }
.product__play { position: absolute; right: 18px; bottom: 18px; --s: 64px; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumb { width: 64px; border-radius: 10px; overflow: hidden; opacity: .5; box-shadow: inset 0 0 0 1px var(--line-2); transition: opacity .2s; }
.thumb img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.thumb.is-active, .thumb:hover { opacity: 1; box-shadow: 0 0 0 2px var(--ice); }
.product__title { font-size: clamp(56px, 8.5vw, 124px); margin: 4px 0 8px; overflow-wrap: anywhere; }
.product__sub { color: var(--dim); font-size: clamp(17px, 1.7vw, 22px); }
.product__buy { margin: 30px 0; padding: 20px; border-radius: var(--r-lg); border: 1px solid var(--line-2); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%); }
.product__buy .btn { width: 100%; }
.product__secure { color: var(--faint); margin-top: 12px; text-align: center; }
.product__desc p { color: var(--dim); margin-bottom: 14px; max-width: 60ch; }
.product__desc p:first-child { color: var(--text); font-size: 18px; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 26px; border-radius: var(--r-md); overflow: hidden; background: var(--line); border: 1px solid var(--line); }
.specs > div { background: var(--panel); padding: 14px 16px; }
.specs dt { color: var(--faint); margin-bottom: 4px; }
.specs dd { font-weight: 600; }
.product__lower { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(14px, 2vw, 22px); margin-top: clamp(40px, 6vw, 80px); }
.product__block { padding: clamp(18px, 2.6vw, 30px); }
.product__block .h3 { margin-bottom: 14px; }
.product__block--notes { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 10px 24px; align-items: baseline; }
.product__block--notes .h3 { margin: 0; }
.product__block--notes p { color: var(--dim); }
.contents { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.contents li { padding: 14px; border-radius: var(--r-md); background: rgba(255, 255, 255, .03); border: 1px solid var(--line); }
.contents b { display: block; font-size: 34px; line-height: 1; color: var(--ice); margin-bottom: 6px; }
.contents span { color: var(--dim); font-size: 14px; }
.contents__total { color: var(--faint); margin-top: 14px; }
.sticky-buy {
  position: fixed; left: 50%; bottom: calc(var(--player-h) + 14px + env(safe-area-inset-bottom)); z-index: 45;
  display: flex; align-items: center; gap: 12px; padding: 8px 8px 8px 8px; border-radius: 999px;
  background: rgba(12, 15, 22, .88); border: 1px solid var(--line-2); backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  transform: translate(-50%, 160%); transition: transform .45s var(--ease);
}
.sticky-buy.is-visible { transform: translate(-50%, 0); }
.sticky-buy img { width: 36px; height: 45px; object-fit: cover; border-radius: 8px; }
.sticky-buy { max-width: calc(100% - 24px); }
.sticky-buy > div { min-width: 0; }
.sticky-buy__title { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .mono { color: var(--faint); font-size: 9.5px; }
@media (max-width: 900px) {
  .product__grid, .product__lower { grid-template-columns: minmax(0, 1fr); }
  .product__media { position: relative; top: 0; max-width: 520px; }
  .product__block--notes { grid-template-columns: 1fr; }
}

/* ---------- toolbar prods ---------- */
.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 28px; }
.toolbar input, .toolbar select, .field input, .field select, .field textarea {
  height: 46px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03);
  color: var(--text); outline: none; transition: border-color .2s, background .2s;
}
.toolbar input { width: min(320px, 100%); }
.toolbar select, .field select { appearance: none; padding-right: 36px; background-image: linear-gradient(45deg, transparent 50%, var(--dim) 50%), linear-gradient(135deg, var(--dim) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer; }
.toolbar select option, .field select option { background: var(--panel); }
.toolbar input:focus, .toolbar select:focus, .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ice); background: rgba(159, 214, 255, .05); }
.toolbar__count { margin-left: auto; color: var(--faint); }
.beat.is-hidden { display: none; }

/* =========================================================
   Audio : lecteur persistant, radio (deck + LCD), FAB 88.8 FM, pistes
   ========================================================= */
.player {
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 70;
  border-radius: 22px; border: 1px solid var(--line-2);
  background: rgba(10, 12, 19, .86); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .05);
  animation: player-in .5s var(--ease);
}
@keyframes player-in { from { transform: translateY(120%); opacity: 0; } }
.player__inner { display: grid; grid-template-columns: auto minmax(120px, 1fr) auto minmax(180px, 2fr) auto auto auto auto; align-items: center; gap: 14px; padding: 8px 10px 8px 8px; height: 64px; }
.player__cover img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; background: var(--panel-3); }
body.is-playing .player__cover img { animation: pulse-cover 1.8s ease-in-out infinite; }
@keyframes pulse-cover { 50% { box-shadow: 0 0 0 3px rgba(61, 139, 255, .35); } }
.player__meta { min-width: 0; display: flex; flex-direction: column; }
.player__title { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__title:hover { color: var(--ice); }
.player__sub { color: var(--faint); font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__controls { display: flex; align-items: center; gap: 2px; }
.player__main { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--text); color: var(--bg); transition: transform .2s; }
.player__main:hover { transform: scale(1.07); }
.player__main .ico-pause, .player__main .spinner { display: none; }
body.is-playing .player__main .ico-play { display: none; }
body.is-playing .player__main .ico-pause { display: block; }
.player.is-loading .player__main .ico-play, .player.is-loading .player__main .ico-pause { display: none; }
.player.is-loading .player__main .spinner { display: block; }
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; animation: spin .7s linear infinite; }
.player__progress { display: flex; align-items: center; gap: 10px; min-width: 0; color: var(--faint); }
.player__progress .mono { font-size: 10.5px; min-width: 34px; text-align: center; }
.player__wave { flex: 1; min-width: 0; height: 36px; cursor: pointer; }
.player__wave canvas { width: 100%; height: 36px; }
.player__viz { width: 64px; height: 32px; }
.player__vol { display: flex; align-items: center; gap: 6px; color: var(--dim); }
.player__vol input { width: 80px; accent-color: var(--blue); }
.player__close { width: 32px; height: 32px; }
@media (max-width: 1080px) { .player__viz, .player__vol { display: none; } .player__inner { grid-template-columns: auto minmax(100px, 1fr) auto minmax(140px, 1.6fr) auto auto; } }
@media (max-width: 720px) {
  body.has-player { --player-h: 72px; }
  .player { left: 6px; right: 6px; border-radius: 18px; }
  .player__inner { grid-template-columns: auto minmax(0, 1fr) auto auto; gap: 8px; height: 60px; position: relative; }
  .player__progress { position: absolute; left: 14px; right: 14px; top: -1px; height: 3px; }
  .player__progress .mono { display: none; }
  .player__wave, .player__wave canvas { height: 3px; }
  .player__controls [data-player="prev"] { display: none; }
  .player__buy { display: none !important; }
}

/* ---------- FAB 88.8 FM (inspiré knxwledge) ---------- */
.fm { position: fixed; right: 14px; bottom: calc(var(--player-h) + 14px + env(safe-area-inset-bottom)); z-index: 65; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; transition: bottom .4s var(--ease); }
.fm__btn { display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px; border-radius: 10px; background: rgba(10, 12, 19, .9); border: 1px solid var(--line-2); color: var(--text); font-size: 13px; box-shadow: 0 10px 30px rgba(0, 0, 0, .5); transition: border-color .2s, transform .2s; }
.fm__btn:hover { border-color: var(--coral); transform: translateY(-2px); }
.fm__card { width: 260px; padding: 16px; border-radius: 16px; background: rgba(10, 12, 19, .95); border: 1px solid var(--line-2); box-shadow: 0 20px 60px rgba(0, 0, 0, .6); backdrop-filter: blur(16px); animation: fade-up .3s var(--ease); }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } }
.fm__label { display: flex; align-items: center; gap: 8px; color: var(--dim); font-size: 10px; }
.fm__title { font-size: 17px; margin: 8px 0 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; }
.fm__viz { width: 100%; height: 44px; margin-bottom: 12px; }
.fm__row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fm__link { margin-left: auto; color: var(--dim); font-size: 10px; }
.fm__link:hover { color: var(--text); }
body[data-route="radio"] .fm { display: none; }
@media (max-width: 720px) { .fm__btn { height: 34px; padding: 0 11px; font-size: 12px; } }

/* ---------- deck radio ---------- */
.deck { position: relative; min-width: 0; border-radius: var(--r-xl); padding: clamp(14px, 2vw, 22px); background: linear-gradient(180deg, #151a27, #0b0e15); border: 1px solid var(--line-2); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 30px 80px rgba(0, 0, 0, .5); }
.lcd { position: relative; border-radius: 14px; padding: 14px 16px 10px; background: radial-gradient(120% 140% at 50% 0%, #0f2338 0%, #07111d 60%, #040810 100%); border: 1px solid rgba(120, 190, 255, .25); box-shadow: inset 0 0 40px rgba(0, 0, 0, .8), inset 0 0 0 1px rgba(0, 0, 0, .6); color: #9fd6ff; overflow: hidden; text-shadow: 0 0 8px rgba(120, 190, 255, .7); }
.lcd::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .25) 0 1px, transparent 1px 3px); mix-blend-mode: multiply; }
.lcd__top { display: flex; flex-wrap: wrap; gap: 4px 12px; justify-content: space-between; font-size: 9.5px; color: rgba(159, 214, 255, .7); }
.lcd__onair { display: inline-flex; align-items: center; gap: 6px; }
.lcd__freq { display: flex; align-items: baseline; gap: 10px; font-size: clamp(54px, 7vw, 86px); line-height: 1; margin: 6px 0 2px; }
.lcd__freq small { font-size: .32em; }
.lcd__ticker { overflow: hidden; white-space: nowrap; font-size: 16px; text-transform: uppercase; height: 22px; }
.lcd__ticker span { display: inline-block; padding-left: 100%; animation: ticker 14s linear infinite; }
@keyframes ticker { to { transform: translateX(-100%); } }
.lcd__scale { position: relative; display: flex; justify-content: space-between; align-items: flex-end; height: 16px; margin-top: 8px; }
.lcd__scale i { width: 1px; height: 5px; background: rgba(159, 214, 255, .4); }
.lcd__scale i.big { height: 10px; background: rgba(159, 214, 255, .8); }
.lcd__needle { position: absolute; bottom: -2px; left: var(--needle, 50%); width: 2px; height: 18px; background: var(--coral); box-shadow: 0 0 8px var(--coral); transition: left 1.2s var(--ease); }
.deck__viz { width: 100%; height: 110px; margin: 12px 0; }
.deck--big .deck__viz { height: clamp(200px, 30vw, 340px); }
.deck__controls { display: flex; align-items: center; gap: 16px; }
.radio-main { width: 64px; height: 64px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; background: radial-gradient(circle at 35% 30%, #7db6ff, #1d5cff 70%); box-shadow: 0 0 0 1px rgba(200, 225, 255, .4) inset, 0 12px 30px rgba(29, 92, 255, .5), 0 0 calc(var(--level) * 50px) rgba(120, 190, 255, .8); transition: transform .2s; }
.radio-main:hover { transform: scale(1.06); }
.radio-main .ico-pause { display: none; }
body.is-radio.is-playing .radio-main .ico-play { display: none; }
body.is-radio.is-playing .radio-main .ico-pause { display: block; }
.deck__now { min-width: 0; flex: 1; }
.deck__label { color: var(--faint); font-size: 10px; }
.deck__title { font-weight: 600; font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deck__from { color: var(--ice); font-size: 10.5px; }
.deck__btns { display: flex; gap: 4px; }

.radio-page { padding-top: clamp(110px, 14vw, 150px); }
.radio-page__head { margin-bottom: 26px; }
.radio-page__head .kicker { color: var(--coral); }
.radio-page__lists { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; margin-top: 18px; }
.radio-page__lists > .panel { padding: clamp(16px, 2.4vw, 26px); }
.list-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; color: var(--faint); }
.soon-list { display: grid; gap: 2px; max-height: 480px; overflow: auto; margin-top: 14px; padding-right: 6px; }
.soon-list li { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); color: var(--dim); font-size: 11px; }
@media (max-width: 860px) { .radio-page__lists { grid-template-columns: 1fr; } }

/* ---------- pistes ---------- */
.tracks { display: grid; }
.track { display: grid; grid-template-columns: 26px 36px minmax(0, 1fr) minmax(60px, 160px) 40px; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.track:last-child { border-bottom: 0; }
.track__n { color: var(--faint); font-size: 10.5px; }
.track__main { min-width: 0; display: flex; flex-direction: column; }
.track__title { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track__from { color: var(--faint); font-size: 10px; }
a.track__from:hover { color: var(--ice); }
.track__wave { width: 100%; height: 28px; opacity: .8; }
.track__dur { color: var(--faint); text-align: right; font-size: 10.5px; }
.track.is-current .track__title { color: var(--ice); }
.tracks--compact .track { padding: 7px 0; }
@media (max-width: 560px) { .track { grid-template-columns: 36px minmax(0, 1fr) 40px; } .track__n, .track__wave { display: none; } }

/* =========================================================
   Effets : curseur, grain, transition de page, apparitions
   ========================================================= */
.cursor { position: fixed; inset: 0; z-index: 120; pointer-events: none; display: none; }
.has-cursor .cursor { display: block; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor [data-tilt] { cursor: none; }
.has-cursor input, .has-cursor textarea, .has-cursor select { cursor: auto; }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; will-change: transform; }
.cursor__dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #fff; mix-blend-mode: difference; }
.cursor__ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid rgba(159, 214, 255, .55);
  display: grid; place-items: center;
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), background .3s, border-color .3s, opacity .3s;
}
.cursor__label { opacity: 0; color: #fff; font-size: 9.5px; letter-spacing: .12em; transition: opacity .2s; white-space: nowrap; }
.cursor.is-hover .cursor__ring { width: 58px; height: 58px; margin: -29px 0 0 -29px; border-color: var(--ice); background: rgba(159, 214, 255, .08); }
.cursor.is-label .cursor__ring { width: 86px; height: 86px; margin: -43px 0 0 -43px; background: var(--blue); border-color: transparent; box-shadow: 0 0 30px rgba(61, 139, 255, .6); }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-hidden .cursor__ring { opacity: 0; }
.cursor.is-down .cursor__ring { transform: scale(.8); }
.cursor-spark { position: fixed; z-index: 119; pointer-events: none; width: 12px; height: 12px; margin: -6px 0 0 -6px; color: var(--ice); animation: spark .9s var(--ease) forwards; }
.cursor-spark svg { width: 100%; height: 100%; filter: drop-shadow(0 0 6px rgba(159, 214, 255, .9)); }
@keyframes spark { to { transform: translate(var(--dx), var(--dy)) rotate(140deg) scale(0); opacity: 0; } }

.grain {
  position: fixed; inset: -50%; z-index: 110; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  animation: grain 1s steps(6) infinite;
}
@keyframes grain { 0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); } 60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); } }

/* transition entre les pages */
.wipe { position: fixed; inset: 0; z-index: 100; pointer-events: none; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, #0f1a30, #05060a 70%); clip-path: inset(100% 0 0 0); }
.wipe img { width: 64px; opacity: 0; filter: drop-shadow(0 0 20px rgba(61, 139, 255, .8)); }
.wipe.is-in { clip-path: inset(0 0 0 0); transition: clip-path .42s var(--ease-in-out); }
.wipe.is-in img { opacity: 1; transition: opacity .2s .15s; animation: spin 1.2s linear infinite; }
.wipe.is-out { clip-path: inset(0 0 100% 0); transition: clip-path .5s var(--ease-in-out); }

/* apparitions au scroll */
.js [data-reveal] { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); transition-delay: var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; filter: none; } }

/* scramble */
[data-scramble] .sw { display: inline-block; white-space: nowrap; }
[data-scramble] .sc { position: relative; }
[data-scramble] .sc.is-glitch { color: transparent; text-shadow: none; }
[data-scramble] .sc.is-glitch::after {
  content: attr(data-g); position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  color: var(--ice); text-shadow: 0 0 12px rgba(159, 214, 255, .8);
}

/* inclinaison */
[data-tilt] { transform: perspective(900px) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg)); transition: transform .5s var(--ease); }
[data-tilt].is-tilting { transition: transform .08s linear; }

/* =========================================================
   Pages : artiste, contact, mentions, 404
   ========================================================= */
.artist { padding-top: clamp(110px, 14vw, 150px); }
.artist__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 80px); align-items: center; }
.artist__art { position: relative; display: grid; place-items: center; aspect-ratio: 1; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); background: radial-gradient(60% 60% at 50% 45%, rgba(61, 139, 255, .25), transparent 70%), var(--panel); }
.artist__pattern { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; z-index: 0; -webkit-mask-image: radial-gradient(closest-side, transparent 30%, #000); mask-image: radial-gradient(closest-side, transparent 30%, #000); }
.artist__stage { position: relative; z-index: 1; width: 80%; display: grid; place-items: center; perspective: 900px; }
.artist__stage .float-glyph { width: 100%; max-width: 420px; transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(calc(1 + var(--level) * .08)); }
.visually-logo img { width: min(420px, 90%); margin: 0 0 10px -18px; filter: drop-shadow(0 16px 40px rgba(29, 92, 255, .35)); }
.artist__text p { color: var(--dim); margin-bottom: 14px; max-width: 58ch; }
.artist__text p.lead { color: var(--text); }
.artist__facts { display: grid; gap: 18px; margin: 26px 0 30px; }
.artist__facts .kicker { margin-bottom: 8px; color: var(--faint); }
.artist .hero__cta { justify-content: flex-start; }
@media (max-width: 900px) { .artist__grid { grid-template-columns: 1fr; } .artist__art { max-width: 480px; } }

.contact { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 18px; align-items: start; }
.contact__form { padding: clamp(18px, 3vw, 36px); display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field__label { color: var(--faint); }
.field input, .field select { width: 100%; border-radius: 14px; }
.field textarea { width: 100%; height: auto; min-height: 160px; padding: 14px 16px; border-radius: 14px; resize: vertical; }
.contact__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.contact__actions .muted { font-size: 10px; max-width: 36ch; }
.contact__side { display: grid; gap: 14px; }
.contact__side .panel { padding: 22px; }
.contact__side .h3 { margin-bottom: 8px; }
.contact__side p { color: var(--dim); margin-bottom: 8px; }
.contact__mail { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 700; font-size: clamp(16px, 1.8vw, 20px); margin-top: 4px; word-break: break-all; }
.contact__mail:hover { color: var(--ice); }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

.prose { padding: clamp(22px, 4vw, 48px); max-width: 860px; }
.prose h2 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 16px; margin: 28px 0 10px; color: var(--ice); }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--dim); margin-bottom: 10px; }
.prose a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.notfound { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; padding-top: 100px; }
.notfound__code { font-size: clamp(120px, 30vw, 360px); line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--blue); text-shadow: 0 0 60px rgba(61, 139, 255, .4); }

/* Correctifs après mise en ligne */
.gumroad-button .logo-full { display: none !important; }
.hero__pattern {
  inset: -8%;
  background: url("/img/brand/pattern-1000.webp") center / cover no-repeat;
  animation: drift-soft 30s ease-in-out infinite alternate;
}
@keyframes drift-soft {
  from { transform: translate3d(-2%, -1%, 0) scale(1.02); }
  to { transform: translate3d(2%, 1%, 0) scale(1.08); }
}
