:root {
  --ink: #edf4ff;
  --ink-muted: #b9c8e8;
  --card: rgba(7, 11, 19, 0.66);
  --border: rgba(176, 196, 237, 0.24);
  --accent-a: #8be5ff;
  --accent-b: #ffc07d;
  --bm-primary-opacity: 1;
  --bm-secondary-opacity: 0;
  --bm-block7-scene-opacity: 0;
  --bm-cta-scene-opacity: 0;
  --bm-block4-fade: 0;
  --bm-block4-planets-opacity: 1;
  --bm-block4-mask-opacity: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background: #050914;
  font-family: "Inter", sans-serif;
}

.bm-scene {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bm-layer {
  position: absolute;
  inset: -7%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.bm-sky {
  background: radial-gradient(circle at 22% 16%, #31548f 0%, #172a4a 26%, #0a1222 58%, #04070f 100%);
}

.bm-photo {
  background-size: cover;
  background-position: center center;
  transition: opacity 260ms linear;
}

.bm-photo-primary {
  background-image: url('../assets/BM_Man.jpg');
  opacity: var(--bm-primary-opacity, 1);
}

.bm-photo-secondary {
  background-image: linear-gradient(180deg, rgba(7, 12, 21, 0.18) 0%, rgba(7, 12, 21, 0.42) 52%, rgba(4, 8, 14, 0.72) 100%),
    url('../assets/BM_background.jpg');
  opacity: var(--bm-secondary-opacity, 0);
}

.bm-dust {
  background-image: radial-gradient(circle at 16% 78%, rgba(255, 202, 129, 0.24), transparent 44%),
    radial-gradient(circle at 84% 34%, rgba(122, 248, 255, 0.16), transparent 50%),
    radial-gradient(circle at 56% 62%, rgba(255, 255, 255, 0.08), transparent 52%);
  opacity: calc(var(--bm-progress, 0) * 0.28);
  mix-blend-mode: screen;
}

.bm-beam {
  opacity: calc(var(--bm-progress, 0) * 0.24);
  mix-blend-mode: screen;
}

.bm-beam-a {
  background: linear-gradient(196deg, transparent 26%, rgba(135, 244, 255, 0.3) 46%, transparent 72%);
}

.bm-beam-b {
  background: linear-gradient(158deg, transparent 24%, rgba(255, 191, 116, 0.28) 48%, transparent 74%);
}

.bm-grid {
  background-image: linear-gradient(rgba(173, 192, 234, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 192, 234, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, black 34%, transparent 78%);
  opacity: calc(var(--bm-progress, 0) * 0.18);
}

.bm-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 58%, rgba(0, 0, 0, 0.28) 100%);
}

.bm-noise {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  opacity: 0.05;
}

.menu-shell {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 12;
}

.menu-toggle {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(6, 9, 19, 0.56);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(150, 197, 255, 0.42);
}

.menu-toggle-lines {
  width: 22px;
  display: grid;
  gap: 5px;
}

.menu-toggle-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #d8e4fb;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-shell.is-open .menu-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-shell.is-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.menu-shell.is-open .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  z-index: 12;
  display: grid;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 9, 19, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.menu-shell.is-open .site-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4d2f2;
  transition: color 200ms ease, transform 200ms ease, background-color 200ms ease;
}

.menu-link:hover {
  color: #f4f8ff;
  transform: translateX(2px);
}

.menu-link.is-active {
  color: #05121d;
  background: linear-gradient(135deg, #84f3de, #96c5ff);
}

.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;
}

.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 9, 19, 0.56);
  backdrop-filter: blur(8px);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  min-width: 48px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4d2f2;
  background: transparent;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.lang-btn:hover {
  color: #f4f8ff;
  transform: translateY(-1px);
}

.lang-btn.is-active {
  color: #05121d;
  background: linear-gradient(135deg, #84f3de, #96c5ff);
}

.bm-hero {
  position: relative;
  z-index: 5;
  min-height: 92vh;
  min-height: 92svh;
  max-width: 1120px;
  margin: 0 auto;
  padding:
    max(calc(var(--chrome-top) + 44px), 14vh)
    max(20px, env(safe-area-inset-right))
    max(calc(var(--safe-bottom) + 24px), 8vh)
    max(20px, env(safe-area-inset-left));
  display: grid;
  place-content: end center;
  text-align: center;
}

.hero-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.bm-hero h1 {
  margin: 12px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.18);
}

.hero-lede {
  margin: 0 auto;
  max-width: 840px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(8, 11, 21, 0.48);
  backdrop-filter: blur(8px);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.68;
  color: #d7e4ff;
}

