/* Becomy Studio — public marketing site
   Theme: Neon Nightshift — near-black, neon yellow-green, video-first, Awwwards bar */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@500;600;700;800;900&display=swap');

:root {
  --bm-bg: #0a0b0d;
  --bm-bg-2: #101216;
  --bm-bg-3: #15181d;
  --bm-ink: #f2f5ee;
  --bm-muted: #98a29a;
  --bm-neon: #d4ff3f;
  --bm-neon-soft: rgba(212, 255, 63, 0.16);
  --bm-neon-glow: rgba(212, 255, 63, 0.35);
  --bm-line: rgba(242, 245, 238, 0.12);
  --bm-line-soft: rgba(242, 245, 238, 0.07);
  --bm-radius: 20px;
  --bm-max: 1200px;
  --bm-display: "Unbounded", ui-sans-serif, system-ui, sans-serif;
  --bm-body: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

::selection { background: var(--bm-neon); color: #0a0b0d; }

.bm-body {
  margin: 0;
  font-family: var(--bm-body);
  color: var(--bm-ink);
  background: var(--bm-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.bm-body a { color: inherit; text-decoration: none; }
.bm-body img { max-width: 100%; display: block; }

.bm-shell { min-height: 100vh; }

/* Film grain overlay */
.bm-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(/%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ————— Nav ————— */
.bm-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 11, 13, 0.92);
  border-bottom: 1px solid var(--bm-line-soft);
}

.bm-nav-inner {
  max-width: var(--bm-max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.bm-logo {
  font-family: var(--bm-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  text-transform: uppercase;
}

.bm-logo span {
  color: var(--bm-neon);
  font-weight: 700;
  font-size: 0.92em;
}

.bm-nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
}

.bm-nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bm-muted);
  transition: color .15s ease, background .15s ease;
}

.bm-nav-links a:hover { color: var(--bm-neon); background: rgba(212, 255, 63, 0.06); }

.bm-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ————— Buttons ————— */
.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--bm-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.3,1.2), background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.bm-btn:hover { transform: translateY(-2px); }
.bm-btn:active { transform: translateY(0) scale(.98); }

/* `.bm-body a { color: inherit }` est plus spécifique qu'une classe seule :
   on préfixe pour garder le texte sombre sur fond néon. */
.bm-btn-primary,
.bm-body .bm-btn-primary {
  background: var(--bm-neon);
  color: #0a0b0d;
  box-shadow: 0 0 0 0 var(--bm-neon-glow);
}

.bm-btn-primary:hover {
  background: #e2ff6b;
  box-shadow: 0 8px 34px var(--bm-neon-glow);
}

.bm-btn-secondary {
  background: transparent;
  border-color: var(--bm-line);
  color: var(--bm-ink);
}

.bm-btn-secondary:hover { border-color: var(--bm-neon); color: var(--bm-neon); }

.bm-btn-ghost {
  background: transparent;
  color: var(--bm-muted);
}

.bm-btn-ghost:hover { color: var(--bm-neon); background: rgba(212, 255, 63, 0.06); }

.bm-btn-dark {
  background: var(--bm-bg-3);
  border-color: var(--bm-line);
  color: var(--bm-ink);
}

.bm-btn-lg { padding: 15px 26px; font-size: 1.02rem; }

/* ————— Hero (video-first) ————— */
.bm-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.bm-hero-video-wrap {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}

.bm-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Avoid continuous CSS filters on full-bleed video (compositor cost). */
}

.bm-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 11, 13, 0.55) 0%, rgba(10, 11, 13, 0.25) 38%, rgba(10, 11, 13, 0.88) 82%, var(--bm-bg) 100%),
    radial-gradient(900px 420px at 12% 88%, rgba(212, 255, 63, 0.12), transparent 60%);
  pointer-events: none;
}

.bm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--bm-max);
  margin: 0 auto;
  width: 100%;
  padding: 120px 22px 56px;
  display: grid;
  gap: 26px;
}

.bm-brand-mark {
  font-family: var(--bm-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 9.5vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--bm-ink);
}

.bm-brand-mark em {
  font-style: normal;
  color: var(--bm-neon);
  text-shadow: 0 0 42px var(--bm-neon-glow);
}

.bm-hero h1 {
  font-family: var(--bm-display);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
  max-width: 30ch;
  color: var(--bm-ink);
}

.bm-hero-lead {
  font-size: 1.06rem;
  color: rgba(242, 245, 238, 0.78);
  margin: 0;
  max-width: 34rem;
}

.bm-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.bm-cta-note {
  width: 100%;
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--bm-muted);
}

/* Floating AI prompt card */
.bm-prompt {
  background: rgba(16, 18, 22, 0.92);
  border: 1px solid var(--bm-line);
  border-left: 3px solid var(--bm-neon);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 30rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.bm-prompt-label {
  margin: 0 0 6px;
  font-family: var(--bm-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bm-neon);
}

.bm-prompt p:last-child { margin: 0; color: rgba(242, 245, 238, 0.86); font-size: 0.98rem; }

/* Compact hero for inner pages (no video) */
.bm-hero--page { min-height: 56svh; align-items: center; }
.bm-hero--page .bm-hero-inner { padding: 100px 22px 60px; align-items: center; }
.bm-hero--page .bm-brand-mark { font-size: clamp(1.5rem, 3.4vw, 2.4rem); }

/* ————— Sections ————— */
.bm-section {
  position: relative;
  padding: clamp(72px, 11vw, 130px) 22px;
}

.bm-section-inner {
  max-width: var(--bm-max);
  margin: 0 auto;
}

/* ————— Scènes d'ambiance en arrière-plan (frames Seedance) ————— */
.bm-has-scene { overflow: hidden; }
.bm-has-scene > :not(.bm-scene) { position: relative; z-index: 1; }

.bm-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bm-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(0.9);
}

