:root {
  color-scheme: light;
  --bm-page: #f7f7fc;
  --bm-page-strong: #efeff9;
  --bm-surface: #ffffff;
  --bm-surface-raised: #fdfdff;
  --bm-ink: #20283a;
  --bm-muted: #667085;
  --bm-border: #dde0ed;
  --bm-border-strong: #c7cbdf;
  --bm-primary: #6658e5;
  --bm-primary-deep: #4d41c7;
  --bm-primary-soft: #eceaff;
  --bm-accent: #7548ad;
  --bm-green: #087f5b;
  --bm-green-soft: #e3f6ee;
  --bm-amber: #9a5b00;
  --bm-amber-soft: #fff2d8;
  --bm-focus: #1f6feb;
  --bm-shadow: 0 24px 64px rgba(50, 42, 113, 0.14);
  --bm-shadow-small: 0 14px 36px rgba(50, 42, 113, 0.09);
  --bm-nav: rgba(247, 247, 252, 0.9);
  --bm-gradient: linear-gradient(128deg, #6275e9, #7548ad);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bm-page: #0c0e18;
  --bm-page-strong: #121628;
  --bm-surface: #171b2d;
  --bm-surface-raised: #1c2135;
  --bm-ink: #f3f5fb;
  --bm-muted: #aeb6cc;
  --bm-border: #30374d;
  --bm-border-strong: #48516d;
  --bm-primary: #9288ff;
  --bm-primary-deep: #a59cff;
  --bm-primary-soft: #292847;
  --bm-accent: #c09ae9;
  --bm-green: #65d4ac;
  --bm-green-soft: #153c34;
  --bm-amber: #f2b95d;
  --bm-amber-soft: #3a2c18;
  --bm-focus: #8bb9ff;
  --bm-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  --bm-shadow-small: 0 15px 38px rgba(0, 0, 0, 0.25);
  --bm-nav: rgba(12, 14, 24, 0.9);
  --bm-gradient: linear-gradient(128deg, #94a8ff, #c09ae9);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --bm-page: #0c0e18;
    --bm-page-strong: #121628;
    --bm-surface: #171b2d;
    --bm-surface-raised: #1c2135;
    --bm-ink: #f3f5fb;
    --bm-muted: #aeb6cc;
    --bm-border: #30374d;
    --bm-border-strong: #48516d;
    --bm-primary: #9288ff;
    --bm-primary-deep: #a59cff;
    --bm-primary-soft: #292847;
    --bm-accent: #c09ae9;
    --bm-green: #65d4ac;
    --bm-green-soft: #153c34;
    --bm-amber: #f2b95d;
    --bm-amber-soft: #3a2c18;
    --bm-focus: #8bb9ff;
    --bm-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
    --bm-shadow-small: 0 15px 38px rgba(0, 0, 0, 0.25);
    --bm-nav: rgba(12, 14, 24, 0.9);
    --bm-gradient: linear-gradient(128deg, #94a8ff, #c09ae9);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--bm-page);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bm-page);
  color: var(--bm-ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.bm-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--bm-focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.bm-sr-only {
  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-container {
  width: min(calc(100% - clamp(32px, 6vw, 64px)), 1240px);
  margin-inline: auto;
}

.bm-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bm-ink);
  color: var(--bm-page);
  transform: translateY(-160%);
}

.bm-skip-link:focus {
  transform: translateY(0);
}

.bm-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--bm-border);
  background: var(--bm-nav);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bm-nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bm-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.bm-brand-logo-wrap {
  position: relative;
  width: 164px;
  height: 43px;
  display: block;
}

.bm-brand-logo {
  position: absolute;
  inset: 0;
  width: 164px;
  height: 43px;
  display: block;
}

.bm-brand-logo-dark {
  display: none;
}

:root[data-theme="dark"] .bm-brand-logo-light {
  display: none;
}

:root[data-theme="dark"] .bm-brand-logo-dark {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .bm-brand-logo-light {
    display: none;
  }

  :root:not([data-theme]) .bm-brand-logo-dark {
    display: block;
  }
}

.bm-brand-mark,
.bm-product-logo {
  display: grid;
  place-items: center;
  background: var(--bm-gradient);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(102, 88, 229, 0.25);
  font-weight: 800;
}

.bm-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 18px;
}

.bm-brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bm-brand-name span {
  color: var(--bm-primary);
}

.bm-desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--bm-muted);
  font-size: 13px;
  font-weight: 600;
}