.bm-main {
  position: relative;
  z-index: 5;
  max-width: 1220px;
  margin: 0 auto;
  padding:
    max(calc(var(--chrome-top) + 88px), 18vh)
    16px
    0;
  display: grid;
  gap: min(26vh, 250px);
}

.bm-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.bm-block-10 {
  display: block;
  min-height: 185vh;
}

.bm-block-10 .bm-copy {
  min-height: auto;
}

.bm-block-10-stage {
  position: sticky;
  top: 11vh;
  min-height: 82vh;
  width: 100%;
  display: grid;
  place-items: center;
}

.bm-block-10-copy {
  width: 60%;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.bm-block-10-ornament {
  position: absolute;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  opacity: 0;
  will-change: left, top, transform, opacity;
  pointer-events: none;
  z-index: 2;
}

.bm-block-10-badass,
.bm-block-10-dust {
  width: clamp(132px, 15vw, 196px);
  aspect-ratio: 4 / 3;
}

.bm-block-10-fund {
  width: clamp(124px, 14vw, 188px);
  aspect-ratio: 4 / 5;
}

.bm-block-10-ego {
  width: clamp(168px, 18vw, 252px);
  aspect-ratio: 500 / 312;
  object-fit: contain;
}

.bm-block-10-love {
  width: clamp(152px, 17vw, 230px);
  aspect-ratio: 400 / 402;
  object-fit: contain;
}

.bm-block-10-next-year {
  width: clamp(152px, 17vw, 230px);
  aspect-ratio: 400 / 445;
  object-fit: contain;
}

html.is-coarse-pointer .bm-block-10 {
  min-height: auto;
}

html.is-coarse-pointer .bm-block-10-stage {
  position: relative;
  top: auto;
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "badass . dust"
    ". ego ."
    "copy copy copy"
    "love next fund";
  align-items: start;
  justify-items: center;
  gap: 10px 8px;
  padding:
    max(calc(var(--chrome-top) + 8px), 18px)
    0
    max(calc(var(--safe-bottom) + 16px), 24px);
}

html.is-coarse-pointer .bm-block-10-copy {
  grid-area: copy;
  width: min(calc(100% - 10px), 100%);
  margin: 0 auto;
  justify-self: stretch;
  align-self: start;
}

html.is-coarse-pointer .bm-block-10-badass {
  grid-area: badass;
}

html.is-coarse-pointer .bm-block-10-dust {
  grid-area: dust;
}

html.is-coarse-pointer .bm-block-10-ego {
  grid-area: ego;
}

html.is-coarse-pointer .bm-block-10-love {
  grid-area: love;
}

html.is-coarse-pointer .bm-block-10-next-year {
  grid-area: next;
}

html.is-coarse-pointer .bm-block-10-fund {
  grid-area: fund;
}

html.is-coarse-pointer .bm-block-10-ornament {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  opacity: 1 !important;
  transform: none !important;
  align-self: start;
  justify-self: center;
}

.bm-block-1 {
  display: block;
  min-height: 185vh;
}

.bm-block-1-sticky {
  position: sticky;
  top: 11vh;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.bm-block-1 .bm-copy,
.bm-block-1 .bm-media {
  min-height: auto;
}

.bm-block-1 .bm-copy {
  align-content: start;
}

.bm-block-1 .bm-map-media {
  display: block;
}

.bm-block-1 .bm-map-shell {
  min-height: 0;
}

.bm-block-4-scene {
  position: relative;
  min-height: 160vh;
}

.bm-block-4-stage {
  position: sticky;
  top: 9vh;
  min-height: 82vh;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 58px rgba(0, 0, 0, 0.34);
  padding: 0;
}

.bm-block-4-bg,
.bm-block-4-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bm-block-4-bg {
  background-size: cover;
  background-position: center center;
}

.bm-block-4-bg-planets {
  background-image: url('../assets/BM_section4_planets.jpg');
  opacity: var(--bm-block4-planets-opacity, 1);
}

.bm-block-4-bg-mask {
  background-image: url('../assets/BM_section4_mask.jpg');
  opacity: var(--bm-block4-mask-opacity, 0);
}

.bm-block-4-overlay {
  background: linear-gradient(180deg, rgba(3, 7, 14, 0.22) 0%, rgba(3, 7, 14, 0.44) 54%, rgba(3, 7, 14, 0.74) 100%);
  z-index: 1;
}

.bm-block-4-copy {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  pointer-events: none;
  text-align: center;
  z-index: 2;
}

.bm-block-4-copy .bm-index {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  width: min(calc(100% - 44px), 1180px);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.bm-block-4-copy h2 {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: min(calc(100% - 44px), 1180px);
  margin: 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.38rem, 2.8vw, 2.4rem);
  letter-spacing: 0.01em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.66);
}

.bm-block-4-copy p:last-child {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  width: min(calc(100% - 44px), 1100px);
  margin: 0 auto;
  line-height: 1.72;
  color: #eef4ff;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.72);
}

.bm-block-2 {
  display: block;
  min-height: 250vh;
}

.bm-block-2-sticky {
  position: sticky;
  top: 11vh;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 16px;
  align-items: center;
}

.bm-block-3-scene {
  position: relative;
  min-height: 225vh;
}

.bm-block-3-stage {
  position: sticky;
  top: 9vh;
  min-height: 82vh;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 58px rgba(0, 0, 0, 0.34);
  background-image: linear-gradient(180deg, rgba(3, 8, 16, 0.08) 24%, rgba(3, 8, 16, 0.46) 70%, rgba(3, 8, 16, 0.72) 100%),
    url('../assets/night.jpg');
  background-size: cover;
  background-position: center center;
}

.bm-packman-runner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  will-change: left, top, width, transform, opacity;
}