/* Voile + vignette : lisibilité du texte et fondu vers les sections noires voisines */
/* Scène du carrousel : une image par boutique, crossfade sur la boutique active */
.bm-scene--showcase img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.bm-scene--showcase img.is-visible { opacity: 0.68; }

/* Voile plus léger que les autres scènes : le paysage doit se voir */
.bm-scene--showcase::after {
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 55%, rgba(10, 11, 13, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.85) 0%, rgba(10, 11, 13, 0.2) 26%, rgba(10, 11, 13, 0.2) 74%, rgba(10, 11, 13, 0.85) 100%);
}

.bm-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 38%, rgba(10, 11, 13, 0.6) 100%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.5) 28%, rgba(10, 11, 13, 0.5) 72%, rgba(10, 11, 13, 0.95) 100%);
}

.bm-kicker {
  font-family: var(--bm-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bm-neon);
  margin: 0 0 14px;
}

.bm-section h2 {
  font-family: var(--bm-display);
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 14px;
  max-width: 22ch;
}

.bm-section-lead {
  font-size: 1.08rem;
  color: var(--bm-muted);
  max-width: 40rem;
  margin: 0 0 34px;
}

/* ————— Film band : bande verticale 9:16, spotlight tournant ————— */
.bm-film-band { padding-bottom: 40px; }

.bm-film-rail {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: var(--bm-max);
  margin: 10px auto 0;
  padding: 0 22px;
}

.bm-film-panel {
  flex: none;
  width: calc((100% - 64px) / 5);
  cursor: pointer;
}

.bm-film-frame {
  position: relative;
  border-radius: var(--bm-radius);
  overflow: hidden;
  background: var(--bm-bg-2);
  aspect-ratio: 9 / 16;
  border: 1px solid var(--bm-line-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease, border-color 0.6s ease;
}

.bm-film-panel:hover .bm-film-frame {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 255, 63, 0.25);
}

.bm-film-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Lime sleep wash via overlay (cheap) instead of multi-filter on decoded frames. */
  background:
    linear-gradient(180deg, transparent 55%, rgba(10, 11, 13, 0.72) 100%),
    rgba(18, 28, 8, 0.55);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.5s ease, background 0.5s ease;
  z-index: 1;
}

.bm-film-panel.is-live .bm-film-frame::after {
  background: linear-gradient(180deg, transparent 55%, rgba(10, 11, 13, 0.55) 100%);
  mix-blend-mode: normal;
}

.bm-film-video, .bm-film-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}

/* Live panel: show video; idle: poster only (no decode). */
.bm-film-video {
  opacity: 0;
  pointer-events: none;
}

.bm-film-panel.is-live .bm-film-video { opacity: 1; }
.bm-film-panel.is-live .bm-film-poster { opacity: 0; }

/* Cadrage vertical : recentre les sujets des films tournés en 16:9 */
.bm-film-panel:nth-child(1) .bm-film-video { object-position: 62% 50%; }
.bm-film-panel:nth-child(4) .bm-film-video { object-position: 66% 50%; }
.bm-film-panel:nth-child(5) .bm-film-video { object-position: 42% 50%; }

.bm-film-panel.is-live .bm-film-frame {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(212, 255, 63, 0.55);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(212, 255, 63, 0.12);
}

.bm-film-panel .bm-film-caption { opacity: 0.45; transition: opacity 0.6s ease, color 0.6s ease; }
.bm-film-panel.is-live .bm-film-caption { opacity: 1; color: var(--bm-neon); }

@media (max-width: 767px) {
  .bm-film-rail {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .bm-film-rail::-webkit-scrollbar { display: none; }
  .bm-film-panel { width: 44vw; scroll-snap-align: center; }
}

.bm-film-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--bm-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--bm-neon);
  background: rgba(10, 11, 13, 0.82);
  border: 1px solid rgba(212, 255, 63, 0.3);
  border-radius: 8px;
  padding: 4px 9px;
}

.bm-film-caption {
  margin: 12px 2px 0;
  font-family: var(--bm-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bm-ink);
}

