:root {
  --bg: #0a0907;
  --bg-soft: #14110d;
  --ink: #f1ecdf;
  --ink-soft: #b8ad94;
  --gold: #c9a14a;
  --gold-light: #f4d57a;
  --gold-deep: #7a5a20;
  --chrome: #d8d8d4;
  --chrome-deep: #6e6e6a;
  --line: #2a241a;
  --line-bright: #3a2f1c;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, "Consolas", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-feature-settings: "ss01", "ss02", "liga", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(201,161,74,0.10), transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(122,90,32,0.08), transparent 60%),
    linear-gradient(180deg, #0c0a08 0%, #050403 100%);
  overflow-x: hidden;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* Grain global */
.grain {
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 80;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.85  0 0 0 0 0.6  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: shimmer 9s steps(6) infinite;
}
@keyframes shimmer {
  0%   { transform: translate(0, 0) }
  20%  { transform: translate(-3%, 2%) }
  40%  { transform: translate(2%, -2%) }
  60%  { transform: translate(-2%, -3%) }
  80%  { transform: translate(3%, 1%) }
  100% { transform: translate(0, 0) }
}
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 79;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%);
}
/* Scanlines fines : effet écran rétro */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 78;
  background-image: repeating-linear-gradient(180deg,
    transparent 0,
    transparent 2px,
    rgba(201,161,74,.04) 2px,
    rgba(201,161,74,.04) 3px);
  opacity: .35;
}

/* Top bar */
.topbar {
  position: relative;
  z-index: 5;
  padding: 22px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.status-label {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.locale { color: var(--chrome-deep); }

/* Stage */
.stage {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: clamp(18px, 3.4vh, 36px);
  padding: clamp(12px, 2vw, 28px) 0 clamp(20px, 4vw, 40px);
  align-items: center;
  justify-items: center;
  text-align: center;
}

.logo {
  margin: 0;
  width: clamp(110px, 14vw, 180px);
  filter: drop-shadow(0 8px 24px rgba(201,161,74,.18));
  animation: rise 1.2s cubic-bezier(.2,.7,.2,1) .1s both;
}
.logo img { width: 100%; height: auto; display: block; }

.tagline {
  margin: 0;
  padding: 0 clamp(20px, 4vw, 56px);
  animation: rise 1.2s cubic-bezier(.2,.7,.2,1) .25s both;
}
.tagline h1 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(32px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.tagline em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Scène */
.scene-wrap {
  width: 100%;
  position: relative;
  animation: rise 1.4s cubic-bezier(.2,.7,.2,1) .4s both;
}
.scene {
  position: relative;
  width: 100%;
  height: clamp(380px, 62vh, 660px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201,161,74,0.10) 0%, transparent 50%),
    linear-gradient(180deg, #0d0a07 0%, #1a140c 40%, #0a0806 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

/* Murs */
.wall {
  position: absolute;
  inset: 0 0 35% 0;
  background: linear-gradient(180deg, #08070500 0%, #110c08 30%, #1a130b 100%);
}
.wall-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(201,161,74,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201,161,74,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.7) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.7) 100%);
}
.wall-pillars {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.wall-pillars span {
  border-left: 1px solid rgba(122,90,32,.18);
  background: linear-gradient(180deg, rgba(122,90,32,.05), transparent 60%);
}
.wall-pillars span:last-child { border-right: 1px solid rgba(122,90,32,.18); }

/* ======================
   ENSEIGNE NÉON CORRIGÉE
   ====================== */
.neon {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: min(86%, 900px);
  pointer-events: none;
  z-index: 2;
}
.neon-svg { width: 100%; height: auto; overflow: visible; }
.neon-text-glow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  font-variation-settings: "opsz" 144;
  letter-spacing: .06em;
  fill: rgba(244,213,122,.55);
}
.neon-text-core {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: 56px;
  font-variation-settings: "opsz" 144;
  letter-spacing: .06em;
  fill: #fff7d8;
  paint-order: stroke;
  stroke: rgba(244,213,122,.4);
  stroke-width: .5px;
}
.neon-sub {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .35em;
  fill: var(--gold);
  text-transform: uppercase;
}
.neon-glow {
  position: absolute;
  inset: -30% -8% -40% -8%;
  background: radial-gradient(ellipse at 50% 50%, rgba(244,213,122,.32) 0%, rgba(201,161,74,.12) 30%, transparent 65%);
  z-index: -1;
  filter: blur(10px);
  animation: neonflicker 5.5s ease-in-out infinite;
}
@keyframes neonflicker {
  0%, 12%, 16%, 100% { opacity: 1; }
  13%, 15%           { opacity: .55; }
  47%, 49%           { opacity: .82; }
  48%                { opacity: .35; }
}
/* Sweep light qui balaie le texte du néon */
.neon-sweep {
  position: absolute;
  top: 12%;
  left: 0;
  width: 22%;
  height: 60%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 247, 216, 0.35) 50%,
    transparent 100%);
  filter: blur(6px);
  mix-blend-mode: screen;
  animation: neonSweep 6s ease-in-out infinite;
}
@keyframes neonSweep {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  10%      { opacity: 1; }
  90%      { opacity: 1; }
  50%      { transform: translateX(450%); }
}