.bm-desktop-nav a,
.bm-sign-in {
  position: relative;
  padding-block: 12px;
}

.bm-desktop-nav a::after,
.bm-sign-in::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--bm-primary);
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 160ms ease, transform 160ms ease;
}

.bm-desktop-nav a:hover,
.bm-sign-in:hover {
  color: var(--bm-ink);
}

.bm-desktop-nav a:hover::after,
.bm-sign-in:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.bm-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.bm-sign-in,
.bm-nav-cta {
  display: none;
}

.bm-theme-toggle,
.bm-menu-toggle {
  min-height: 44px;
  border: 1px solid var(--bm-border-strong);
  border-radius: 11px;
  background: var(--bm-surface);
  color: var(--bm-ink);
  cursor: pointer;
}

.bm-theme-toggle {
  width: 44px;
  padding: 0;
  display: grid;
  place-items: center;
}

.bm-theme-glyph {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, currentColor 50%, transparent 50%);
  transform: rotate(-20deg);
}

.bm-menu-toggle {
  min-width: 82px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
}

.bm-menu-lines {
  width: 17px;
  display: grid;
  gap: 3px;
}

.bm-menu-lines span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.bm-mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  max-height: calc(100vh - 73px);
  padding: 18px max(16px, calc((100% - 1240px) / 2));
  overflow-y: auto;
  border-bottom: 1px solid var(--bm-border);
  background: var(--bm-surface);
  box-shadow: var(--bm-shadow);
}

.bm-mobile-nav a:not(.bm-button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--bm-border);
  color: var(--bm-ink);
  font-weight: 600;
}

.bm-mobile-nav a[aria-current="page"] {
  color: var(--bm-primary-deep);
}

.bm-mobile-nav .bm-button {
  width: 100%;
  margin-top: 16px;
}

.bm-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.bm-button:hover {
  transform: translateY(-1px);
}

.bm-button-primary {
  background: var(--bm-gradient);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(102, 88, 229, 0.24);
}

.bm-button-secondary {
  border-color: var(--bm-border-strong);
  background: var(--bm-surface);
  color: var(--bm-ink);
}

.bm-button-light {
  background: #ffffff;
  color: #4d41c7;
  box-shadow: none;
}

.bm-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 108px) 0 clamp(64px, 7vw, 90px);
  background:
    radial-gradient(circle at 91% 4%, rgba(102, 88, 229, 0.14), transparent 32rem),
    radial-gradient(circle at 4% 48%, rgba(117, 72, 173, 0.08), transparent 28rem),
    var(--bm-page);
}

.bm-hero-grid {
  display: grid;
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
}

.bm-eyebrow,
.bm-section-label,
.bm-card-kicker,
.bm-calculator-label {
  margin: 0;
  color: var(--bm-primary-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bm-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bm-green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--bm-green) 14%, transparent);
}

.bm-hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  font-size: clamp(42px, 7.4vw, 78px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.bm-hero h1 span {
  background: var(--bm-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.bm-hero-lede {
  max-width: 670px;
  margin: 0;
  color: var(--bm-muted);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.7;
}

.bm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.bm-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--bm-muted);
  font-size: 13px;
}

.bm-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bm-proof-list li span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bm-green-soft);
  color: var(--bm-green);
  font-size: 12px;
  font-weight: 800;
}

.bm-product-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bm-border);
  border-radius: 24px;
  background: var(--bm-surface);
  box-shadow: var(--bm-shadow);
  container-type: inline-size;
}

.bm-product-chrome {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--bm-border);
  background: color-mix(in srgb, var(--bm-primary-soft) 48%, var(--bm-surface));
}

.bm-product-agency {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bm-product-logo {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 9px;
  font-size: 13px;
}

.bm-product-agency > span:last-child,
.bm-product-agency strong,
.bm-product-agency small {
  min-width: 0;
  display: block;
}

.bm-product-agency strong,
.bm-product-agency small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bm-product-agency strong {
  font-size: 13px;
  font-weight: 700;
}

.bm-product-agency small {
  margin-top: 2px;
  color: var(--bm-muted);
  font-size: 11px;
}

.bm-concept-badge,
.bm-mini-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--bm-primary-soft);
  color: var(--bm-primary-deep);
  font-weight: 700;
  white-space: nowrap;
}