/* ————— Path (sticky numbers) ————— */
.bm-path {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.bm-path-step {
  display: grid;
  grid-template-columns: minmax(72px, 160px) 1fr;
  gap: 18px 28px;
  padding: 34px 0;
  border-top: 1px solid var(--bm-line-soft);
  align-items: start;
}

.bm-path-step:last-child { border-bottom: 1px solid var(--bm-line-soft); }

.bm-path-num {
  font-family: var(--bm-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bm-neon);
  transition: color .3s ease;
}

.bm-path-step:hover .bm-path-num { color: var(--bm-neon); }

.bm-path-step h3 {
  font-family: var(--bm-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 8px;
}

.bm-path-step p { margin: 0; color: var(--bm-muted); max-width: 46rem; }

/* ————— Features (alternating asymmetric grid) ————— */
.bm-feature-row {
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 34px 0;
}

.bm-feature-media {
  border-radius: var(--bm-radius);
  overflow: hidden;
  border: 1px solid var(--bm-line-soft);
  background: var(--bm-bg-2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: rotate(-1deg);
  transition: transform .4s cubic-bezier(.2,.8,.3,1);
}

.bm-feature-row--flip .bm-feature-media { transform: rotate(1deg); }
.bm-feature-row:hover .bm-feature-media { transform: rotate(0deg) scale(1.01); }

.bm-feature-media img { width: 100%; }

.bm-feature-copy h3 {
  font-family: var(--bm-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 12px;
}

.bm-feature-copy p { color: var(--bm-muted); margin: 0 0 18px; max-width: 34rem; }

/* ————— Try (charcoal panel) ————— */
.bm-try {
  background: var(--bm-bg-2);
  border: 1px solid var(--bm-line-soft);
  border-radius: calc(var(--bm-radius) + 6px);
  padding: 22px;
}

.bm-try-hint { margin: 0 0 12px; color: var(--bm-muted); font-size: 0.95rem; }

.bm-try-form { display: flex; gap: 10px; flex-wrap: wrap; }

.bm-try-input {
  flex: 1 1 260px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--bm-line);
  background: var(--bm-bg);
  color: var(--bm-ink);
  font-family: var(--bm-body);
  font-size: 0.98rem;
}

.bm-try-input:focus { outline: none; border-color: var(--bm-neon); box-shadow: 0 0 0 3px var(--bm-neon-soft); }
.bm-try-input::placeholder { color: rgba(152, 162, 154, 0.7); }

.bm-try-select {
  flex: 0 1 auto;
  padding: 13px 12px;
  border-radius: 12px;
  border: 1px solid var(--bm-line);
  background: var(--bm-bg);
  color: var(--bm-ink);
  font-family: var(--bm-body);
  font-size: 0.92rem;
  cursor: pointer;
}

.bm-try-select:focus { outline: none; border-color: var(--bm-neon); box-shadow: 0 0 0 3px var(--bm-neon-soft); }

/* ————— Try : chat sandboxé ————— */
.bm-try-chat-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  overflow-y: auto;
  margin: 0 0 14px;
  padding: 4px 2px;
  scroll-behavior: smooth;
}

.bm-try-bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.bm-try-bubble--ai {
  align-self: flex-start;
  background: var(--bm-bg);
  border: 1px solid var(--bm-line-soft);
  color: var(--bm-ink);
  border-bottom-left-radius: 4px;
}

.bm-try-bubble--user {
  align-self: flex-end;
  background: var(--bm-neon);
  color: #0a0b0d;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.bm-try-bubble.is-pending {
  color: var(--bm-muted);
  animation: bm-try-pulse 1.2s ease-in-out infinite;
}

.bm-try-bubble.is-error { color: #ffb37a; border-color: rgba(255, 179, 122, 0.35); }

@keyframes bm-try-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.bm-try-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.bm-try-note { margin: 0; font-size: 0.88rem; color: var(--bm-muted); }
.bm-try-note-link { color: var(--bm-neon); font-weight: 600; text-decoration: none; }
.bm-try-note-link:hover { text-decoration: underline; }

.bm-try-quota {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--bm-muted);
  white-space: nowrap;
}

.bm-try-quota-bar {
  width: 90px;
  height: 5px;
  border-radius: 999px;
  background: var(--bm-line-soft);
  overflow: hidden;
}

.bm-try-quota-fill {
  display: block;
  height: 100%;
  min-width: 2px;
  border-radius: 999px;
  background: var(--bm-neon);
  transition: width 0.5s ease;
}

.bm-try-quota-fill.is-hot { background: #ffb37a; }

.bm-try-quota-count { font-variant-numeric: tabular-nums; color: var(--bm-ink); }

/* ————— Try : recherche produits (lecture seule) ————— */
.bm-try-status { margin: 14px 0 0; font-size: 0.92rem; color: var(--bm-muted); }

.bm-try-results-meta {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--bm-muted);
  font-variant-numeric: tabular-nums;
}

.bm-try-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.bm-try-page-btn {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--bm-line);
  background: var(--bm-bg);
  color: var(--bm-ink);
  font-family: var(--bm-body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.bm-try-page-btn:hover:not(:disabled) { border-color: var(--bm-neon); color: var(--bm-neon); }
.bm-try-page-btn:disabled { opacity: 0.35; cursor: default; }

.bm-try-page-indicator {
  font-size: 0.88rem;
  color: var(--bm-muted);
  font-variant-numeric: tabular-nums;
}

.bm-try-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.bm-try-product {
  background: var(--bm-bg);
  border: 1px solid var(--bm-line-soft);
  border-radius: 14px;
  padding: 10px;
  user-select: none;
  cursor: default;
}

.bm-try-product-media {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bm-bg-2);
  margin-bottom: 10px;
}

.bm-try-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.bm-try-product-title {
  margin: 0 0 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--bm-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bm-try-product-prices { display: flex; flex-direction: column; gap: 3px; }

.bm-try-product-price {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.83rem;
}

.bm-try-product-price-label { color: var(--bm-muted); }
.bm-try-product-price-value { font-weight: 600; color: var(--bm-ink); }
.bm-try-product-price--resale .bm-try-product-price-value { color: var(--bm-neon); }

.bm-try-product-meta { margin: 8px 0 0; font-size: 0.78rem; color: var(--bm-muted); }

@media (max-width: 860px) {
  .bm-try-products { grid-template-columns: repeat(2, 1fr); }
  .bm-try-bubble { max-width: 92%; }
  .bm-try-select { flex: 1 1 40%; }
}

/* ————— Fullpage : une section = un écran (desktop uniquement) ————— */
@media (min-width: 900px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  /* La nav ne doit plus consommer de hauteur de flux, sinon les slides
     100svh se décalent de sa hauteur et chaque tick devient un double pas. */
  body:has(.bm-fullpage) .bm-nav { position: fixed; top: 0; left: 0; right: 0; }

  .bm-fullpage > section {
    box-sizing: border-box;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .bm-fullpage > .bm-hero { padding: 0; }
  .bm-fullpage > .bm-serious-band { padding: 0; }
  .bm-fullpage > .bm-serious-band .bm-serious { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 92px; padding-bottom: 44px; }

  /* Les visuels des slides feature ne doivent jamais dépasser l'écran */
  .bm-fullpage .bm-feature-media img {
    max-height: min(60svh, 620px);
    width: 100%;
    object-fit: cover;
  }

  /* Films : bande verticale dimensionnée par la hauteur d'écran */
  .bm-fullpage .bm-film-panel { width: min(48svh * 9 / 16, calc((100% - 64px) / 5)); }
  .bm-fullpage .bm-film-caption { font-size: 0.85rem; }

  /* Étapes : deux colonnes pour tenir sur un écran */
  .bm-fullpage .bm-path { grid-template-columns: 1fr 1fr; gap: 0 56px; }
  .bm-fullpage .bm-path-step { padding: 18px 0; }
  .bm-fullpage .bm-path-num { font-size: clamp(1.8rem, 4vw, 3rem); }
  .bm-fullpage #path .bm-section-lead { margin-bottom: 12px; }

  /* Boutiques exemples : header minimal, cartes maximales */
  .bm-fullpage #movement h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
  .bm-fullpage .bm-showcase { margin-top: 8px; }
  .bm-fullpage .bm-showcase-card { width: min(86vw, 52svh * 16 / 9); }
  .bm-fullpage .bm-showcase-track { padding: 6px calc((100vw - min(86vw, 52svh * 16 / 9)) / 2); }
  .bm-fullpage .bm-showcase-card figcaption { padding: 8px 14px; }
  .bm-fullpage .bm-move-note { margin-top: 6px; }

  /* Bibliothèque : cartes horizontales plus hautes, couverture dominante */
  .bm-fullpage #library .bm-section-lead { margin-bottom: 10px; max-width: 46rem; }
  .bm-fullpage .bm-books { margin-top: 14px; }
  .bm-fullpage .bm-books-track { padding: 12px calc((100vw - min(720px, 72vw)) / 2); gap: 26px; }
  .bm-fullpage .bm-bookcard {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    width: min(760px, 76vw);
    min-height: clamp(320px, 48svh, 440px);
  }
  .bm-fullpage .bm-bookcard-cover {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    padding: 24px 24px 24px 30px;
  }
  .bm-fullpage .bm-bookcard-cover img {
    height: clamp(260px, 44svh, 380px);
    width: auto;
    aspect-ratio: 2 / 3;
  }
  .bm-fullpage .bm-bookcard-body {
    padding: 28px 28px 10px 0;
    gap: 10px;
    justify-content: center;
  }
  .bm-fullpage .bm-bookcard-title { font-size: clamp(1.2rem, 1.7vw, 1.5rem); }
  .bm-fullpage .bm-bookcard-why { font-size: 1.02rem; max-width: 34ch; }
  .bm-fullpage .bm-bookcard-stars { margin-top: 12px; font-size: 1.05rem; }
  .bm-fullpage .bm-bookcard-buy { padding: 14px 28px 24px 0; border-top: none; }
  .bm-fullpage .bm-bookcard-price { font-size: 1.2rem; }
  .bm-fullpage .bm-books-note { margin-top: 10px; }

  /* One more thing : le credo respire, il tient seul sur l'écran */
  .bm-fullpage .bm-omt-kicker { font-size: 1.05rem; margin-bottom: 6px; }
  .bm-fullpage .bm-omt h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 10px; }
  .bm-fullpage .bm-omt .bm-section-lead { margin-bottom: 18px; max-width: 52rem; }
  .bm-fullpage .bm-omt-creed { margin-bottom: 18px; max-width: 60rem; }
  .bm-fullpage .bm-omt-creed-line { font-size: clamp(1.1rem, 1.9vw, 1.45rem); margin-bottom: 8px; }
  .bm-fullpage .bm-omt-oui { font-size: clamp(3rem, 7vw, 5rem); margin: 16px 0 10px; }
  .bm-fullpage .bm-omt-pledge { margin-top: 16px; }

  /* Inscription : formulaire compact, groupes de chips côte à côte */
  .bm-fullpage > .bm-serious-band .bm-serious { padding-top: 78px; padding-bottom: 32px; }
  .bm-fullpage .bm-serious h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: none; }
  .bm-fullpage .bm-serious .bm-section-lead { margin-bottom: 10px; max-width: 52rem; }
  .bm-fullpage .bm-trial-layout { grid-template-columns: 1.45fr 0.75fr; gap: 20px; }
  .bm-fullpage .bm-trial { padding: 18px 22px; }
  .bm-fullpage .bm-trial-steps { margin-bottom: 8px; }
  .bm-fullpage .bm-field { margin-bottom: 8px; }
  .bm-fullpage .bm-trial-actions { margin-top: 8px; }
  /* Chips auto-largeur sur une rangée : la grille fixe gaspillait la hauteur.
     L'état sélectionné (fond + bordure néon) remplace la puce radio. */
  .bm-fullpage .bm-choice-grid { display: flex; flex-wrap: wrap; gap: 8px; }
  .bm-fullpage .bm-choice { flex: none; width: auto; padding: 8px 12px; font-size: 0.84rem; }
  .bm-fullpage .bm-choice input { position: absolute; opacity: 0; pointer-events: none; }

  /* Chat + recherche : remplir l'écran, scroll interne pour les résultats */
  .bm-fullpage #ask .bm-try-chat-log { min-height: 25svh; max-height: 38svh; }
  .bm-fullpage #find .bm-try-products { max-height: 42svh; overflow-y: auto; }
}

.bm-fullpage-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}

@media (min-width: 900px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .bm-fullpage-dots { display: flex; }
}

.bm-fullpage-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--bm-line);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.bm-fullpage-dot:hover { border-color: var(--bm-neon); }

