:root {
  --bm-night: #070a12;
  --bm-ink: #0b1020;
  --bm-card: rgba(16, 23, 41, .74);
  --bm-card-solid: #101729;
  --bm-line: rgba(255, 255, 255, .1);
  --bm-muted: rgba(255, 255, 255, .62);
  --bm-soft: rgba(255, 255, 255, .04);
  --bm-violet: #8b5cf6;
  --bm-violet-2: #a855f7;
  --bm-cyan: #22d3ee;
  --bm-emerald: #34d399;
  --bm-radius: 32px;
  --bm-shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --bm-glow: 0 0 60px rgba(139, 92, 246, .22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, .24), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(34, 211, 238, .12), transparent 34rem),
    radial-gradient(circle at 40% 84%, rgba(168, 85, 247, .16), transparent 34rem),
    var(--bm-night);
  color: #fff;
  font-family: Vazirmatn, Tahoma, Arial, sans-serif;
  line-height: 1.8;
}
body::selection { background: rgba(139, 92, 246, .4); color: #fff; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
.bm-container {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.bm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--bm-line);
  background: rgba(7, 10, 18, .78);
  backdrop-filter: blur(22px);
}
.bm-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
}
.bm-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.bm-logo__image{
  max-height: 55px;
}
.bm-logo strong {
  font-size: 25px;
  font-weight: 950;
  letter-spacing: 0;
}
.bm-logo span {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 32px;
}
.bm-logo i {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: var(--bm-violet);
}
.bm-logo i:nth-child(1) { height: 15px; }
.bm-logo i:nth-child(2) { height: 28px; background: var(--bm-violet-2); }
.bm-logo i:nth-child(3) { height: 20px; background: var(--bm-cyan); }
.bm-logo i:nth-child(4) { height: 32px; }
.bm-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bm-menu > li {
  position: relative;
}
.bm-menu a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bm-menu a:hover,
.bm-menu a:focus {
  color: #fff;
}

/* ── Parent item with arrow ── */
.bm-menu .menu-item-has-children > a::after {
  content: '▾';
  font-size: 10px;
  opacity: .6;
  transition: transform .2s;
}
.bm-menu .menu-item-has-children:hover > a::after,
.bm-menu .menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
}

/* ── Desktop dropdown ── */
.bm-menu .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: rgba(10,14,26,.98);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  /* padding-top bridges the visual gap so hover never breaks */
  padding: 10px 6px 6px;
  list-style: none;
  margin: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  backdrop-filter: blur(20px);
  z-index: 100;
  transition: opacity .18s, transform .18s, visibility .18s;
  transform: translateY(-6px);
}

.bm-menu .menu-item-has-children:hover > .sub-menu,
.bm-menu .menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bm-menu .sub-menu li {
  position: relative;
}