.bm-concept-badge {
  padding: 7px 10px;
  font-size: 11px;
}

.bm-preview-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 16px 0;
  border-bottom: 1px solid var(--bm-border);
  background: var(--bm-surface);
}

.bm-preview-tabs button {
  min-height: 44px;
  padding: 0 11px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--bm-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.bm-preview-tabs button[aria-selected="true"] {
  border-bottom-color: var(--bm-primary);
  color: var(--bm-ink);
}

.bm-preview-panel {
  padding: clamp(14px, 3cqw, 24px);
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--bm-primary-soft) 45%, transparent), transparent 44%),
    var(--bm-surface);
}

.bm-preview-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.bm-preview-title,
.bm-preview-heading p:not(.bm-preview-title) {
  margin: 0;
}

.bm-preview-title {
  font-size: clamp(16px, 3cqw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bm-preview-heading p {
  margin-top: 3px;
  color: var(--bm-muted);
  font-size: 12px;
}

.bm-app-button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  background: var(--bm-gradient);
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.bm-app-button-static {
  display: inline-flex;
  align-items: center;
  cursor: default;
}

.bm-app-button-block {
  width: 100%;
}

.bm-portal-grid,
.bm-agency-summary-grid {
  display: grid;
  gap: 12px;
}

.bm-app-panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--bm-border);
  border-radius: 15px;
  background: var(--bm-surface-raised);
}

.bm-app-panel p {
  margin: 0;
  color: var(--bm-muted);
  font-size: 12px;
  line-height: 1.55;
}

.bm-panel-heading {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.bm-panel-heading > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.bm-panel-title,
.bm-panel-heading span {
  margin: 0;
}

.bm-panel-title {
  font-size: 13px;
  font-weight: 700;
}

.bm-panel-heading > span {
  color: var(--bm-muted);
  font-size: 11px;
}

.bm-mini-badge {
  padding: 3px 6px;
  font-size: 9px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bm-holder-item,
.bm-request-item {
  min-width: 0;
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--bm-border);
}

.bm-holder-item {
  grid-template-columns: 34px minmax(0, 1fr) auto;
}

.bm-request-item {
  grid-template-columns: minmax(0, 1fr) auto;
}

.bm-holder-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--bm-primary-soft);
  color: var(--bm-primary-deep);
  font-size: 12px;
  font-weight: 800;
}

.bm-holder-add {
  border: 1px dashed var(--bm-border-strong);
  background: transparent;
}

.bm-item-copy,
.bm-item-copy strong,
.bm-item-copy small {
  min-width: 0;
  display: block;
}

.bm-item-copy strong,
.bm-item-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bm-item-copy strong {
  color: var(--bm-ink);
  font-size: 12px;
  font-weight: 700;
}

.bm-item-copy small {
  margin-top: 2px;
  color: var(--bm-muted);
  font-size: 10px;
}

.bm-holder-item button {
  min-width: 48px;
  min-height: 44px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  color: var(--bm-primary-deep);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.bm-demo-field {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.bm-demo-field span {
  color: var(--bm-muted);
  font-size: 10px;
}

.bm-demo-field strong {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--bm-border);
  border-radius: 9px;
  background: var(--bm-surface);
  color: var(--bm-ink);
  font-size: 11px;
  font-weight: 600;
}

.bm-upload-placeholder {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  padding: 8px 10px;
  border: 1px dashed var(--bm-border-strong);
  border-radius: 9px;
  background: color-mix(in srgb, var(--bm-primary-soft) 35%, var(--bm-surface));
  color: var(--bm-muted);
  font-size: 10px;
}

.bm-upload-placeholder span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--bm-primary-soft);
  color: var(--bm-primary-deep);
  font-weight: 800;
}

.bm-request-feedback {
  margin-top: 9px !important;
  color: var(--bm-green) !important;
  font-weight: 600;
}

.bm-request-feedback:empty {
  display: none;
}

.bm-request-panel[data-active="true"] {
  border-color: var(--bm-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bm-primary) 14%, transparent);
}