.bm-fullpage-dot.is-active {
  background: var(--bm-neon);
  border-color: var(--bm-neon);
  transform: scale(1.3);
}

/* ————— Movement / universes marquee ————— */
.bm-move { text-align: center; }
.bm-move h2 { margin-left: auto; margin-right: auto; }
.bm-move .bm-section-lead { margin-left: auto; margin-right: auto; }

.bm-marquee {
  overflow: hidden;
  margin: 26px calc(50% - 50vw) 0;
  width: 100vw;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.bm-marquee + .bm-marquee { margin-top: 14px; }

.bm-marquee-track {
  display: inline-flex;
  gap: 14px;
  padding: 4px 0;
  white-space: nowrap;
  animation: bm-marquee 26s linear infinite;
  will-change: transform;
}

.bm-marquee--reverse .bm-marquee-track { animation-direction: reverse; }

@keyframes bm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bm-marquee-chip {
  font-family: var(--bm-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bm-ink);
  border: 1px solid var(--bm-line);
  border-radius: 999px;
  padding: 12px 26px;
  transition: all .2s ease;
}

.bm-marquee-chip:nth-child(odd) {
  color: var(--bm-neon);
  border-color: rgba(212, 255, 63, 0.35);
}

.bm-move-note {
  margin: 30px auto 0;
  color: var(--bm-muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

/* ————— Showcase : carousel de boutiques d'exemple ————— */
.bm-showcase-hint {
  margin: 34px auto 0;
  font-family: var(--bm-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bm-neon);
}

.bm-showcase {
  overflow-x: auto;
  margin: 22px calc(50% - 50vw) 0;
  width: 100vw;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Frontière floue sur les bords : les cartes voisines s'évanouissent */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.bm-showcase::-webkit-scrollbar { display: none; }

.bm-showcase-track {
  display: inline-flex;
  gap: 24px;
  /* Marge interne pour que la première et la dernière carte puissent se centrer */
  padding: 10px calc((100vw - min(var(--bm-max), 86vw)) / 2);
}

.bm-showcase-card {
  flex: none;
  /* Une boutique quasi pleine largeur de section, les voisines dépassent sur les bords */
  width: min(var(--bm-max), 86vw);
  scroll-snap-align: center;
  margin: 0;
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  background: var(--bm-bg-2);
  overflow: hidden;
  transition: opacity .6s ease, transform .6s cubic-bezier(.25,.8,.3,1), border-color .35s ease, box-shadow .35s ease;
}

.bm-showcase-card:hover {
  border-color: rgba(212, 255, 63, 0.4);
}

/* Carousel actif : la carte centrale est nette, les voisines en retrait */
.bm-showcase--live .bm-showcase-card {
  opacity: 0.5;
  transform: scale(0.95);
}

.bm-showcase--live .bm-showcase-card.is-active {
  opacity: 1;
  transform: none;
  border-color: rgba(212, 255, 63, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.bm-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  display: block;
}

.bm-showcase-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-top: 1px solid var(--bm-line-soft);
}

.bm-showcase-brand {
  font-family: var(--bm-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bm-ink);
  white-space: nowrap;
}

.bm-showcase-cat {
  color: var(--bm-muted);
  font-size: 0.85rem;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ————— Slider de la vitrine ————— */
.bm-showcase-controls {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  padding: 0 22px;
}

.bm-showcase-range {
  -webkit-appearance: none;
  appearance: none;
  width: min(420px, 72vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    var(--bm-neon) 0%,
    var(--bm-neon) var(--bm-fill, 0%),
    rgba(242, 245, 238, 0.14) var(--bm-fill, 0%));
  cursor: pointer;
  outline-offset: 6px;
}

.bm-showcase-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bm-neon);
  border: 5px solid var(--bm-bg);
  box-shadow: 0 0 0 1px rgba(212, 255, 63, 0.55), 0 0 18px rgba(212, 255, 63, 0.35);
  transition: transform .2s ease;
}

.bm-showcase-range::-webkit-slider-thumb:hover { transform: scale(1.15); }

.bm-showcase-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bm-neon);
  border: 5px solid var(--bm-bg);
  box-shadow: 0 0 0 1px rgba(212, 255, 63, 0.55), 0 0 18px rgba(212, 255, 63, 0.35);
  transition: transform .2s ease;
}

.bm-showcase-range::-moz-range-thumb:hover { transform: scale(1.15); }

/* Sur mobile, la <source> sert la maquette portrait : la carte suit.
   Aligné sur le breakpoint mobile global (767px). */
@media (max-width: 767px) {
  .bm-showcase {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .bm-showcase-track {
    padding-left: calc((100vw - min(86vw, 420px)) / 2);
    padding-right: calc((100vw - min(86vw, 420px)) / 2);
  }
  .bm-showcase-card { width: min(86vw, 420px); }
  .bm-showcase-card img { aspect-ratio: 2 / 3; }
}

/* Legacy chips (product/pricing fallback) */
.bm-move-chips {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.bm-move-chips li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bm-ink);
  background: var(--bm-bg-2);
  border: 1px solid var(--bm-line);
  border-radius: 10px;
  padding: 8px 14px;
}

/* ————— Serious / CTA band (video bg) ————— */
.bm-serious-band { padding: 0; }

.bm-serious {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 14vw, 170px) 22px;
  text-align: center;
}