.bm-menu .sub-menu a {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.bm-menu .sub-menu a:hover {
  background: rgba(139,92,246,.15);
  color: #fff;
}

/* nested third level */
.bm-menu .sub-menu .sub-menu {
  top: 0;
  right: calc(100% + 4px);
}
.bm-menu .sub-menu .menu-item-has-children > a::after {
  content: '◂';
  font-size: 10px;
  margin-right: auto;
}

.bm-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bm-login-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--bm-line);
  border-radius: 16px;
  padding: 0 16px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.bm-login-link:hover { color: #fff; border-color: rgba(255, 255, 255, .24); }
.bm-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bm-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
}
.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  border: 1.5px solid rgba(255, 255, 255, .32);
  border-radius: 18px;
  background: var(--bm-violet);
  box-shadow: var(--bm-glow);
  color: #fff;
  text-decoration: none;
  padding: 0 28px;
  font-weight: 900;
}
.bm-btn:hover { background: var(--bm-violet-2); border-color: rgba(255, 255, 255, .45); }
.bm-btn--small {
  min-height: 42px;
  border-radius: 16px;
  padding-inline: 20px;
  font-size: 14px;
}
.bm-btn--ghost {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .30);
  box-shadow: none;
  color: rgba(255, 255, 255, .86);
}
.bm-btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .55);
}
.bm-main { overflow: hidden; }
.bm-section {
  padding: 96px 0;
  position: relative;
}
.bm-section--compact { padding-block: 64px; }
.bm-section-head {
  max-width: 740px;
  margin-bottom: 48px;
}
.bm-section-head--center {
  text-align: center;
  margin-inline: auto;
}
.bm-section-head--wide {
  max-width: none;
  display: inline;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  align-items: end;
  gap: 48px;
}
.bm-section h2,
.bm-copy-block h2,
.bm-final h2,
.bm-revenue h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: 0;
}
.bm-section-head p,
.bm-copy-block p,
.bm-final p,
.bm-revenue p {
  color: var(--bm-muted);
  font-size: 18px;
  line-height: 2;
}
.bm-eyebrow {
  margin: 0 0 14px !important;
  color: var(--bm-violet) !important;
  font-weight: 900;
  font-size: 15px !important;
}
.bm-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 96px 0 112px;
}
.bm-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.bm-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 610px);
  gap: 64px;
  align-items: center;
}
.bm-pill {
  display: inline-flex;
  margin: 0 0 28px;
  border: 1px solid var(--bm-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  padding: 8px 16px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 700;
}
.bm-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 950;
}
.bm-hero h1 span,
.bm-copy-block h2 span {
  display: block;
  background: linear-gradient(270deg, var(--bm-violet-2), var(--bm-violet), var(--bm-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bm-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 19px;
  line-height: 2;
}
.bm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.bm-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
}
.bm-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bm-proof span::before,
.bm-checks li::before,
.bm-revenue-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--bm-emerald);
  flex: 0 0 auto;
}
.bm-card,
.bm-process li,
.bm-mini-grid article,
.bm-revenue-list li {
  border: 1px solid rgba(255, 255, 255, .09);
  background: var(--bm-card);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .28);
}
.bm-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.bm-card {
  border-radius: 32px;
  padding: 28px;
  min-height: 265px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bm-card h3,
.bm-process h3,
.bm-mini-grid h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 950;
}
.bm-card p,
.bm-process p,
.bm-mini-grid p,
.bm-artist-card p {
  color: rgba(255, 255, 255, .56);
  line-height: 1.95;
}
.bm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
  background: rgba(139, 92, 246, .18);
}
.bm-card .bm-icon:has(.bamdad-editable-icon-img) {
  background: transparent;
  color: inherit;
  width: 100%;
  height: 44px;
  border-radius: 0;
}
.bm-icon-svg {
  width: 25px;
  height: 25px;
}
.bamdad-editable-icon-img {
  display: inline-block;
  width: 1em;
  height: 1em;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  vertical-align: middle;
  flex: 0 0 auto;
}
.bamdad-platform-icon--dark {
  filter: brightness(0) invert(1) grayscale(1);
}
.bm-icon .bamdad-editable-icon-img,
.bm-platform .bamdad-editable-icon-img {
  min-width: 120px;
  min-height: 40px;
}
.bm-card .bm-icon .bamdad-editable-icon-img {
  width: auto;
  height: auto;
  max-width: 66.666%;
  max-height: 44px;
  object-fit: contain;
}
.bmp-platform-badge__icon .bamdad-editable-icon-img,
.bml-platform-pill__icon .bamdad-editable-icon-img {
  display: block;
  width: 22px;
  height: 22px;
}
.bmp-feature-card__icon .bamdad-editable-icon-img {
  display: block;
  width: 28px;
  height: 28px;
}
.bm-platform-panel {
  border: 1px solid var(--bm-line);
  border-radius: 32px;
  background: rgba(255, 255, 255, .035);
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  gap: 32px;
}
.bm-platform-panel h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
}
.bm-platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}
.bm-platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--bm-line);
  border-radius: 18px;
  background: rgba(0, 0, 0, .2);
  padding: 11px 15px;
  font-weight: 900;
  margin-right: 5px;
}
.bm-platform .bm-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--bm-cyan);
}
.bm-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: 58px;
  align-items: center;
}
.bm-split--media-first {
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
}
.bm-copy-block {
  max-width: 650px;
}
.bm-copy-block p {
  margin-top: 24px;
}
.bm-checks,
.bm-revenue-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}
.bm-checks li,
.bm-revenue-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bm-photo-frame {
  margin: 0;
  min-height: 430px;
  border: 1px solid var(--bm-line);
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .36), rgba(34, 211, 238, .12)),
    rgba(255, 255, 255, .035);
}
.bm-photo-frame img,
.bm-image-placeholder {
  width: 100%;
  min-height: inherit;
  height: 100%;
  object-fit: cover;
}
.bmd-video-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
  cursor: pointer;
  background: #000;
  isolation: isolate;
}
.bmd-video-wrap:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(52, 211, 153, .72);
}
.bmd-hero-video {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.bmd-vmb-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .56);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  transform: scale(1);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.bmd-video-wrap:hover .bmd-vmb-overlay,
.bmd-video-wrap.vmb-show .bmd-vmb-overlay {
  transform: scale(1.06);
  background: rgba(0, 0, 0, .7);
  border-color: rgba(255, 255, 255, .42);
}
.bmd-vmb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bmd-vmb-icon .material-symbols-rounded {
  font-size: 25px;
}
.bmd-vmb-unmuted {
  display: none;
}
.bmd-video-wrap.is-unmuted .bmd-vmb-muted {
  display: none;
}
.bmd-video-wrap.is-unmuted .bmd-vmb-unmuted {
  display: flex;
}
.bm-image-placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .36), rgba(34, 211, 238, .14)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 18px);
}
.bm-image-placeholder span {
  max-width: 340px;
  font-weight: 900;
  line-height: 2;
}
.bm-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.bm-mini-grid article {
  border-radius: 28px;
  padding: 22px;
}
.bm-mini-grid h3 {
  margin-top: 0;
  font-size: 18px;
}
.bm-phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
.bm-phone-wrap::before {
  content: "";
  position: absolute;
  width: min(430px, 100%);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(139, 92, 246, .2);
  filter: blur(48px);
}
.bm-phone {
  position: relative;
  width: 288px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 38px;
  background: #000;
  box-shadow: var(--bm-shadow);
  padding: 12px;
}
.bm-phone__cover {
  height: 210px;
  border-radius: 30px 30px 12px 12px;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, .32), transparent 14%),
    linear-gradient(135deg, rgba(168, 85, 247, .72), rgba(34, 211, 238, .2)),
    #101729;
}
.bm-phone__body {
  border-radius: 0 0 30px 30px;
  background: var(--bm-card-solid);
  padding: 20px;
}
.bm-phone small {
  color: rgba(255, 255, 255, .5);
}
.bm-phone h3 {
  margin: 4px 0 16px;
  font-size: 24px;
}
.bm-phone button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: var(--bm-violet);
  color: #fff;
  padding: 12px;
  font-weight: 900;
}
.bm-phone ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.bm-phone li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  padding: 8px 10px;
  font-size: 14px;
}
.bm-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bm-process li {
  position: relative;
  border-radius: 32px;
  padding: 30px;
  text-align: center;
}
.bm-step-number {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(139, 92, 246, .2);
  color: #fff;
  font-weight: 950;
}
.bm-artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.bm-artist-card {
  overflow: hidden;
  border: 1px solid var(--bm-line);
  border-radius: 32px;
  background: rgba(255, 255, 255, .035);
}
.bm-artist-card .bm-image-placeholder,
.bm-artist-card img {
  min-height: 320px;
  height: 320px;
}
.bm-artist-card div:last-child {
  padding: 24px;
}
.bm-artist-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 950;
}
.bm-artist-card p {
  margin: 8px 0 0;
}
.bm-revenue {
  display: grid;
  grid-template-columns: minmax(190px, .5fr) minmax(0, 1fr) minmax(260px, .72fr);
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 40px;
  background: linear-gradient(270deg, rgba(139, 92, 246, .16), rgba(255, 255, 255, .035), rgba(255, 255, 255, .025));
  padding: 44px;
}
.bm-percent {
  display: grid;
  place-items: center;
  width: 202px;
  height: 202px;
  margin-inline: auto;
  border: 1px solid rgba(139, 92, 246, .42);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(139, 92, 246, .22), rgba(139, 92, 246, .08) 56%, transparent 57%),
    conic-gradient(var(--bm-violet) 0 76%, rgba(255, 255, 255, .08) 76% 100%);
  box-shadow: var(--bm-glow);
  text-align: center;
}
.bm-percent strong {
  font-size: 48px;
  line-height: 1;
}
.bm-percent span,
.bm-percent small {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-weight: 900;
}
.bm-revenue-list {
  margin: 0;
}
.bm-revenue-list li {
  border-radius: 22px;
  padding: 18px;
}
.bm-section--final {
  padding-bottom: 112px;
}
.bm-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .62fr);
  align-items: center;
  gap: 36px;
  overflow: hidden;
  border: 1px solid var(--bm-line);
  border-radius: 40px;
  background: rgba(0, 0, 0, .32);
  padding: 44px;
}
.bm-photo-frame--cta {
  min-height: 330px;
  border-radius: 32px;
}
.bm-footer {
  border-top: 1px solid var(--bm-line);
  padding: 56px 0 24px;
}
.bm-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr .75fr .75fr .9fr;
  gap: 42px;
}
.bm-footer p,
.bm-footer a {
  color: rgba(255, 255, 255, .52);
}
.bm-footer a {
  display: block;
  text-decoration: none;
  margin-top: 10px;
}
.bm-footer a:hover { color: #fff; }
.bm-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
}
.bm-logo--footer {
  margin-bottom: 14px;
}
.bm-footer__logo-img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 62px;
  object-fit: contain;
}
.bm-logo--footer strong {
  font-size: 24px;
}
.bm-footer-widget {
  margin: 0 0 18px;
}
.bm-footer-widget:last-child {
  margin-bottom: 0;
}
.bm-footer-widget__title,
.bm-footer-widget h2,
.bm-footer-widget h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
}
.bm-footer-widget p {
  margin: 0 0 12px;
}
.bm-footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bm-footer-widget ul:has(.menu-item-bamdad-icon) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.bm-footer-widget li + li {
  margin-top: 8px;
}
.bm-footer-widget ul:has(.menu-item-bamdad-icon) li + li {
  margin-top: 0;
}
.bm-footer-widget .menu-item-bamdad-icon a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  font-size: 0;
  line-height: 0;
}
.bm-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.bm-footer-socials__item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 0 !important;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.74) !important;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.bm-footer-socials__item:hover {
  border-color: rgba(139,92,246,.38);
  background: rgba(139,92,246,.13);
  color: #fff !important;
  transform: translateY(-2px);
}
.bm-footer-socials__item--icon-only {
  font-size: 0;
  line-height: 0;
}
.bm-footer-socials__item .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.bm-footer-widget .menu-item-bamdad-icon .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.bm-footer-socials__item .material-symbols-rounded {
  font-size: 22px;
}
.bm-footer-socials__icon-img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.bamdad-menu-icon-img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.bm-footer-cta {
  display: inline-flex !important;
  width: fit-content;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  padding: 12px 18px;
  font-weight: 900;
}
.bm-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--bm-line);
  margin-top: 42px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .36);
  font-size: 14px;
}
.screen-reader-text,
.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;
}
@media (max-width: 1120px) {
  .bm-hero__grid,
  .bm-split,
  .bm-split--media-first,
  .bm-platform-panel,
  .bm-revenue,
  .bm-final,
  .bm-section-head--wide {
    grid-template-columns: 1fr;
  }
  .bm-feature-grid,
  .bm-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bm-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .bm-container {
    width: min(100% - 28px, 1280px);
  }
  .bm-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .bm-nav {
    display: none;
    grid-column: 1 / -1;
  }
  .bm-nav.is-open {
    display: block;
  }
  .bm-menu {
    display: grid;
    justify-content: stretch;
    gap: 10px;
    padding: 12px 0;
  }
  .bm-menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .bm-header__actions {
    justify-self: end;
  }
  .bm-login-link {
    display: none;
  }
  .bm-hero {
    padding-top: 68px;
    min-height: auto;
  }
  .bm-feature-grid,
  .bm-process,
  .bm-artist-grid,
  .bm-mini-grid {
    grid-template-columns: 1fr;
  }
  .bm-revenue,
  .bm-final {
    padding: 22px;
  }
  .bm-section {
    padding: 68px 0;
  }
  .bm-photo-frame,
  .bm-image-placeholder {
    min-height: 320px;
  }
  .bm-footer__grid {
    grid-template-columns: 1fr;
  }
  .bm-footer__bottom {
    display: grid;
  }
}
@media (max-width: 560px) {
  .bm-logo strong {
    font-size: 20px;
  }
  .bm-header .bm-btn {
    display: none;
  }
  .bm-hero h1 {
    font-size: 39px;
  }
  .bm-actions,
  .bm-btn {
    width: 100%;
  }
  .bm-platform-panel,
  .bm-card,
  .bm-process li,
  .bm-final,
  .bm-revenue {
    border-radius: 24px;
  }
  .bm-percent {
    width: 180px;
    height: 180px;
  }
}