/* Faisceaux */
.beams { position: absolute; inset: 0; pointer-events: none; z-index: 1; mix-blend-mode: screen; }
.beam {
  position: absolute;
  top: -10%; width: 28%; height: 110%;
  background: linear-gradient(180deg, rgba(244,213,122,.22) 0%, rgba(201,161,74,.06) 40%, transparent 80%);
  filter: blur(8px);
  transform-origin: top center;
  opacity: .8;
}
.beam-1 { left: 4%;  transform: rotate(-8deg) skewX(-4deg); animation: flicker 7s ease-in-out infinite; }
.beam-2 { left: 36%; transform: rotate(0deg);               animation: flicker 6s ease-in-out infinite .8s; }
.beam-3 { left: 68%; transform: rotate(8deg) skewX(4deg);   animation: flicker 8s ease-in-out infinite 1.6s; }
@keyframes flicker {
  0%, 100% { opacity: .8; }
  50%      { opacity: .55; }
}

/* Plafonniers */
.lamps { position: absolute; top: 0; left: 0; width: 100%; height: 18%; pointer-events: none; z-index: 2; }
.lamp {
  position: absolute;
  top: 0;
  left: var(--x);
  transform: translateX(-50%);
  width: 110px; height: 12px;
  background: linear-gradient(180deg, #1a1815 0%, #0a0907 100%);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 0 36px rgba(244,213,122,.45), 0 0 12px rgba(244,213,122,.7);
}
.lamp::before {
  content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px;
  background: radial-gradient(ellipse at center, var(--gold-light), transparent 70%);
  filter: blur(4px);
}

.haze {
  position: absolute; inset: 0; pointer-events: none; z-index: 6;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(244,213,122,.05) 0%, transparent 35%),
    radial-gradient(ellipse at 80% 75%, rgba(201,161,74,.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 95%, rgba(122,90,32,.18) 0%, transparent 50%);
  mix-blend-mode: screen;
}

/* ======================
   PARTICULES DORÉES
   ====================== */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
  overflow: hidden;
}
.particles span {
  position: absolute;
  bottom: 0;
  width: 3px; height: 3px;
  background: radial-gradient(circle at center, var(--gold-light), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: floatup 9s linear infinite;
}
.particles span:nth-child(1)  { left: 5%;  animation-delay: 0s;   --drift: 30px; }
.particles span:nth-child(2)  { left: 12%; animation-delay: 1.5s; --drift: -20px; }
.particles span:nth-child(3)  { left: 22%; animation-delay: 3.2s; --drift: 40px; }
.particles span:nth-child(4)  { left: 30%; animation-delay: 0.7s; --drift: -30px; }
.particles span:nth-child(5)  { left: 41%; animation-delay: 4.4s; --drift: 15px; }
.particles span:nth-child(6)  { left: 50%; animation-delay: 2.1s; --drift: -45px; }
.particles span:nth-child(7)  { left: 58%; animation-delay: 5.5s; --drift: 20px; }
.particles span:nth-child(8)  { left: 67%; animation-delay: 3.8s; --drift: -25px; }
.particles span:nth-child(9)  { left: 76%; animation-delay: 1.2s; --drift: 35px; }
.particles span:nth-child(10) { left: 85%; animation-delay: 6.7s; --drift: -15px; }
.particles span:nth-child(11) { left: 92%; animation-delay: 2.8s; --drift: 25px; }
.particles span:nth-child(12) { left: 97%; animation-delay: 4.9s; --drift: -10px; }
@keyframes floatup {
  0%   { transform: translate(0, 0) scale(.5); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(var(--drift), -100vh) scale(1.2); opacity: 0; }
}

/* Sweep light horizontal */
.sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 35%,
    rgba(244,213,122,.15) 50%,
    transparent 65%,
    transparent 100%);
  background-size: 300% 100%;
  mix-blend-mode: screen;
  animation: sweepGo 7s ease-in-out infinite;
}
@keyframes sweepGo {
  0%, 100% { background-position: -50% 0; opacity: 0; }
  20%      { opacity: 1; }
  60%      { opacity: 1; }
  80%      { background-position: 150% 0; opacity: 0; }
}