.bm-serious-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bm-serious-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--bm-bg) 0%, rgba(10, 11, 13, 0.45) 30%, rgba(10, 11, 13, 0.45) 70%, var(--bm-bg) 100%);
}

.bm-serious-inner { position: relative; z-index: 2; max-width: var(--bm-max); margin: 0 auto; }

.bm-serious h2 {
  font-family: var(--bm-display);
  font-size: clamp(2rem, 5.6vw, 4rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 auto 14px;
  max-width: 18ch;
}

.bm-serious .bm-section-lead { margin: 0 auto 26px; }

/* ————— Books shelf : carousel horizontal de vraies couvertures ————— */
.bm-books {
  overflow-x: auto;
  margin: 26px calc(50% - 50vw) 0;
  width: 100vw;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.bm-books::-webkit-scrollbar { display: none; }

.bm-books-track {
  display: inline-flex;
  align-items: stretch;
  gap: 22px;
  /* Marge interne pour que la première et la dernière carte puissent se centrer */
  padding: 14px calc((100vw - min(300px, 74vw)) / 2);
}

.bm-bookcard {
  position: relative;
  flex: none;
  width: min(320px, 82vw);
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
  text-decoration: none;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--bm-bg-3), var(--bm-bg-2));
  border: 1px solid var(--bm-line-soft);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .35s ease, opacity .35s ease;
}