/* Mobile-first structural layer. Later media queries enhance the layout for wider screens. */
.bm-container {
  width: min(100% - 28px, 1280px);
}
.bm-header__inner {
  grid-template-columns: auto 1fr auto;
  gap: 12px;
}
.bm-nav {
  display: none;
  grid-column: 1 / -1;
}
.bm-nav.is-open {
  display: block;
}
.bm-menu {
  display: grid;
  justify-content: stretch;
  gap: 10px;
  padding: 12px 0;
}
.bm-menu-toggle {
  display: inline-grid;
  place-items: center;
}
.bm-header__actions {
  justify-self: end;
}
.bm-login-link,
.bm-header .bm-btn {
  display: none;
}
.bm-section {
  padding: 68px 0;
}
.bm-section-head,
.bm-section-head--wide {
  display: block;
  text-align: start;
}
.bm-section-head--center {
  text-align: center;
}
.bm-hero {
  min-height: auto;
  padding: 64px 0 76px;
}
.bm-hero__grid,
.bm-split,
.bm-split--media-first,
.bm-platform-panel,
.bm-revenue,
.bm-final {
  grid-template-columns: 1fr;
}
.bm-hero__grid {
  gap: 34px;
}
.bm-hero h1 {
  font-size: clamp(38px, 12vw, 54px);
}
.bm-feature-grid,
.bm-process,
.bm-artist-grid,
.bm-mini-grid {
  grid-template-columns: 1fr;
}
.bm-hero-image,
.bm-app-image {
  margin: 0;
  border: 1px solid var(--bm-line);
  border-radius: 30px;
  overflow: hidden;
  min-height: 540px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .36), rgba(34, 211, 238, .14)),
    rgba(255, 255, 255, .035);
  box-shadow: var(--bm-shadow);
}
.bm-hero-image img,
.bm-app-image img,
.bm-hero-image .bm-image-placeholder,
.bm-app-image .bm-image-placeholder {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
  object-fit: cover;
}
.bm-app-image {
  min-height: 440px;
}
.bm-editor-section {
  padding-block: 44px;
}
.bm-editor-content {
  max-width: 860px;
}
.bm-editor-content :where(p, li) {
  color: rgba(255, 255, 255, .72);
}
.bm-editor-content :where(h2, h3, h4) {
  color: #fff;
}
.bm-footer__grid {
  grid-template-columns: 1fr;
}
.bm-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) {
  .bm-header .bm-btn {
    display: inline-flex;
  }
  .bm-feature-grid,
  .bm-process,
  .bm-artist-grid,
  .bm-mini-grid,
  .bm-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 861px) {
  .bm-container {
    width: min(1280px, calc(100% - 40px));
  }
  .bm-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 24px;
  }
  .bm-nav {
    display: block;
    grid-column: auto;
  }
  .bm-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
  }
  .bm-menu-toggle {
    display: none;
  }
  .bm-login-link {
    display: inline-flex;
  }
  .bm-section {
    padding: 92px 0;
  }
  .bm-hero {
    padding: 86px 0 104px;
  }
  .bm-hero h1 {
    font-size: clamp(52px, 6vw, 76px);
  }
  .bm-hero__grid,
  .bm-split {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    gap: 58px;
  }
  .bm-split--media-first {
    grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
  }
  .bm-platform-panel {
    grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  }
  .bm-revenue {
    grid-template-columns: minmax(190px, .5fr) minmax(0, 1fr) minmax(260px, .72fr);
  }
  .bm-final {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .62fr);
  }
  .bm-section-head--wide {
    display: block;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  }
}
@media (min-width: 1120px) {
  .bm-feature-grid,
  .bm-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .bm-artist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bm-footer__grid {
    grid-template-columns: 1.1fr .75fr .75fr .9fr;
  }
}

