.bloomit-motion-page {
  --bm-black: #050505;
  --bm-ink: #111;
  --bm-paper: #f5f3ed;
  --bm-gray: #cfcfcf;
  --bm-muted: #6a6a6a;
  --bm-green: #0f766e;
  --bm-green-soft: #92d9cd;
  --bm-coral: #ff6f4d;
  --bm-gold: #d8a31d;
  --bm-line: rgba(0, 0, 0, 0.14);
  --bm-max: 1520px;
  background: var(--bm-paper);
  color: var(--bm-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  overflow-x: hidden;
}

.bloomit-motion-page * { box-sizing: border-box; }
.bloomit-motion-page img { max-width: 100%; }
.bloomit-motion-page main { background: var(--bm-paper); }
.bloomit-motion-page::selection { background: var(--bm-green); color: #fff; }
html.bm-menu-locked { overflow: hidden; }

.bm-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  transition: transform 0.85s cubic-bezier(.77, 0, .18, 1), visibility 0.85s;
}
.bm-loader.is-hidden { transform: translateY(-100%); visibility: hidden; }
.bm-loader-inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: clamp(48px, 9vw, 138px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 950;
}
.bm-loader strong {
  display: inline-grid;
  place-items: center;
  min-width: 1.8em;
  min-height: .82em;
  padding: .02em .12em .08em;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: .18em;
  background: linear-gradient(135deg, rgba(15,118,110,.78), rgba(255,111,77,.82));
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.08em;
}

.bm-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 78px);
  color: #fff;
  transition: color .25s ease, background .25s ease, border .25s ease;
}
.bm-header.is-scrolled {
  color: #050505;
  background: rgba(245,243,237,.84);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
}
.bm-logo {
  position: relative;
  z-index: 42;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.05em;
}
.bm-logo span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: currentColor;
  vertical-align: .08em;
}
.bm-menu-button {
  position: relative;
  z-index: 42;
  width: 58px;
  height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}