.bm-bookcard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--bm-neon);
  opacity: 0.85;
  z-index: 1;
}

.bm-bookcard:hover { transform: translateY(-6px); border-color: rgba(212, 255, 63, 0.4); }

/* Carousel actif : la carte centrée est nette, les voisines en retrait */
.bm-showcase--live .bm-bookcard { opacity: 0.55; transform: scale(0.96); }
.bm-showcase--live .bm-bookcard.is-active {
  opacity: 1;
  transform: none;
  border-color: rgba(212, 255, 63, 0.3);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
}
.bm-showcase--live .bm-bookcard:hover { opacity: 1; transform: translateY(-6px); }

.bm-bookcard-cover {
  display: block;
  padding: 28px 28px 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(212, 255, 63, 0.08), transparent 60%),
    var(--bm-bg-3);
}

.bm-bookcard-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  /* drop-shadow kept light — avoid heavy filter cost on many cards */
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.5));
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}

.bm-bookcard:hover .bm-bookcard-cover img { transform: translateY(-4px) rotate(-1deg); }

.bm-bookcard-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding: 18px 20px 14px;
}

.bm-bookcard-title {
  font-family: var(--bm-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bm-ink);
}

.bm-bookcard-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bm-neon);
}

.bm-bookcard-why {
  margin-top: 4px;
  color: var(--bm-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bm-bookcard-stars {
  display: block;
  margin-top: 8px;
  color: #ffd60a;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 214, 10, 0.35);
}

.bm-bookcard-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  border-top: 1px solid var(--bm-line-soft);
}

.bm-bookcard-price {
  font-family: var(--bm-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--bm-neon);
  white-space: nowrap;
}

.bm-bookcard-amazon {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bm-muted);
  white-space: nowrap;
  transition: color .25s ease;
}

.bm-bookcard:hover .bm-bookcard-amazon { color: var(--bm-ink); }

.bm-books-note {
  margin: 14px auto 0;
  max-width: var(--bm-max);
  padding: 0 22px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--bm-muted);
  opacity: 0.75;
}