/* Sol */
.floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 35%;
  background: linear-gradient(180deg, #0a0806 0%, #060503 100%);
  perspective: 600px; perspective-origin: 50% 0%;
  overflow: hidden;
}
.floor::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,161,74,.12) 0%, transparent 55%);
  z-index: 1;
}
.floor::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.3  0 0 0 0 0.25  0 0 0 0 0.15  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .35; mix-blend-mode: overlay;
}
.floor-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(201,161,74,.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201,161,74,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: rotateX(70deg); transform-origin: 50% 0%;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.2) 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.2) 75%, transparent 100%);
}

/* ======================
   OBJETS MUSCU ANIMÉS
   ====================== */
.rig {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 5;
}
.eq {
  position: absolute;
  bottom: 12%;
  height: 56%;
  width: auto;
  filter: drop-shadow(0 0 22px rgba(244,213,122,.10)) drop-shadow(0 10px 0 rgba(0,0,0,.6));
}
.eq-pullup       { left: 12%; transform: translateX(-50%); }
.eq-bench        { left: 36%; transform: translateX(-50%); }
.eq-accessories  { left: 64%; transform: translateX(-50%); }
.eq-rack         { left: 88%; transform: translateX(-50%); }

/* 1. PULL-UP BAR : vibrations + poussière */
.pullup-bar {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: pullVibrate 0.16s ease-in-out infinite, pullPump 3.2s ease-in-out infinite;
}
@keyframes pullVibrate {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-0.6px); }
}
@keyframes pullPump {
  0%, 60%, 100% { filter: drop-shadow(0 0 0 transparent); }
  70%, 90%      { transform: translateY(1.8px); filter: drop-shadow(0 0 6px rgba(244,213,122,.6)); }
}
.dust circle { transform-box: fill-box; }
.d1 { animation: dustFall 2.8s linear infinite; }
.d2 { animation: dustFall 3.4s linear infinite 1.1s; }
.d3 { animation: dustFall 3s   linear infinite 2.2s; }
@keyframes dustFall {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(220px); opacity: 0; }
}

/* 2. BENCH BAR : descend / monte avec disques */
.bench-bar {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: benchRep 3s cubic-bezier(.6,.0,.4,1) infinite;
}
@keyframes benchRep {
  0%, 100% { transform: translateY(0); }      /* haut */
  40%      { transform: translateY(105px); }  /* en bas vers le banc */
  50%      { transform: translateY(110px); }  /* léger tassement bas */
  60%      { transform: translateY(105px); }  /* repris */
}
.bench-plate-l, .bench-plate-r {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: plateSpin 6s linear infinite;
}
.bench-plate-r { animation-direction: reverse; }
@keyframes plateSpin {
  to { transform: rotate(360deg); }
}
.bench-spark { animation: sparkPulse 3s ease-in-out infinite; }
@keyframes sparkPulse {
  0%, 25%, 75%, 100% { opacity: 0; }
  0%, 5%             { opacity: .35; }  /* glow quand en haut */
  85%, 100%          { opacity: .35; }
}