@media (max-width: 639px) {
  .bm-footer__col--brand,
  .bm-footer__col--cta {
    text-align: right;
  }
  .bm-footer-socials {
    justify-content: flex-start;
  }
  .bm-footer__logo-img {
    max-width: 156px;
  }
  .bm-footer-cta {
    width: 100%;
    justify-content: center;
  }
}

.bm-page-hero {
  position: relative;
  padding: 64px 0 46px;
  border-bottom: 1px solid var(--bm-line);
  background:
    radial-gradient(circle at 78% 12%, rgba(139, 92, 246, .18), transparent 30rem),
    rgba(255, 255, 255, .02);
}
.bm-page-hero h1 {
  max-width: 960px;
  margin: 14px 0 0;
  font-size: clamp(36px, 10vw, 66px);
  line-height: 1.25;
  font-weight: 950;
}
.bm-breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
}
.bm-breadcrumbs a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}
.bm-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.bm-related-links {
  border: 1px solid var(--bm-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
  padding: 22px;
  height: fit-content;
}
.bm-related-links h2 {
  margin: 0 0 14px;
  font-size: 20px;
}
.bm-related-links a {
  display: block;
  border-top: 1px solid var(--bm-line);
  padding: 12px 0;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 800;
}
.bm-related-links a:hover {
  color: #fff;
}
.bm-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.bm-post-card {
  overflow: hidden;
  border: 1px solid var(--bm-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .035);
}
.bm-post-card__media {
  display: grid;
  place-items: center;
  min-height: 230px;
  background: linear-gradient(135deg, rgba(139, 92, 246, .32), rgba(34, 211, 238, .12));
  color: #fff;
}
.bm-post-card__media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.bm-post-card__body {
  padding: 22px;
}
.bm-post-card time {
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}
.bm-post-card h2 {
  margin: 8px 0 10px;
  font-size: 23px;
  line-height: 1.45;
}
.bm-post-card a {
  text-decoration: none;
}
.bm-post-card p {
  color: rgba(255, 255, 255, .58);
}
.bm-featured-image {
  margin: 0 0 32px;
}
.bm-featured-image img,
.bm-track-cover img {
  border-radius: 28px;
}
.bm-track-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}
.bm-track-cover {
  margin: 0;
  aspect-ratio: 1;
  max-width: 360px;
  border: 1px solid var(--bm-line);
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, .48), rgba(34, 211, 238, .18));
}
.bm-track-cover span {
  color: #fff;
}
.bm-pagination {
  grid-column: 1 / -1;
}
.bm-pagination a,
.bm-pagination span {
  color: rgba(255, 255, 255, .72);
}
@media (min-width: 640px) {
  .bm-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 861px) {
  .bm-page-hero {
    padding: 92px 0 58px;
  }
  .bm-service-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 44px;
  }
  .bm-track-grid {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}
@media (min-width: 1120px) {
  .bm-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