.bm-packman-sequence {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(900px, 78vw);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(174, 199, 241, 0.34);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.44);
  background: rgba(2, 5, 12, 0.72);
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  will-change: opacity, transform;
}

.bm-packman-sequence-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bm-block-3-copy {
  position: absolute;
  inset: 0;
  width: 100%;
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
  z-index: 3;
}

.bm-block-3-copy .bm-index {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  width: min(calc(100% - 44px), 1180px);
  margin: 0;
  margin-inline: auto;
  text-align: center;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.bm-block-3-copy h2 {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: min(calc(100% - 44px), 1180px);
  margin: 0;
  margin-inline: auto;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.38rem, 2.8vw, 2.4rem);
  letter-spacing: 0.01em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.66);
}

.bm-block-3-copy p:last-child {
  position: absolute;
  left: 0;
  right: 0;
  width: min(calc(100% - 32px), 1240px);
  bottom: 12px;
  margin: 0;
  margin-inline: auto;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(170, 198, 242, 0.3);
  background: rgba(6, 10, 20, 0.54);
  backdrop-filter: blur(6px);
  text-align: left;
  line-height: 1.72;
  color: #dbe8ff;
}

.bm-block-5-scene {
  position: relative;
  min-height: 220vh;
}

.bm-block-5-stage {
  position: sticky;
  top: 9vh;
  min-height: 82vh;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 58px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at 50% 34%, rgba(88, 112, 168, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(5, 10, 19, 0.58) 0%, rgba(4, 8, 16, 0.78) 100%);
}

.bm-block-5-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(186, 209, 248, 0.04), rgba(186, 209, 248, 0.04)),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

.bm-block-5-sequence {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(1120px, 78vw);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(174, 199, 241, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  background: rgba(2, 5, 12, 0.72);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.bm-block-5-sequence-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bm-block-5-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  width: min(calc(100% - 32px), 1220px);
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(170, 198, 242, 0.3);
  background: rgba(6, 10, 20, 0.54);
  backdrop-filter: blur(6px);
  z-index: 3;
}

.bm-block-5-copy .bm-index {
  margin: 0 0 8px;
}

.bm-block-5-copy h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.32rem, 2.7vw, 2.2rem);
  letter-spacing: 0.01em;
}

.bm-block-5-copy p:last-child {
  margin: 0;
  max-width: 88ch;
  line-height: 1.72;
  color: #dbe8ff;
}

.bm3-text {
  opacity: 0;
  transform: translate3d(-56vw, 0, 0);
  will-change: transform, opacity;
}

.bm-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 58px rgba(0, 0, 0, 0.26);
}

.bm-copy {
  min-height: 54vh;
  padding: 24px;
  display: grid;
  align-content: center;
}

.bm-index {
  margin: 0 0 8px;
  color: var(--accent-a);
  letter-spacing: 0.14em;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
}

.bm-copy h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.32rem, 2.7vw, 2.2rem);
  letter-spacing: 0.01em;
}

.bm-copy p:last-child {
  margin: 0;
  line-height: 1.74;
  color: #d8e3fb;
}

.bm-copy a {
  color: #95e5f0;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.bm-copy a:visited {
  color: #ffd38c;
}

.bm-copy a:hover {
  color: #c7f7ff;
}

.bm-rich-copy {
  color: #d8e3fb;
}

.bm-rich-copy p {
  margin: 0 0 0.78rem;
  line-height: 1.72;
}

.bm-rich-copy p:last-child {
  margin-bottom: 0;
}

.bm-rich-copy strong {
  color: #eef4ff;
  font-weight: 700;
}