/* 3. ACCESSOIRES : kettlebell qui se balance, corde qui ondule, shaker avec liquide */
.kettlebell, .jumprope, .rope, .liquid, .bubble, .shaker {
  transform-box: fill-box;
}

/* Kettlebell suspendue en pendule (pivot sur le crochet plafond) */
.kettlebell {
  transform-origin: 60px 22px;
  animation: kettlebellSwing 3.6s ease-in-out infinite;
}
@keyframes kettlebellSwing {
  0%, 100% { transform: rotate(-7deg); }
  50%      { transform: rotate(7deg); }
}

/* Corde à sauter : cross-fade entre deux courbes pour donner l'illusion d'ondulation */
.rope-a { animation: ropeWave 1.4s ease-in-out infinite; }
.rope-b { animation: ropeWave 1.4s ease-in-out infinite reverse; }
@keyframes ropeWave {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Shaker : wobble léger left-right */
.shaker {
  transform-origin: 112px 286px;
  animation: shakerWobble 2.8s ease-in-out infinite;
}
@keyframes shakerWobble {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}

/* Liquide à l'intérieur du shaker : alternance entre 2 vagues */
.liquid-a { animation: liquidWave 2.2s ease-in-out infinite; }
.liquid-b { animation: liquidWave 2.2s ease-in-out infinite reverse; }
@keyframes liquidWave {
  0%, 100% { opacity: .7; }
  50%      { opacity: 0; }
}

/* Bulles qui remontent dans le liquide */
.bubble {
  transform-origin: center;
}
.b1 { animation: bubbleUp 3.4s ease-in infinite; }
.b2 { animation: bubbleUp 4.2s ease-in infinite 1.4s; }
.b3 { animation: bubbleUp 3.8s ease-in infinite 2.6s; }
@keyframes bubbleUp {
  0%   { transform: translateY(0) scale(.3); opacity: 0; }
  20%  { opacity: .6; }
  100% { transform: translateY(-50px) scale(1.2); opacity: 0; }
}

/* 4. DISQUE qui tourne + haltère qui se balance + étoiles */
.big-disk {
  transform-box: fill-box;
  transform-origin: 120px 100px;
  animation: bigDiskSpin 9s linear infinite;
}
@keyframes bigDiskSpin {
  to { transform: rotate(360deg); }
}
.dumbbell {
  transform-box: fill-box;
  transform-origin: 120px 231px;
  animation: dumbbellRock 4.5s ease-in-out infinite;
}
@keyframes dumbbellRock {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(6deg)  translateY(-2px); }
}
.sparkles circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 2.2s ease-in-out infinite;
}
.sp1 { animation-delay: 0s; }
.sp2 { animation-delay: .6s; }
.sp3 { animation-delay: 1.2s; }
.sp4 { animation-delay: 1.8s; }
@keyframes twinkle {
  0%, 100% { opacity: 0;   transform: scale(.4); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

/* ======================
   PROGRESS BAR
   ====================== */
.progress {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: min(72%, 720px);
  z-index: 8;
  display: grid;
  gap: 8px;
  font-family: var(--mono);
}
.progress-track {
  position: relative;
  height: 4px;
  background: rgba(201,161,74,.12);
  border: 1px solid rgba(201,161,74,.22);
  overflow: hidden;
}
.progress-fill {
  position: absolute;
  inset: 0;
  width: 73%;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-light) 100%);
  box-shadow: 0 0 14px rgba(244,213,122,.5);
  animation: progressBreathe 4s ease-in-out infinite;
}
@keyframes progressBreathe {
  0%, 100% { width: 71%; }
  50%      { width: 75%; }
}
.progress-scan {
  position: absolute;
  inset: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,247,216,.6), transparent);
  animation: progressScan 3.4s linear infinite;
}
@keyframes progressScan {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.progress-label { color: var(--ink-soft); }
.progress-pct {
  color: var(--gold-light);
  font-weight: 700;
}
.counter {
  display: inline-block;
  animation: counterFlicker 4s ease-in-out infinite;
}
@keyframes counterFlicker {
  0%, 35%, 65%, 100% { opacity: 1; }
  37%, 39%, 67%, 69% { opacity: .35; }
}

/* CTA */
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 clamp(20px, 4vw, 56px);
  animation: rise 1.2s cubic-bezier(.2,.7,.2,1) .65s both;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(244,213,122,.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.btn:hover::before { transform: translateX(110%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--bg);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  border: 1px solid var(--gold-light);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.35),
    0 8px 24px rgba(201,161,74,.25);
}
.btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -1px 0 rgba(0,0,0,.4),
    0 14px 32px rgba(244,213,122,.35);
}
.btn-ghost {
  color: var(--chrome);
  background: linear-gradient(180deg, rgba(216,216,212,.06), rgba(216,216,212,.02));
  border: 1px solid var(--chrome-deep);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--chrome); color: #fff; }