.bm-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.bm-status-ready {
  background: var(--bm-green-soft);
  color: var(--bm-green);
}

.bm-status-review {
  background: var(--bm-amber-soft);
  color: var(--bm-amber);
}

.bm-status-progress {
  background: var(--bm-primary-soft);
  color: var(--bm-primary-deep);
}

.bm-queue-header,
.bm-queue-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.bm-queue-header {
  display: none;
  padding: 8px 0;
  color: var(--bm-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bm-queue-item {
  padding: 12px 0;
  border-top: 1px solid var(--bm-border);
}

.bm-queue-item > .bm-item-copy:nth-child(2) {
  grid-column: 1 / -1;
}

.bm-agency-summary-grid {
  margin-top: 12px;
}

@container (min-width: 610px) {
  .bm-portal-grid,
  .bm-agency-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bm-queue-header,
  .bm-queue-item {
    grid-template-columns: minmax(0, 1.4fr) minmax(130px, 0.8fr) auto;
  }

  .bm-queue-header {
    display: grid;
  }

  .bm-queue-item > .bm-item-copy:nth-child(2) {
    grid-column: auto;
  }
}

.bm-section {
  padding: clamp(70px, 8vw, 104px) 0;
}

.bm-band {
  border-block: 1px solid var(--bm-border);
  background: var(--bm-page-strong);
}

.bm-section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.bm-section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.bm-section-heading > p {
  margin: 18px 0 0;
  color: var(--bm-muted);
  font-size: 17px;
  line-height: 1.7;
}

.bm-journey-grid {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-journey-grid li {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--bm-border);
  border-radius: 18px;
  background: var(--bm-surface);
  box-shadow: var(--bm-shadow-small);
}

.bm-step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--bm-primary-soft);
  color: var(--bm-primary-deep);
  font-size: 12px;
  font-weight: 800;
}

.bm-step-actor {
  position: absolute;
  top: 28px;
  right: 22px;
  color: var(--bm-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bm-journey-grid h3 {
  margin: 30px 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bm-journey-grid p {
  margin: 0;
  color: var(--bm-muted);
  font-size: 14px;
  line-height: 1.65;
}

.bm-experience-grid {
  display: grid;
  gap: 18px;
}

.bm-experience-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--bm-border);
  border-radius: 22px;
  background: var(--bm-surface);
  box-shadow: var(--bm-shadow-small);
}

.bm-experience-client {
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--bm-primary-soft) 72%, transparent), transparent 60%),
    var(--bm-surface);
}

.bm-experience-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--bm-primary-soft);
  color: var(--bm-primary-deep);
  font-size: 14px;
  font-weight: 800;
}

.bm-experience-card h3 {
  margin: 8px 0 12px;
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.bm-experience-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bm-experience-card li {
  position: relative;
  padding-left: 28px;
  color: var(--bm-ink);
  font-size: 14px;
}

.bm-experience-card li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bm-green-soft);
  color: var(--bm-green);
  font-size: 11px;
  font-weight: 800;
}

.bm-capability-note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--bm-border);
  color: var(--bm-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bm-capability-note strong {
  color: var(--bm-primary-deep);
}

.bm-manual-work {
  display: grid;
  gap: 28px;
  margin-top: 22px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 22px;
  background: var(--bm-ink);
  color: var(--bm-page);
}

.bm-manual-work h3 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.bm-manual-work .bm-section-label {
  color: color-mix(in srgb, var(--bm-primary) 78%, #ffffff);
}

.bm-manual-work ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-manual-work li {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bm-page) 18%, transparent);
  color: color-mix(in srgb, var(--bm-page) 82%, transparent);
  font-size: 14px;
}

.bm-manual-work li span {
  color: color-mix(in srgb, var(--bm-primary) 78%, #ffffff);
  font-size: 11px;
  font-weight: 800;
}

.bm-renewal-layout {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.bm-batch-window,
.bm-calculator,
.bm-related-grid article {
  border: 1px solid var(--bm-border);
  border-radius: 22px;
  background: var(--bm-surface);
  box-shadow: var(--bm-shadow-small);
}

.bm-batch-window {
  min-width: 0;
  overflow: hidden;
}

.bm-batch-topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--bm-border);
  background: color-mix(in srgb, var(--bm-primary-soft) 50%, var(--bm-surface));
}