/* ————— One more thing ————— */
.bm-omt {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--bm-line-soft);
}

.bm-omt::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 90vw);
  height: 460px;
  background: radial-gradient(closest-side, rgba(212, 255, 63, 0.13), transparent 72%);
  pointer-events: none;
}

.bm-omt-kicker {
  font-family: var(--bm-display);
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bm-neon);
  margin: 0 0 18px;
}

.bm-omt h2 { margin-left: auto; margin-right: auto; }
.bm-omt .bm-section-lead { margin-left: auto; margin-right: auto; }

/* Scène OMT : la foule face à l'aube doit rester lisible, voile allégé au centre */
.bm-scene--omt img { opacity: 0.62; filter: saturate(1); }
.bm-scene--omt::after {
  background:
    radial-gradient(120% 90% at 50% 55%, transparent 42%, rgba(10, 11, 13, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.92) 0%, rgba(10, 11, 13, 0.35) 30%, rgba(10, 11, 13, 0.3) 62%, rgba(10, 11, 13, 0.92) 100%);
}

.bm-omt-creed {
  max-width: 56rem;
  margin: 0 auto 48px;
}

.bm-omt-creed-line {
  font-family: var(--bm-display);
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--bm-ink);
  margin: 0 0 16px;
}

.bm-omt-oui {
  font-family: var(--bm-display);
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bm-neon);
  text-shadow: 0 0 60px var(--bm-neon-glow), 0 0 120px rgba(212, 255, 63, 0.25);
  margin: 34px 0 16px;
}

/* Ligne d'engagements : le reçu discret sous le serment */
.bm-omt-pledge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 6px;
  max-width: 60rem;
  margin: 26px auto 0;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--bm-muted);
}

.bm-omt-pledge span { white-space: nowrap; }

.bm-omt-pledge span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--bm-neon);
}

.bm-omt-punch {
  font-family: var(--bm-display);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bm-ink);
  margin: 0;
}

.bm-omt-cta { justify-content: center; }

/* ————— Footer ————— */
.bm-footer {
  border-top: 1px solid var(--bm-line-soft);
  padding: 60px 0 34px;
  overflow: hidden;
}

.bm-footer-word {
  font-family: var(--bm-display);
  font-weight: 900;
  font-size: clamp(3rem, 12.5vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 -0.5vw 40px;
  color: var(--bm-neon);
  text-shadow: 0 0 80px var(--bm-neon-glow);
  white-space: nowrap;
}

.bm-footer-word span { color: var(--bm-ink); text-shadow: none; }

.bm-footer-marquee {
  overflow: hidden;
  border-top: 1px solid var(--bm-line-soft);
  border-bottom: 1px solid var(--bm-line-soft);
  padding: 12px 0;
  margin-bottom: 44px;
}

.bm-footer-marquee .bm-marquee-track {
  animation-duration: 40s;
  gap: 40px;
  font-family: var(--bm-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bm-muted);
}

.bm-footer-inner {
  max-width: var(--bm-max);
  margin: 0 auto;
  padding: 0 22px;
}

.bm-footer-cols {
  display: grid;
  gap: 30px;
  margin-bottom: 44px;
}

.bm-footer-cols h4 {
  font-family: var(--bm-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bm-neon);
  margin: 0 0 12px;
}

.bm-footer-cols a {
  display: block;
  padding: 5px 0;
  color: var(--bm-muted);
  font-size: 0.95rem;
  position: relative;
  width: fit-content;
  transition: color .18s ease;
}

.bm-footer-cols a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 0;
  background: var(--bm-neon);
  transition: width .25s ease;
}

.bm-footer-cols a:hover { color: var(--bm-neon); }
.bm-footer-cols a:hover::after { width: 100%; }

.bm-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--bm-line-soft);
  color: var(--bm-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ————— Trial form ————— */
.bm-trial {
  background: var(--bm-bg-2);
  border: 1px solid var(--bm-line-soft);
  border-radius: calc(var(--bm-radius) + 4px);
  padding: 24px;
}

.bm-trial-steps { display: flex; gap: 10px; margin-bottom: 20px; }

.bm-trial-step {
  font-family: var(--bm-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bm-muted);
  border: 1px solid var(--bm-line);
  border-radius: 999px;
  padding: 7px 14px;
}

.bm-trial-step.is-active { color: #0a0b0d; background: var(--bm-neon); border-color: var(--bm-neon); }
.bm-trial-step.is-done { color: var(--bm-neon); border-color: var(--bm-neon); }

.bm-field { margin-bottom: 16px; }

.bm-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--bm-ink);
}

.bm-field input[type="text"],
.bm-field input[type="email"] {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--bm-line);
  background: var(--bm-bg);
  color: var(--bm-ink);
  font-family: var(--bm-body);
  font-size: 0.98rem;
}

.bm-field input:focus { outline: none; border-color: var(--bm-neon); box-shadow: 0 0 0 3px var(--bm-neon-soft); }

.bm-field-hint { display: block; font-size: 0.85rem; color: var(--bm-muted); margin-top: 6px; }
.bm-field-hint strong { color: var(--bm-neon); }

.bm-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.bm-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--bm-line);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bm-muted);
  cursor: pointer;
  transition: all .18s ease;
}