.bm-menu-button i {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.bm-menu-button i:nth-child(1) { top: 12px; }
.bm-menu-button i:nth-child(2) { top: 21px; }
.bm-menu-button i:nth-child(3) { top: 30px; }
.bm-menu-button.is-open i:nth-child(1) { top: 21px; transform: rotate(42deg); }
.bm-menu-button.is-open i:nth-child(2) { opacity: 0; }
.bm-menu-button.is-open i:nth-child(3) { top: 21px; transform: rotate(-42deg); }
.bm-menu {
  position: fixed;
  inset: 0;
  z-index: 41;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 44px;
  align-items: end;
  padding: 120px clamp(22px, 7vw, 120px) clamp(32px, 7vw, 92px);
  background: #050505;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.bm-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.bm-menu > a {
  grid-column: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  max-width: 900px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding: 16px 0;
  font-size: clamp(40px, 8vw, 112px);
  line-height: .95;
  letter-spacing: -.075em;
  font-weight: 950;
}
.bm-menu a b { font-size: .17em; color: var(--bm-green-soft); }
.bm-menu-info {
  grid-column: 2;
  align-self: end;
  color: rgba(255,255,255,.74);
}
.bm-menu-info strong { display: block; color: #fff; font-size: 24px; margin-bottom: 16px; }
.bm-menu-info a { color: #fff; font-weight: 850; }

.bm-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.bm-film {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(15,118,110,.48), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(255,111,77,.35), transparent 30%),
    linear-gradient(135deg, #050505, #14100e 54%, #051b18);
}
.bm-film::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: rotate(-8deg) scale(1.08);
  animation: bmGrid 16s linear infinite;
  opacity: .46;
}
@keyframes bmGrid { to { transform: rotate(-8deg) translate3d(-54px, -54px, 0) scale(1.08); } }
.bm-film-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
  color: #fff;
}
.bm-film-card span {
  display: block;
  padding: 22px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bm-card-phone {
  left: 10vw;
  top: 19vh;
  width: 260px;
  height: 490px;
  transform: rotate(-7deg);
  animation: bmFloatA 7s ease-in-out infinite;
}
.bm-card-phone b {
  display: block;
  margin: 14px 24px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
}
.bm-card-phone b:first-of-type { height: 142px; background: var(--bm-coral); }
.bm-card-admin {
  right: 8vw;
  top: 18vh;
  width: 480px;
  min-height: 300px;
  transform: rotate(4deg);
  animation: bmFloatB 8s ease-in-out infinite;
}
.bm-card-admin i {
  display: inline-block;
  width: calc(50% - 38px);
  height: 82px;
  margin: 8px 12px 12px 22px;
  border-radius: 18px;
  background: rgba(146,217,205,.22);
}
.bm-card-ai {
  right: 18vw;
  bottom: 10vh;
  width: 310px;
  height: 220px;
  transform: rotate(-3deg);
  animation: bmFloatA 9s ease-in-out infinite reverse;
}
.bm-card-ai em {
  position: absolute;
  inset: 72px 34px 32px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: radial-gradient(circle, var(--bm-green-soft), transparent 28%), rgba(255,255,255,.1);
}
.bm-orb { position: absolute; border-radius: 999px; filter: blur(4px); opacity: .72; }
.bm-orb-one { left: 44vw; top: 24vh; width: 160px; height: 160px; background: var(--bm-gold); animation: bmDrift 13s linear infinite; }
.bm-orb-two { left: 58vw; bottom: 18vh; width: 90px; height: 90px; background: var(--bm-green-soft); animation: bmDrift 10s linear infinite reverse; }
@keyframes bmFloatA { 50% { transform: translateY(-22px) rotate(-3deg); } }
@keyframes bmFloatB { 50% { transform: translateY(24px) rotate(2deg); } }
@keyframes bmDrift { 50% { transform: translate3d(48px, -38px, 0) scale(1.15); } }
.bm-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 44px));
  text-align: center;
  mix-blend-mode: screen;
}
.bm-hero-copy p {
  margin-bottom: 22px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.bm-hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 12vw, 176px);
  line-height: .82;
  letter-spacing: -.09em;
  font-weight: 950;
}
.bm-hero-copy span {
  display: block;
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.7vw, 22px);
  word-break: keep-all;
}
.bm-video-link {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  padding: 13px 18px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.bm-statement {
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background: var(--bm-paper);
}
.bm-statement p {
  max-width: 980px;
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.32;
  letter-spacing: -.055em;
  font-weight: 800;
  word-break: keep-all;
}
.bm-statement-small { min-height: 48vh; }
.bm-statement-news { min-height: 42vh; }

.bm-value-motion { position: relative; min-height: 260vh; background: #fff; }
.bm-sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.bm-big-words {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(1500px, 92vw);
  transform: translate(-50%, -50%);
  z-index: 0;
  font-size: clamp(56px, 9.6vw, 154px);
  line-height: .98;
  letter-spacing: -.08em;
  font-weight: 950;
  pointer-events: none;
}
.bm-big-words div { display: flex; gap: .18em; }
.bm-big-words div:nth-child(2) { justify-content: center; }
.bm-big-words div:nth-child(3) { justify-content: flex-end; }
.bm-big-words span { font-family: Georgia, "Times New Roman", serif; font-weight: 500; color: #000; }
.bm-big-words b { color: #cfcfcf; }
.bm-object {
  --x: 0px;
  --start: 110vh;
  --distance: 230vh;
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(150px, 22vw, 360px);
  aspect-ratio: 1.12 / .82;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 28px 80px rgba(0,0,0,.16);
  backdrop-filter: blur(18px);
  transform: translate3d(calc(-50% + var(--x)), calc(var(--start) - var(--bm-value-shift, 0vh)), 0) rotate(var(--r, 0deg));
  will-change: transform;
}
.bm-object span {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 2.6vw, 42px);
  font-weight: 950;
  letter-spacing: -.06em;
}
.bm-object i {
  position: absolute;
  inset: 18%;
  border-radius: 22px;
  opacity: .68;
  background: linear-gradient(135deg, var(--bm-green), var(--bm-coral));
}
.bm-object-one { --x: -410px; --start: 114vh; --distance: 220vh; --r: -7deg; }
.bm-object-two { --x: 320px; --start: 135vh; --distance: 238vh; --r: 8deg; }
.bm-object-three { --x: -160px; --start: 158vh; --distance: 250vh; --r: 2deg; }
.bm-object-four { --x: 430px; --start: 184vh; --distance: 260vh; --r: -5deg; }
.bm-object-five { --x: -480px; --start: 208vh; --distance: 265vh; --r: 7deg; }
.bm-object-six { --x: 40px; --start: 230vh; --distance: 270vh; --r: -2deg; }
.bm-object-group {
  position: absolute;
  left: 50%;
  bottom: -22vh;
  display: flex;
  gap: 0;
  transform: translate3d(-50%, var(--bm-group-shift, 0vh), 0);
}
.bm-object-group i {
  width: clamp(180px, 28vw, 480px);
  aspect-ratio: 1.1;
  margin: 0 -44px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(15,118,110,.28), rgba(255,255,255,.82));
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
  transform: rotate(var(--r, 0deg));
}
.bm-object-group i:nth-child(1) { --r: -10deg; }
.bm-object-group i:nth-child(2) { --r: 2deg; background: linear-gradient(135deg, rgba(255,111,77,.28), rgba(255,255,255,.82)); }
.bm-object-group i:nth-child(3) { --r: 12deg; }

.bm-about {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: start;
  padding: 120px clamp(20px, 5vw, 72px) 170px;
  overflow: hidden;
  background: var(--bm-paper);
}
.bm-about-title {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  gap: clamp(22px, 6vw, 110px);
  transform: translate(-50%, -50%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(92px, 18vw, 300px);
  line-height: .9;
  color: rgba(0,0,0,.12);
  white-space: nowrap;
  pointer-events: none;
}
.bm-stat-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(var(--bm-max), 100%);
  margin: 0 auto;
}
.bm-stat-card {
  min-height: 520px;
  padding: 26px clamp(18px, 2vw, 30px);
  border: 1px solid #111;
  background: rgba(255,255,255,.48);
  backdrop-filter: blur(22px);
  text-align: center;
  opacity: 0;
  transform: translateY(70px);
  transform-origin: bottom;
  transition: opacity .42s ease, transform .42s cubic-bezier(.77, 0, .18, 1);
}
.bm-stat-card.is-visible { opacity: 1; transform: translateY(0); }
.bm-stat-card:nth-child(2) { transition-delay: .1s; }
.bm-stat-card:nth-child(3) { transition-delay: .2s; }
.bm-stat-card:nth-child(4) { transition-delay: .3s; }
.bm-stat-card p {
  margin: 0 0 66px;
  padding-bottom: 18px;
  border-bottom: 1px solid #111;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .08em;
}
.bm-stat-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 8vw, 148px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.08em;
}
.bm-stat-card b {
  display: block;
  margin: 8px 0 28px;
  font-size: 22px;
  letter-spacing: -.04em;
}
.bm-stat-card span {
  display: block;
  padding-top: 16px;
  border-top: 1px solid #111;
  color: var(--bm-muted);
  font-size: 15px;
  word-break: keep-all;
}
.bm-round-link {
  position: absolute;
  left: 50%;
  bottom: 9vh;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.bm-projects {
  position: relative;
  padding: 120px clamp(20px, 5vw, 72px) 180px;
  overflow: hidden;
  background: #fff;
}
.bm-section-title {
  position: sticky;
  top: 18vh;
  z-index: 0;
  text-align: center;
  color: rgba(0,0,0,.075);
  font-size: clamp(70px, 15vw, 240px);
  line-height: .9;
  letter-spacing: .05em;
  font-weight: 950;
  pointer-events: none;
}
.bm-project-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8vw 10vw;
  width: min(var(--bm-max), 100%);
  margin: -10vh auto 0;
}
.bm-project-card { display: block; }
.bm-project-card:nth-child(even) { margin-top: 170px; }
.bm-project-featured { grid-column: 1 / -1; width: 45%; margin-left: auto; }
.bm-project-thumb {
  height: clamp(260px, 34vw, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 18px 22px 48px rgba(0,0,0,.16);
  filter: grayscale(1);
  transition: filter .45s ease, transform .45s ease;
}
.bm-project-card:hover .bm-project-thumb { filter: grayscale(0); transform: rotate(-2deg) scale(1.025); }
.bm-project-thumb span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: clamp(32px, 5vw, 74px);
  font-weight: 950;
  letter-spacing: -.08em;
}
.bm-thumb-goody { background: radial-gradient(circle at 72% 22%, #ffe3ef, transparent 20%), linear-gradient(135deg, #ff6f4d, #251230); }
.bm-thumb-stock { background: linear-gradient(135deg, #101828, #2dd4bf); }
.bm-thumb-tech { background: radial-gradient(circle at 72% 18%, #fff, transparent 16%), linear-gradient(135deg, #020617, #0f766e); }
.bm-thumb-brand { background: linear-gradient(135deg, #1c1714, #d8a31d); }
.bm-project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 18px;
  padding: 0;
  list-style: none;
}
.bm-project-card li {
  padding: 8px 10px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}
.bm-project-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -.06em;
}
.bm-project-card p { color: var(--bm-muted); font-size: 16px; }
.bm-project-more {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid #111;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
  text-align: center;
}

.bm-insights {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bm-paper);
  padding: 120px 24px;
}
.bm-insight-title {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  gap: 24px;
  transform: translate(-50%, -50%);
  font-size: clamp(72px, 14vw, 230px);
  line-height: .8;
  letter-spacing: .06em;
  font-weight: 950;
  color: rgba(0,0,0,.1);
  pointer-events: none;
}
.bm-insight-title span:first-child { transform: translateX(var(--bm-insight-x, 0vw)); }
.bm-insight-title span:last-child { transform: translateX(var(--bm-insight-x-neg, 0vw)); }
.bm-insight-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  opacity: var(--bm-insight-opacity, .28);
  transform: translateY(var(--bm-insight-offset, 70px));
}
.bm-insight-panel article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: #050505;
  color: #fff;
  box-shadow: 0 26px 70px rgba(0,0,0,.2);
}
.bm-insight-panel article:nth-child(2) { background: var(--bm-green); }
.bm-insight-panel article:nth-child(3) { background: #2b241d; }
.bm-insight-panel p { display: flex; justify-content: space-between; gap: 14px; color: rgba(255,255,255,.66); font-weight: 850; }
.bm-insight-panel h2 { margin: 18px 0; font-size: clamp(24px, 3vw, 38px); line-height: 1.12; letter-spacing: -.06em; }
.bm-insight-panel article > span { color: rgba(255,255,255,.72); }
.bm-insight-panel a {
  align-self: flex-start;
  margin-top: 30px;
  padding: 10px 46px 10px 12px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 850;
}

.bm-bottom-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
  border-top: 1px solid var(--bm-line);
  border-bottom: 1px solid var(--bm-line);
}
.bm-cta-item {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 110px);
  overflow: hidden;
  border-right: 1px solid var(--bm-line);
  color: #000;
}
.bm-cta-item i {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.8), transparent 20%),
    linear-gradient(135deg, var(--bm-green), var(--bm-coral));
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .45s ease, transform .9s ease;
}
.bm-cta-item:nth-child(2) i { background: linear-gradient(135deg, #111, var(--bm-gold)); }
.bm-cta-item:hover i { opacity: 1; transform: scale(1); }
.bm-cta-item:hover span, .bm-cta-item:hover strong, .bm-cta-item:hover b { color: #fff; filter: invert(0); }
.bm-cta-item span, .bm-cta-item strong, .bm-cta-item b { position: relative; z-index: 1; }
.bm-cta-item span, .bm-cta-item strong { font-size: clamp(48px, 6.2vw, 92px); line-height: .98; letter-spacing: -.08em; font-weight: 950; }
.bm-cta-item strong { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.bm-cta-item b { width: max-content; margin-top: 36px; padding-bottom: 10px; border-bottom: 2px solid currentColor; font-size: 18px; }

.bm-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #050505;
  color: #fff;
}
.bm-footer strong { font-size: 28px; letter-spacing: -.05em; }
.bm-footer p { margin: 0; color: rgba(255,255,255,.62); }
.bm-footer a { font-weight: 850; }

.bm-reveal { opacity: 0; transform: translateY(54px); transition: opacity .55s ease, transform .55s ease; transition-delay: var(--bm-delay, 0ms); }
.bm-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .bm-loader { display: none; }
  .bm-film::before, .bm-film-card, .bm-orb { animation: none !important; }
  .bm-object, .bm-object-group, .bm-insight-title span, .bm-insight-panel { transform: none !important; }
}

@media (max-width: 1020px) {
  .bm-menu { grid-template-columns: 1fr; align-items: start; }
  .bm-menu-info { grid-column: 1; }
  .bm-card-admin { width: 360px; right: -40px; }
  .bm-card-phone { left: -40px; }
  .bm-stat-grid, .bm-insight-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bm-project-featured { width: 100%; }
  .bm-project-list { gap: 64px; margin-top: -4vh; }
}

@media (max-width: 760px) {
  .bm-header { height: 70px; padding: 0 18px; }
  .bm-menu { padding: 96px 22px 34px; }
  .bm-menu > a { font-size: 48px; }
  .bm-film-card { opacity: .72; }
  .bm-card-phone { width: 190px; height: 370px; left: -70px; top: 24vh; }
  .bm-card-admin { width: 290px; right: -100px; top: 15vh; }
  .bm-card-ai { right: 12vw; bottom: 12vh; width: 230px; height: 170px; }
  .bm-hero-copy { mix-blend-mode: normal; }
  .bm-value-motion { min-height: 190vh; }
  .bm-object { width: 42vw; --distance: 180vh; }
  .bm-object-one { --x: -28vw; }
  .bm-object-two { --x: 26vw; }
  .bm-object-three { --x: -8vw; }
  .bm-object-four { --x: 30vw; }
  .bm-object-five { --x: -32vw; }
  .bm-stat-grid, .bm-project-list, .bm-insight-panel, .bm-bottom-cta, .bm-footer { grid-template-columns: 1fr; }
  .bm-stat-card { min-height: 330px; transform: none; }
  .bm-stat-card p { margin-bottom: 32px; }
  .bm-round-link { position: static; transform: none; margin: 34px auto 0; }
  .bm-project-card:nth-child(even) { margin-top: 0; }
  .bm-section-title { position: static; margin-bottom: 36px; }
  .bm-project-list { margin-top: 0; }
  .bm-insights { min-height: auto; }
  .bm-insight-panel { opacity: 1; transform: none; }
  .bm-cta-item { min-height: 280px; }
  .bm-footer { text-align: center; justify-items: center; }
}