.bm-rich-copy a {
  color: #95e5f0;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.bm-rich-copy a:hover {
  color: #c7f7ff;
}

.bm-rich-copy ul {
  margin: 0 0 0.9rem;
  padding-left: 1.15rem;
  color: #d8e3fb;
}

.bm-rich-copy li {
  margin: 0 0 0.45rem;
  line-height: 1.68;
}

.bm-media {
  min-height: 54vh;
  padding: 20px;
  display: grid;
  place-items: center;
  border-style: dashed;
  border-color: rgba(188, 208, 244, 0.35);
  background: linear-gradient(145deg, rgba(18, 28, 46, 0.5), rgba(16, 18, 30, 0.65));
}

.bm-media-photo-card {
  border-style: solid;
  border-color: rgba(181, 201, 236, 0.42);
  background: rgba(10, 16, 30, 0.7);
  overflow: hidden;
}

.bm-media-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.bm-map-media {
  padding: 12px;
  border-style: solid;
  border-color: rgba(181, 201, 236, 0.42);
  background: rgba(10, 16, 30, 0.7);
  overflow: hidden;
  align-content: start;
  gap: 12px;
}

.bm-map-controls {
  width: 100%;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.bm-map-toggle {
  min-height: 44px;
  border: 1px solid rgba(181, 201, 236, 0.34);
  border-radius: 999px;
  background: rgba(6, 12, 24, 0.7);
  color: #d8e3fb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.bm-map-toggle.is-active {
  color: #05121d;
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, #84f3de, #96c5ff);
}

html.is-coarse-pointer .bm-map-controls {
  display: grid;
}

.bm-map-shell {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1986 / 1330;
  min-height: calc(54vh - 24px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(194, 212, 246, 0.45);
  box-shadow: inset 0 0 0 1px rgba(10, 15, 26, 0.4);
  perspective: 1600px;
  cursor: pointer;
}

.bm-map-shell:focus-visible {
  outline: 2px solid rgba(149, 229, 240, 0.9);
  outline-offset: 2px;
}

.bm-map-flip {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.bm-map-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.bm-map-front {
  z-index: 2;
}

.bm-map-back {
  transform: rotateY(180deg);
}

.bm-map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  background: #dbe7f7;
}

.bm-map-back-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bm-map-shell.is-mobile-toggle {
  perspective: none;
  cursor: default;
}

html.is-coarse-pointer .bm-map-shell.is-mobile-toggle {
  min-height: clamp(260px, 44svh, 380px);
}

.bm-map-shell.is-mobile-toggle:focus-visible {
  outline: none;
}

.bm-map-shell.is-mobile-toggle .bm-map-flip {
  transform: none !important;
}

.bm-map-shell.is-mobile-toggle .bm-map-face {
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  transform: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.bm-map-shell.is-mobile-toggle[data-view="map"] .bm-map-front,
.bm-map-shell.is-mobile-toggle[data-view="photo"] .bm-map-back {
  opacity: 1;
  pointer-events: auto;
}

.bm-map-shell.is-mobile-toggle .bm-map-embed {
  pointer-events: auto;
}

.bm-sequence-media {
  padding: 12px;
  border-style: solid;
  border-color: rgba(181, 201, 236, 0.42);
  background: rgba(10, 16, 30, 0.7);
  overflow: hidden;
}

.bm-inline-sequence-shell {
  position: relative;
  width: 100%;
  min-height: calc(54vh - 24px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(194, 212, 246, 0.45);
  box-shadow: inset 0 0 0 1px rgba(10, 15, 26, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    url('../assets/BM_light_background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bm-inline-sequence-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bm-block-6 {
  display: block;
  min-height: 190vh;
}

.bm-block-6-sticky {
  position: sticky;
  top: 11vh;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.bm-block-9 {
  display: block;
  min-height: 205vh;
}

.bm-block-9-sticky {
  position: sticky;
  top: 11vh;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.bm-block-9 .bm-copy,
.bm-block-9 .bm-media {
  min-height: auto;
}

.bm-block-9 .bm-copy {
  align-content: start;
}

.bm-map-track-media {
  padding: 12px;
  border-style: solid;
  border-color: rgba(181, 201, 236, 0.42);
  background: rgba(10, 16, 30, 0.7);
  overflow: hidden;
}

.bm-map-track-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1986 / 1330;
  min-height: calc(54vh - 24px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(194, 212, 246, 0.45);
  box-shadow: inset 0 0 0 1px rgba(10, 15, 26, 0.4);
  background: rgba(10, 16, 30, 0.52);
}

.bm-map-track-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bm-map-track-path {
  position: absolute;
  left: 1.5%;
  top: 41.5%;
  width: 69%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform-origin: left center;
  will-change: opacity, clip-path;
  pointer-events: none;
  z-index: 1;
}

.bm-map-track-icon {
  position: absolute;
  left: 24.5%;
  top: 51.5%;
  width: clamp(84px, 10vw, 138px);
  height: auto;
  transform: translate(-50%, -50%) rotate(-6deg) scale(0.82);
  transform-origin: center center;
  opacity: 0;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.34));
  will-change: left, top, transform, opacity;
  pointer-events: none;
  z-index: 2;
}

.bm-block-7-scene {
  position: relative;
  min-height: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.bm-block-7-scene::before,
.bm-block-7-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bm-block-7-scene::before {
  background-image: linear-gradient(180deg, rgba(8, 13, 22, 0.12) 0%, rgba(8, 13, 22, 0.26) 48%, rgba(4, 9, 16, 0.42) 100%),
    url('../assets/section7_second_back.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: var(--bm-block7-scene-opacity, 0);
  transition: opacity 260ms linear;
  z-index: 0;
}

.bm-block-7-scene::after {
  background: linear-gradient(180deg, rgba(3, 7, 14, 0.1) 0%, rgba(3, 7, 14, 0.28) 54%, rgba(3, 7, 14, 0.54) 100%);
  opacity: calc(var(--bm-block7-scene-opacity, 0) * 0.78);
  z-index: 1;
}

.bm-block-7-stage {
  position: relative;
  min-height: 0;
  width: 100%;
  display: grid;
  place-items: start center;
  padding: 11vh 0 12vh;
  background: transparent;
  isolation: isolate;
  z-index: 2;
}

.bm-block-7-copy {
  position: relative;
  z-index: 3;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.bm-block-7-ornament {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  will-change: transform, opacity, left, top;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
  opacity: 0;
}

.bm-block-7-figure {
  width: clamp(112px, 8vw, 142px);
}

.bm-block-7-sign {
  width: clamp(148px, 11vw, 176px);
}

.bm-photo-stack-stage {
  position: relative;
  min-height: 66vh;
  display: grid;
  place-items: center;
  overflow: visible;
}

.bm-photo-stack-canvas {
  position: relative;
  width: min(520px, 44vw);
  min-height: 66vh;
  overflow: visible;
  background: transparent;
}

.bm-stack-photo {
  position: absolute;
  left: 50%;
  top: 53%;
  width: clamp(188px, 29vw, 372px);
  max-width: 78%;
  border-radius: 8px;
  will-change: transform, opacity;
  opacity: 0;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

.bm-stack-photo-1 {
  z-index: 1;
}

.bm-stack-photo-2 {
  z-index: 2;
}

.bm-stack-photo-3 {
  z-index: 3;
}

.media-note {
  margin: 0;
  max-width: 34ch;
  text-align: center;
  color: #bdcae9;
  line-height: 1.6;
  font-size: 0.95rem;
}

.bm-cta-scene {
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  z-index: 6;
  isolation: isolate;
}

.bm-cta-scene::before,
.bm-cta-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bm-cta-scene::before {
  background-image: linear-gradient(180deg, rgba(7, 12, 21, 0.12) 0%, rgba(7, 12, 21, 0.24) 40%, rgba(4, 8, 14, 0.44) 100%),
    url('../assets/last_back_BM.jpg');
  background-size: cover;
  background-position: 64% center;
  background-repeat: no-repeat;
  opacity: var(--bm-cta-scene-opacity, 0);
  transition: opacity 420ms ease-out;
  z-index: 0;
}

.bm-cta-scene::after {
  background: linear-gradient(180deg, rgba(3, 7, 14, 0.08) 0%, rgba(3, 7, 14, 0.22) 52%, rgba(3, 7, 14, 0.46) 100%);
  opacity: calc(var(--bm-cta-scene-opacity, 0) * 0.82);
  transition: opacity 420ms ease-out;
  z-index: 1;
}

.bm-cta-stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: start center;
  padding: calc(12vh + min(16vh, 180px)) 16px 12vh;
}

.bm-cta {
  width: min(920px, calc(100% - 32px));
  min-height: 44vh;
  padding: 30px;
  display: grid;
  gap: 14px;
  align-content: center;
  text-align: center;
  background: linear-gradient(140deg, rgba(18, 40, 66, 0.74), rgba(38, 27, 19, 0.7));
}

.bm-cta h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.bm-cta p {
  margin: 0 auto;
  max-width: 74ch;
  line-height: 1.7;
  color: #dce7ff;
}

.bm-cta-footer {
  position: absolute;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  display: grid;
  gap: 8px;
  justify-items: center;
}

.bm-cta-email {
  justify-self: center;
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.bm-cta-email:empty {
  display: none;
}

.bm-cta-disclaimer {
  margin: 0;
  text-align: center;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity 640ms ease, transform 640ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
  .bm-hero {
    min-height: 82vh;
    padding-top: 18vh;
  }

  .bm-main {
    padding-top: 18vh;
    gap: 16vh;
  }

  .bm-block {
    grid-template-columns: 1fr;
  }

  .bm-block-10 {
    min-height: 170vh;
  }

  .bm-block-10-stage {
    top: 12vh;
    min-height: 76vh;
  }

  .bm-block-10-copy {
    width: min(calc(100% - 16px), 100%);
  }

  .bm-block-10-badass,
  .bm-block-10-dust {
    width: clamp(96px, 18vw, 140px);
  }

  .bm-block-10-fund {
    width: clamp(92px, 17vw, 132px);
  }

  .bm-block-10-ego {
    width: clamp(136px, 26vw, 210px);
  }

  .bm-block-10-love {
    width: clamp(112px, 22vw, 168px);
  }

  .bm-block-10-next-year {
    width: clamp(112px, 22vw, 168px);
  }

  .bm-cta-scene {
    min-height: 100vh;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .bm-cta-scene::before {
    background-position: 70% center;
  }

  .bm-cta-stage {
    min-height: 100vh;
    padding: calc(12vh + min(18vh, 180px)) 12px 12vh;
  }

  .bm-cta {
    width: min(calc(100% - 16px), 100%);
  }

  .bm-cta-footer {
    width: min(calc(100% - 20px), 100%);
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 6px;
  }

  .bm-cta-email {
    justify-self: center;
    font-size: 0.8rem;
  }

  .bm-cta-disclaimer {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .bm-block-1 {
    min-height: 165vh;
  }

  .bm-block-1-sticky {
    top: 12vh;
    min-height: 76vh;
    grid-template-columns: 1fr;
  }

  .bm-block-2 {
    min-height: 210vh;
  }

  .bm-block-2-sticky {
    top: 12vh;
    grid-template-columns: 1fr;
  }

  .bm-block-6 {
    min-height: 170vh;
  }

  .bm-block-6-sticky {
    top: 12vh;
    min-height: 76vh;
    grid-template-columns: 1fr;
  }

  .bm-block-9 {
    min-height: 185vh;
  }

  .bm-block-9-sticky {
    top: 12vh;
    min-height: 76vh;
    grid-template-columns: 1fr;
  }

  .bm-map-track-shell {
    min-height: 300px;
  }

  .bm-map-track-path {
    left: 2%;
    top: 44%;
    width: 70%;
  }

  .bm-map-track-icon {
    width: clamp(72px, 14vw, 112px);
  }

  .bm-block-7-scene {
    min-height: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .bm-block-7-stage {
    padding: 12vh 0 10vh;
  }

  .bm-block-7-scene::before {
    background-position: 54% center;
  }

  .bm-block-7-copy {
    width: min(calc(100% - 16px), 100%);
  }

  .bm-block-7-figure {
    width: clamp(88px, 12vw, 118px);
  }

  .bm-block-7-sign {
    width: clamp(120px, 16vw, 150px);
  }

  .bm-block-3-scene {
    min-height: 210vh;
  }

  .bm-block-3-stage {
    top: 12vh;
    min-height: 76vh;
    background-position: 56% center;
  }

  .bm-block-4-scene {
    min-height: 138vh;
  }

  .bm-block-4-stage {
    top: 12vh;
    min-height: 76vh;
    background-position: 54% center;
  }

  .bm-block-5-scene {
    min-height: 205vh;
  }

  .bm-block-5-stage {
    top: 12vh;
    min-height: 76vh;
  }

  .bm-block-5-sequence {
    width: min(94vw, 760px);
    top: 38%;
  }

  .bm-block-5-copy {
    width: min(calc(100% - 16px), 760px);
    bottom: 8px;
    padding: 12px 12px;
  }

  .bm-block-5-copy h2 {
    font-size: clamp(1.16rem, 6vw, 1.78rem);
  }

  .bm-block-5-copy p:last-child {
    max-width: none;
    line-height: 1.58;
    font-size: 0.92rem;
  }

  .bm-block-4-copy {
    inset: 0;
    width: 100%;
    padding: 0;
  }

  .bm-block-4-copy .bm-index {
    top: 10px;
    left: 0;
    right: 0;
    width: min(calc(100% - 24px), 760px);
  }

  .bm-block-4-copy h2 {
    top: 32px;
    left: 0;
    right: 0;
    width: min(calc(100% - 24px), 760px);
    font-size: clamp(1.16rem, 6vw, 1.78rem);
  }

  .bm-block-4-copy p:last-child {
    left: 0;
    right: 0;
    bottom: 10px;
    width: min(calc(100% - 18px), 760px);
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .bm-block-3-copy {
    inset: 0;
    width: 100%;
    padding: 0;
  }

  .bm-block-3-copy .bm-index {
    top: 10px;
    left: 0;
    right: 0;
    width: min(calc(100% - 24px), 760px);
  }

  .bm-block-3-copy h2 {
    top: 32px;
    left: 0;
    right: 0;
    width: min(calc(100% - 24px), 760px);
    font-size: clamp(1.16rem, 6vw, 1.78rem);
  }

  .bm-block-3-copy p:last-child {
    left: 0;
    right: 0;
    width: min(calc(100% - 16px), 760px);
    bottom: 8px;
    padding: 12px 12px;
    line-height: 1.58;
    font-size: 0.92rem;
  }

  .bm-packman-sequence {
    width: min(92vw, 760px);
    top: 44%;
  }

  .bm-copy,
  .bm-media {
    min-height: auto;
  }

  .bm-media {
    min-height: 170px;
  }

  .bm-map-shell {
    min-height: 300px;
  }

  .bm-inline-sequence-shell {
    min-height: 300px;
  }

  .bm-photo-stack-stage {
    min-height: 320px;
  }

  .bm-photo-stack-canvas {
    width: min(500px, 92vw);
    min-height: 320px;
  }
}

@media (max-width: 1024px) {
  .bm-hero {
    min-height: 84svh;
    max-width: min(880px, calc(100% - 28px));
    padding-top: max(calc(var(--chrome-top) + 34px), 10vh);
    padding-bottom: max(calc(var(--safe-bottom) + 18px), 6vh);
  }

  .bm-hero h1 {
    font-size: clamp(2.3rem, 7vw, 4.6rem);
  }

  .hero-lede {
    max-width: min(620px, calc(100% - 24px));
    font-size: clamp(0.96rem, 1.8vw, 1.08rem);
    line-height: 1.54;
  }

  .bm-main {
    gap: min(14vh, 140px);
    padding-top: max(calc(var(--chrome-top) + 72px), 14vh);
  }

  .bm-map-controls {
    display: grid;
  }

  .bm-block-1 {
    min-height: 148vh;
  }

  .bm-block-2,
  .bm-block-3-scene,
  .bm-block-5-scene {
    min-height: 176vh;
  }

  .bm-block-4-scene {
    min-height: 126vh;
  }

  .bm-block-6,
  .bm-block-9,
  .bm-block-10 {
    min-height: 152vh;
  }

  .bm-block-1-sticky,
  .bm-block-2-sticky,
  .bm-block-3-stage,
  .bm-block-4-stage,
  .bm-block-5-stage,
  .bm-block-6-sticky,
  .bm-block-9-sticky,
  .bm-block-10-stage {
    top: max(calc(var(--chrome-top) + 8px), 10vh);
    min-height: 74svh;
  }

  .bm-block-10-stage {
    box-sizing: border-box;
    padding: clamp(118px, 16vh, 176px) 0 clamp(104px, 14vh, 152px);
  }

  .bm-block-10-copy {
    width: min(calc(100% - 24px), 720px);
  }

  .bm-cta-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    min-height: auto;
    padding:
      max(calc(var(--chrome-top) + 40px), 10vh)
      12px
      max(calc(var(--safe-bottom) + 24px), 24px);
  }

  .bm-cta-footer {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(calc(100% - 20px), 100%);
  }

  .bm-map-shell {
    min-height: clamp(260px, 44svh, 380px);
  }
}

@media (max-width: 767px) {
  .bm-hero {
    padding-top: max(calc(var(--chrome-top) + 26px), 9vh);
    padding-bottom: max(calc(var(--safe-bottom) + 16px), 5vh);
    min-height: 74svh;
  }

  .bm-hero h1 {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .hero-lede {
    max-width: min(92vw, 34rem);
    padding: 12px 16px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .bm-main {
    gap: min(10vh, 96px);
    padding-inline: 10px;
    padding-top: max(calc(var(--chrome-top) + 52px), 12vh);
  }

  .bm-copy,
  .bm-media {
    padding: 16px;
  }

  .bm-copy {
    min-height: auto;
  }

  .bm-block-1 {
    min-height: 130vh;
  }

  .bm-block-2,
  .bm-block-3-scene,
  .bm-block-5-scene {
    min-height: 154vh;
  }

  .bm-block-4-scene {
    min-height: 112vh;
  }

  .bm-block-6,
  .bm-block-9,
  .bm-block-10 {
    min-height: 136vh;
  }

  .bm-block-1-sticky,
  .bm-block-2-sticky,
  .bm-block-3-stage,
  .bm-block-4-stage,
  .bm-block-5-stage,
  .bm-block-6-sticky,
  .bm-block-9-sticky,
  .bm-block-10-stage {
    top: max(calc(var(--chrome-top) + 6px), 9vh);
    min-height: 68svh;
  }

  .bm-block-10-stage {
    padding: clamp(72px, 12vh, 110px) 0 clamp(52px, 8vh, 76px);
  }

  .bm-block-10-copy {
    width: min(calc(100% - 10px), 100%);
    padding: 14px;
  }

  .bm-block-10-copy .bm-index {
    margin-bottom: 6px;
  }

  .bm-block-10-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(1.36rem, 6.8vw, 1.82rem);
  }

  .bm-block-10-copy .bm-rich-copy p {
    margin-bottom: 0.62rem;
    font-size: 0.89rem;
    line-height: 1.48;
  }

  .bm-block-10-badass,
  .bm-block-10-dust {
    width: clamp(68px, 18vw, 92px);
  }

  .bm-block-10-fund {
    width: clamp(60px, 16vw, 82px);
  }

  .bm-block-10-ego {
    width: clamp(88px, 24vw, 122px);
  }

  .bm-block-10-love,
  .bm-block-10-next-year {
    width: clamp(70px, 18vw, 92px);
  }

  .bm-map-shell {
    min-height: clamp(240px, 42svh, 340px);
  }

  .bm-map-shell.is-mobile-toggle .bm-map-front,
  .bm-map-shell.is-mobile-toggle .bm-map-back {
    z-index: 1;
  }

  .bm-block-5-copy,
  .bm-block-3-copy p:last-child,
  .bm-block-4-copy p:last-child {
    padding: 14px 14px;
    line-height: 1.58;
    font-size: 0.9rem;
  }

  .bm-packman-sequence,
  .bm-block-5-sequence {
    width: min(96vw, 680px);
  }

  .bm-cta-stage {
    gap: 14px;
    padding:
      max(calc(var(--chrome-top) + 30px), 8vh)
      10px
      max(calc(var(--safe-bottom) + 20px), 20px);
  }

  .bm-cta-footer {
    width: min(calc(100% - 8px), 100%);
    margin-top: 8px;
  }
}

@media (max-height: 740px) and (orientation: landscape) {
  .bm-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: calc(var(--chrome-top) + 14px);
    padding-bottom: max(calc(var(--safe-bottom) + 12px), 4vh);
  }

  .bm-hero h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .hero-lede {
    max-width: min(74vw, 560px);
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .bm-main {
    padding-top: max(calc(var(--chrome-top) + 34px), 9vh);
    gap: min(9vh, 80px);
  }

  .bm-block-1,
  .bm-block-2,
  .bm-block-3-scene,
  .bm-block-5-scene,
  .bm-block-6,
  .bm-block-9,
  .bm-block-10 {
    min-height: 128vh;
  }

  .bm-block-4-scene {
    min-height: 104vh;
  }

  .bm-block-1-sticky,
  .bm-block-2-sticky,
  .bm-block-3-stage,
  .bm-block-4-stage,
  .bm-block-5-stage,
  .bm-block-6-sticky,
  .bm-block-9-sticky,
  .bm-block-10-stage {
    min-height: 72svh;
  }

  .bm-block-10-stage {
    padding: clamp(74px, 18vh, 102px) 0 clamp(42px, 10vh, 68px);
  }

  .bm-cta-stage {
    padding:
      max(calc(var(--chrome-top) + 18px), 7vh)
      12px
      max(calc(var(--safe-bottom) + 16px), 16px);
  }
}

@media (max-width: 420px) {
  .bm-block-10-stage {
    padding: clamp(66px, 11vh, 92px) 0 clamp(34px, 6vh, 56px);
  }

  .bm-block-10-copy {
    padding: 12px;
  }

  .bm-block-10-copy h2 {
    margin-bottom: 8px;
    font-size: clamp(1.24rem, 6.4vw, 1.66rem);
  }

  .bm-block-10-copy .bm-rich-copy p {
    margin-bottom: 0.56rem;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .bm-block-10-badass,
  .bm-block-10-dust {
    width: clamp(56px, 15vw, 74px);
  }

  .bm-block-10-fund {
    width: clamp(44px, 12vw, 60px);
  }

  .bm-block-10-ego {
    width: clamp(72px, 20vw, 94px);
  }

  .bm-block-10-love,
  .bm-block-10-next-year {
    width: clamp(56px, 15vw, 72px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bm-layer,
  [data-reveal] {
    transform: none !important;
    transition: none !important;
  }
}