.bm-choice input { accent-color: var(--bm-neon); }
.bm-choice:hover { border-color: var(--bm-neon); color: var(--bm-ink); }
.bm-choice.is-selected { border-color: var(--bm-neon); color: var(--bm-ink); background: var(--bm-neon-soft); }

.bm-trial-actions { display: flex; gap: 10px; margin-top: 20px; }

.bm-trial-layout { display: grid; gap: 32px; }

/* ————— Pillars / pricing cards ————— */
.bm-grid-3 { display: grid; gap: 16px; }

.bm-pillar {
  background: var(--bm-bg-2);
  border: 1px solid var(--bm-line-soft);
  border-radius: var(--bm-radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s ease, border-color .3s ease;
}

.bm-pillar:hover { transform: translateY(-4px); border-color: rgba(212, 255, 63, 0.35); }

.bm-pillar-num {
  font-family: var(--bm-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bm-neon);
}

.bm-pillar h3 {
  font-family: var(--bm-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.bm-pillar p { color: var(--bm-muted); margin: 0; }

/* ————— Misc / shared ————— */
.bm-dark-band {
  background: var(--bm-bg-2);
  border-top: 1px solid var(--bm-line-soft);
  border-bottom: 1px solid var(--bm-line-soft);
}

.bm-hero-stage {
  border-radius: var(--bm-radius);
  overflow: hidden;
  border: 1px solid var(--bm-line-soft);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.bm-hero-stage img { width: 100%; }

.bm-share-block {
  background: var(--bm-bg-2);
  border: 1px solid var(--bm-line-soft);
  border-left: 3px solid var(--bm-neon);
  border-radius: 16px;
  padding: 22px;
}

.bm-share-quote {
  font-family: var(--bm-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
}

.bm-share-mark {
  font-family: var(--bm-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 16px 0 0;
}

.bm-share-mark span { color: var(--bm-neon); }

.bm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ————— Mobile nav ————— */
.bm-mobile-nav {
  display: none;
  padding: 10px 18px 16px;
  background: rgba(10, 11, 13, 0.96);
  border-bottom: 1px solid var(--bm-line-soft);
}

.bm-mobile-nav.is-open { display: grid; gap: 4px; }

.bm-mobile-nav a {
  padding: 13px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--bm-ink);
}

.bm-mobile-nav a:hover { background: var(--bm-neon-soft); color: var(--bm-neon); }

.bm-burger {
  display: inline-flex;
  border: 1px solid var(--bm-line);
  background: transparent;
  color: var(--bm-ink);
  border-radius: 10px;
  padding: 8px 11px;
  cursor: pointer;
}

/* ————— Scroll reveals ————— */
.bm-reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
}

.bm-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--bm-reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .bm-reveal.is-pending { opacity: 1; transform: none; filter: none; }
  .bm-marquee-track { animation: none; }
  .bm-hero-video, .bm-serious-video, .bm-film-video { display: none; }
}

/* ————— Desktop ————— */
@media (min-width: 768px) {
  .bm-nav-links { display: flex; }
  .bm-burger { display: none; }
  .bm-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .bm-stat-row { grid-template-columns: repeat(3, 1fr); }
  .bm-footer-cols { grid-template-columns: repeat(4, 1fr); }
  .bm-trial-layout { grid-template-columns: 1fr 1.05fr; align-items: start; }

  .bm-hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
  }

  .bm-hero-copy { grid-column: 1; }
  .bm-hero-aside { grid-column: 2; justify-self: end; align-self: end; }

  /* alternating feature asymmetry: 7/5 then 5/7 */
  .bm-feature-row { grid-template-columns: 7fr 5fr; gap: 56px; padding: 44px 0; }
  .bm-feature-row--flip { grid-template-columns: 5fr 7fr; }
  .bm-feature-row--flip .bm-feature-media { order: 2; }
  .bm-feature-row--flip .bm-feature-copy { order: 1; }

  .bm-path-step { grid-template-columns: 200px 1fr; }
}

.bm-try-cta-row { margin: 10px 0 14px; }

/* ————— Mobile ————— */
@media (max-width: 767px) {
  .bm-nav-actions .bm-btn-ghost { display: none; }
  .bm-hero-inner { padding: 96px 20px 40px; }
  .bm-prompt { max-width: 100%; }
  .bm-film-panel,
  .bm-film-panel:nth-child(1),
  .bm-film-panel:nth-child(2) { grid-column: 1 / -1; }
  .bm-choice-grid { grid-template-columns: 1fr; }
  .bm-bookcard { width: min(300px, 84vw); }
  .bm-books-track { padding-left: calc((100vw - min(300px, 84vw)) / 2); padding-right: calc((100vw - min(300px, 84vw)) / 2); }
  .bm-bookcard-cover { padding: 30px 30px 0; }
  .bm-bookcard-title { font-size: 1.15rem; }
  .bm-omt-creed-line { font-size: 1.15rem; }
  .bm-omt-oui { font-size: clamp(3.2rem, 18vw, 5rem); }
  .bm-omt-pledge { flex-direction: column; align-items: center; }
  .bm-omt-pledge span + span::before { content: none; }
  .bm-footer-word { font-size: clamp(2.2rem, 13vw, 4rem); }
  .bm-section h2 { max-width: none; }
}