.bm-batch-title,
.bm-batch-topbar p:not(.bm-batch-title) {
  margin: 0;
}

.bm-batch-title {
  font-size: 15px;
  font-weight: 700;
}

.bm-batch-topbar p {
  margin-top: 3px;
  color: var(--bm-muted);
  font-size: 12px;
}

.bm-batch-content {
  padding: clamp(18px, 3vw, 24px);
}

.bm-batch-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bm-batch-stats div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--bm-border);
  border-radius: 13px;
  background: var(--bm-surface-raised);
}

.bm-batch-stats strong,
.bm-batch-stats span {
  display: block;
}

.bm-batch-stats strong {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.bm-batch-stats span {
  margin-top: 2px;
  color: var(--bm-muted);
  font-size: 11px;
}

.bm-progress-block {
  margin-top: 20px;
}

.bm-progress-block > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--bm-muted);
  font-size: 11px;
}

.bm-progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bm-page-strong);
}

.bm-progress-track span {
  width: 85.7%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bm-primary), var(--bm-green));
}

.bm-batch-list {
  margin-top: 16px;
  border-top: 1px solid var(--bm-border);
}

.bm-batch-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--bm-border);
}

.bm-batch-list strong,
.bm-batch-list small {
  display: block;
}

.bm-batch-list strong {
  font-size: 13px;
  font-weight: 700;
}

.bm-batch-list small {
  margin-top: 3px;
  color: var(--bm-muted);
  font-size: 11px;
  line-height: 1.45;
}

.bm-batch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bm-batch-actions .bm-button {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 12px;
}

.bm-renewal-steps {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.bm-renewal-steps li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--bm-muted);
  font-size: 11px;
  line-height: 1.45;
}

.bm-renewal-steps li span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--bm-primary-soft);
  color: var(--bm-primary-deep);
  font-size: 9px;
  font-weight: 800;
}

.bm-calculator {
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--bm-primary-soft) 65%, transparent), transparent 64%),
    var(--bm-surface);
  container-type: inline-size;
}