.btn-glyph { width: 18px; height: 18px; display: inline-flex; }
.btn-glyph svg { width: 100%; height: 100%; display: block; }
.btn-label { font-weight: 700; }
.btn-meta {
  font-size: 10px; letter-spacing: .25em; opacity: .65;
  padding-left: 10px; border-left: 1px solid currentColor;
}
.btn-primary .btn-meta { border-left-color: rgba(10,9,7,.4); opacity: .75; }

/* Footer */
.footer {
  position: relative;
  z-index: 5;
  padding: 22px clamp(20px, 4vw, 56px) 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--chrome-deep);
  border-top: 1px solid var(--line);
}
.footer .mark {
  justify-self: start;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer .copy { justify-self: center; }
.footer .signal { justify-self: end; display: inline-flex; align-items: flex-end; gap: 3px; height: 14px; }
.footer .signal-bar {
  width: 3px; background: var(--gold);
  animation: bar 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
.footer .signal-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.footer .signal-bar:nth-child(2) { height: 60%; animation-delay: .15s; }
.footer .signal-bar:nth-child(3) { height: 80%; animation-delay: .3s; }
.footer .signal-bar:nth-child(4) { height: 100%; animation-delay: .45s; }
@keyframes bar {
  0%, 100% { transform: scaleY(.4); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .neon-glow, .neon-sweep, .beam, .signal-bar, .sweep,
  .pullup-bar, .dust circle, .bench-bar, .bench-plate-l, .bench-plate-r, .bench-spark,
  .kettlebell, .rope-a, .rope-b, .shaker, .liquid-a, .liquid-b, .bubble,
  .big-disk, .dumbbell, .sparkles circle,
  .progress-fill, .progress-scan, .counter, .particles span {
    animation: none !important;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .neon-text-glow, .neon-text-core { font-size: 44px; }
  .neon-sub { font-size: 11px; letter-spacing: .25em; }
}
@media (max-width: 720px) {
  .scene { height: clamp(400px, 60vh, 540px); }
  .neon { width: 92%; }
  .neon-text-glow, .neon-text-core { font-size: 32px; letter-spacing: .04em; }
  .neon-sub { font-size: 9px; letter-spacing: .2em; }
  .eq { height: 46%; }
  .eq-pullup      { left: 14%; }
  .eq-bench       { left: 38%; }
  .eq-accessories { left: 64%; }
  .eq-rack        { left: 88%; }
  .lamp { width: 70px; }
  .progress { width: 86%; }
  .footer { grid-template-columns: 1fr 1fr; gap: 8px; }
  .footer .copy { justify-self: end; grid-column: 2; }
  .footer .signal { display: none; }
  .footer .mark { grid-column: 1; }
  .btn { padding: 12px 18px; font-size: 11px; gap: 10px; }
  .btn-meta { padding-left: 8px; font-size: 9px; }
  .tagline h1 { font-size: clamp(26px, 8vw, 44px); }
}
@media (max-width: 480px) {
  .topbar { font-size: 9px; letter-spacing: .18em; padding: 16px 18px; }
  .scene { height: 460px; }
  .neon-text-glow, .neon-text-core { font-size: 22px; letter-spacing: .02em; }
  .neon-sub { display: none; }
  .eq-pullup { left: 12%; }
  .eq-rack   { left: 90%; }
}