.bm-calculator h3 {
  margin: 10px 0 8px;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.bm-calculator > p:not(.bm-calculator-label):not(.bm-formula):not(.bm-disclaimer) {
  margin: 0;
  color: var(--bm-muted);
  font-size: 14px;
  line-height: 1.6;
}

.bm-calculator-inputs {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.bm-calculator-inputs label {
  display: grid;
  gap: 6px;
}

.bm-calculator-inputs label span {
  color: var(--bm-muted);
  font-size: 12px;
  font-weight: 600;
}

.bm-calculator-inputs input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--bm-border-strong);
  border-radius: 11px;
  background: var(--bm-surface-raised);
  color: var(--bm-ink);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.bm-calculator-inputs input[aria-invalid="true"] {
  border-color: #c43d4b;
}

.bm-calculator-error {
  min-height: 20px;
  margin: 8px 0 -4px;
  color: #b42335;
  font-size: 12px;
  font-weight: 600;
}

:root[data-theme="dark"] .bm-calculator-error {
  color: #ff9ba5;
}

.bm-calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.bm-calculator-results > div {
  min-width: 0;
  padding: 14px 4px 12px;
  border-top: 1px solid var(--bm-border-strong);
}

.bm-calculator-results strong,
.bm-calculator-results span {
  display: block;
}

.bm-calculator-results strong {
  font-size: 25px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.bm-calculator-primary strong {
  color: var(--bm-green);
}

.bm-calculator-results span {
  margin-top: 3px;
  color: var(--bm-muted);
  font-size: 11px;
  line-height: 1.4;
}

.bm-formula {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--bm-border);
  color: var(--bm-ink);
  font-size: 12px;
  line-height: 1.55;
  font-variant-numeric: tabular-nums;
}

.bm-disclaimer {
  margin: 9px 0 0;
  color: var(--bm-muted);
  font-size: 11px;
  line-height: 1.55;
}

@container (min-width: 680px) {
  .bm-calculator-inputs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bm-related-grid {
  display: grid;
  gap: 16px;
}

.bm-related-grid article {
  padding: clamp(24px, 4vw, 34px);
}

.bm-related-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bm-related-meta > span:first-child {
  color: var(--bm-primary-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bm-related-grid h3 {
  margin: 22px 0 10px;
  font-size: clamp(22px, 3vw, 29px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.bm-related-grid p {
  margin: 0;
  color: var(--bm-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bm-foundation-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

.bm-foundation-layout > div:first-child h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.bm-foundation-layout > div:first-child > p:not(.bm-section-label) {
  margin: 0;
  color: var(--bm-muted);
  font-size: 16px;
  line-height: 1.7;
}

.bm-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--bm-primary-deep);
  font-size: 14px;
  font-weight: 700;
}

.bm-foundation-grid {
  display: grid;
  gap: 12px;
}

.bm-foundation-grid article {
  padding: 20px;
  border-top: 1px solid var(--bm-border-strong);
}

.bm-foundation-grid article > span {
  color: var(--bm-primary-deep);
  font-size: 11px;
  font-weight: 800;
}

.bm-foundation-grid h3 {
  margin: 12px 0 7px;
  font-size: 17px;
  font-weight: 700;
}

.bm-foundation-grid p {
  margin: 0;
  color: var(--bm-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bm-final-cta {
  padding: clamp(56px, 7vw, 84px) 0;
}

.bm-cta-band {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.2), transparent 18rem),
    linear-gradient(124deg, #5e72e7, #7545ad);
  color: #ffffff;
  box-shadow: 0 24px 62px rgba(80, 63, 169, 0.28);
}

.bm-cta-band p,
.bm-cta-band h2 {
  margin: 0;
}

.bm-cta-band p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bm-cta-band h2 {
  max-width: 850px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bm-site-footer {
  border-top: 1px solid var(--bm-border);
  background: var(--bm-surface);
}

.bm-footer-main {
  display: grid;
  gap: 42px;
  padding-block: 54px 42px;
}

.bm-footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--bm-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bm-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.bm-footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.bm-footer-links strong {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 800;
}

.bm-footer-links a,
.bm-footer-bottom {
  color: var(--bm-muted);
  font-size: 12px;
}

.bm-footer-links a:hover,
.bm-footer-bottom a:hover {
  color: var(--bm-ink);
}

.bm-footer-bottom {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-block: 16px;
  border-top: 1px solid var(--bm-border);
}

.bm-footer-bottom > span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (min-width: 620px) {
  .bm-journey-grid,
  .bm-foundation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bm-batch-stats,
  .bm-renewal-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bm-related-grid,
  .bm-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bm-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 820px) {
  .bm-sign-in,
  .bm-nav-cta {
    display: inline-flex;
  }

  .bm-manual-work {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
  }

  .bm-footer-main {
    grid-template-columns: minmax(260px, 1fr) minmax(420px, 0.8fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .bm-hero-grid {
    grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
  }

  .bm-hero h1 {
    max-width: 540px;
    font-size: clamp(58px, 5.1vw, 76px);
  }

  .bm-renewal-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  }

  .bm-foundation-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 70px;
  }

  .bm-cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1160px) {
  .bm-desktop-nav {
    display: flex;
  }

  .bm-menu-toggle,
  .bm-mobile-nav {
    display: none !important;
  }

  body.bm-menu-open {
    overflow: auto;
  }

  .bm-section-heading {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 72px;
    align-items: end;
  }

  .bm-section-heading > p {
    margin: 0 0 4px;
  }

  .bm-journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 619px) {
  .bm-product-chrome,
  .bm-preview-heading,
  .bm-batch-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .bm-preview-heading .bm-app-button {
    width: 100%;
  }

  .bm-hero-actions .bm-button,
  .bm-batch-actions .bm-button,
  .bm-cta-band .bm-button {
    width: 100%;
  }

  .bm-holder-item {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .bm-holder-item button {
    grid-column: 2;
    justify-self: start;
  }

  .bm-related-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .bm-footer-links {
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (forced-colors: active) {
  .bm-brand-mark,
  .bm-product-logo,
  .bm-button-primary,
  .bm-app-button {
    border: 1px solid ButtonText;
  }

  .bm-progress-track span,
  .bm-live-dot {
    background: Highlight;
  }
}
