/* Business Management product page */
.business-management-page {
  --bm-ink: var(--product-ink);
  --bm-muted: var(--product-muted);
  --bm-canvas: var(--product-canvas);
  --bm-surface: var(--product-surface);
  --bm-soft: var(--product-soft);
  --bm-line: var(--product-line);
  --bm-night: var(--product-night);
  --bm-blue: var(--product-blue);
  --bm-cyan: var(--product-cyan);
  --bm-green: var(--product-green);
}

/* Product-specific Hero visualization */
.bm-hero-system {
  position: relative;
}

.bm-hero-system::after {
  position: absolute;
  top: -12rem;
  right: -13rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(72, 224, 244, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(72, 224, 244, 0.02), 0 0 0 8rem rgba(72, 224, 244, 0.015);
  content: "";
  pointer-events: none;
}

.bm-system-header {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(151, 197, 222, 0.17);
}

.bm-system-header div span,
.bm-system-header div strong {
  display: block;
}

.bm-system-header div span {
  margin-bottom: 0.12rem;
  color: #67dce9;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bm-system-header div strong {
  font-size: var(--product-font-card);
}

.bm-live-state {
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
  color: #9bb2be;
  font-size: var(--product-font-label);
}

.bm-live-state i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--bm-green);
  box-shadow: 0 0 0 4px rgba(66, 211, 146, 0.1);
}

.bm-stage-origin {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 22rem;
  margin: 1rem auto 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(92, 207, 223, 0.32);
  border-radius: 7px;
  background: rgba(10, 47, 63, 0.82);
  grid-template-columns: auto 1fr;
  gap: 0.12rem 0.75rem;
  align-items: center;
}

.bm-stage-origin::after {
  position: absolute;
  top: 100%;
  left: 50%;
  height: 1rem;
  border-left: 1px solid #36c9dc;
  content: "";
}

.bm-stage-origin span {
  grid-row: 1 / span 2;
  color: #66dce9;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bm-stage-origin strong,
.bm-stage-origin small {
  display: block;
}

.bm-stage-origin strong {
  color: #f3fbff;
  font-size: var(--product-font-body-compact);
}

.bm-stage-origin small {
  color: #91a8b4;
  font-size: var(--product-font-caption);
}

.bm-stage-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.bm-stage-list::before {
  position: absolute;
  top: 2.45rem;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, #2979ff, #21d8e9);
  content: "";
}

.bm-stage-list li {
  position: relative;
  min-width: 0;
}

.bm-stage {
  position: relative;
  display: block;
  width: 100%;
  min-height: 14.5rem;
  padding: 0.55rem 0.5rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #d6e3e9;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.bm-stage:hover,
.bm-stage:focus-visible,
.bm-stage.is-active {
  border-color: rgba(91, 190, 213, 0.26);
  background: rgba(14, 55, 72, 0.62);
  outline: 0;
}

.bm-stage:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(104, 224, 237, 0.5);
}

.bm-stage.is-active::after {
  border-color: #85f3ff;
  background: #1abed3;
  box-shadow: 0 0 0 5px rgba(34, 217, 236, 0.13), 0 0 18px rgba(34, 217, 236, 0.55);
}

.bm-stage::after {
  position: absolute;
  top: 1.05rem;
  left: calc(50% - 0.28rem);
  width: 0.56rem;
  height: 0.56rem;
  border: 2px solid #5abfd5;
  border-radius: 50%;
  background: #082432;
  box-shadow: 0 0 0 5px rgba(34, 217, 236, 0.06);
  content: "";
}

.bm-stage > span {
  display: block;
  margin: 2.9rem 0 0.65rem;
  color: #5dcfdf;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.bm-stage strong {
  min-height: 2.35rem;
  margin-bottom: 0.55rem;
  color: #f4fbff;
  font-size: var(--product-font-body-compact);
  line-height: 1.35;
}

.bm-stage small {
  color: #839ba8;
  font-size: var(--product-font-small);
  line-height: 1.5;
}

.bm-operations-rail {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(151, 197, 222, 0.17);
  background: rgba(8, 35, 49, 0.78);
}

.bm-operations-rail > span {
  color: #63e1ed;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bm-operations-rail p {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: #adbec7;
  font-size: var(--product-font-caption);
}

.bm-operations-rail i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3e7e97;
}

/* Platform relationship */
.bm-platform-section {
  background: var(--bm-surface);
}

.bm-platform-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.bm-platform-map::before,
.bm-platform-map::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 1.25rem;
  border-top: 1px dashed #8aa6b6;
  content: "";
}

.bm-platform-map::before {
  left: calc(33.333% - 0.08rem);
}

.bm-platform-map::after {
  right: calc(33.333% - 0.08rem);
}

.bm-platform-column,
.bm-platform-core {
  position: relative;
  z-index: 1;
  min-height: 12rem;
  padding: 1.4rem;
  border: 1px solid var(--bm-line);
  border-radius: 10px;
  background: var(--bm-canvas);
}

.bm-platform-map article > span,
.bm-model-node > span,
.bm-sales-plan > span,
.bm-access-chain div > span,
.bm-record-source > span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--bm-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.bm-platform-map h3 {
  margin-bottom: 0.65rem;
  font-size: var(--product-font-title);
}

.bm-platform-map p {
  margin: 0;
  color: var(--bm-muted);
  font-size: var(--product-font-card);
}

.bm-platform-core {
  border-color: #3c78ff;
  background: linear-gradient(145deg, #0b2d46, #0a3a52);
  color: #fff;
  box-shadow: 0 18px 38px rgba(17, 65, 92, 0.15);
}

.bm-platform-core > span {
  color: #6fe8f4 !important;
}

.bm-platform-core h3 {
  color: #fff;
}

.bm-platform-core ul {
  display: grid;
  margin: 1rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
}

.bm-platform-core li {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(170, 219, 236, 0.19);
  color: #bfd2dc;
  font-size: var(--product-font-caption);
}

.bm-platform-band {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid #b9cce0;
  border-radius: 7px;
  background: #f3f7fc;
  color: #566e7c;
  font-size: var(--product-font-caption);
}

.bm-platform-band strong {
  margin-right: 0.5rem;
  color: #173c68;
}

.bm-platform-band span + span::before {
  margin-right: 0.65rem;
  color: #9bb0bc;
  content: "·";
}

/* Service configurator */
.bm-service-section {
  background: var(--bm-canvas);
}

.bm-configurator {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--bm-line);
  border-radius: 12px;
  background: #fff;
  grid-template-columns: minmax(26rem, 0.96fr) minmax(29rem, 1.04fr);
  box-shadow: 0 20px 50px rgba(18, 50, 68, 0.07);
}

.bm-config-controls {
  padding: 1.35rem;
}

.bm-enabled-products {
  display: grid;
  padding: 0 0 1rem;
  border-bottom: 1px solid #e3eaf0;
  grid-template-columns: minmax(8rem, 0.72fr) repeat(2, minmax(8rem, 0.64fr));
  gap: 0.55rem;
  align-items: stretch;
}

.bm-enabled-products > span {
  align-self: center;
  color: #536b78;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bm-enabled-products button {
  min-height: 3.25rem;
  padding: 0.55rem 0.65rem;
  border: 1px dashed #9eafb9;
  border-radius: 7px;
  background: #f7f9fa;
  color: #637984;
  text-align: left;
}

.bm-enabled-products button.is-selected {
  border-style: solid;
  border-color: #7ba3f5;
  background: #eef4ff;
  color: #174fc8;
}

.bm-enabled-products strong,
.bm-enabled-products small {
  display: block;
}

.bm-enabled-products strong {
  margin-bottom: 0.14rem;
  font-size: var(--product-font-caption);
}

.bm-enabled-products small {
  font-size: var(--product-font-label-xs);
  line-height: 1.35;
}

.bm-config-controls fieldset {
  display: grid;
  margin: 0;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid #e3eaf0;
  grid-template-columns: minmax(8rem, 0.72fr) minmax(13rem, 1.28fr);
  column-gap: 1rem;
}

.bm-config-controls fieldset:first-of-type {
  padding-top: 0;
}

.bm-config-controls fieldset:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bm-config-controls legend {
  grid-row: 1 / span 2;
  align-self: start;
  margin: 0;
  color: #172a36;
  font-size: var(--product-font-body-compact);
  font-weight: 700;
}

.bm-config-controls legend span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  margin-right: 0.45rem;
  border: 1px solid #c6d7e3;
  border-radius: 50%;
  color: var(--bm-blue);
  font-size: var(--product-font-label-xs);
}

.bm-control-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.bm-control-pair button {
  min-height: 2.3rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid #cbd9e2;
  border-radius: 6px;
  background: #f8fafc;
  color: #415864;
  font-size: var(--product-font-caption);
  font-weight: 650;
  line-height: 1.25;
}

.bm-control-pair button:hover,
.bm-control-pair button:focus-visible {
  border-color: #6b94ef;
}

.bm-control-pair button.is-selected {
  border-color: var(--bm-blue);
  background: #edf3ff;
  color: #174fc8;
  box-shadow: inset 0 0 0 1px rgba(36, 104, 255, 0.1);
}

.bm-control-pair button:disabled {
  border-style: dashed;
  color: #92a2aa;
  cursor: not-allowed;
}

.bm-config-controls fieldset > p,
.bm-default-map > p {
  grid-column: 2;
  margin: 0.45rem 0 0;
  color: #586f7b;
  font-size: var(--product-font-small);
  line-height: 1.5;
}

.bm-requirement {
  color: #275fb8;
  font-weight: 700;
}

.bm-processing-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.bm-processing-options span {
  padding: 0.42rem 0.55rem;
  border: 1px solid #9dc3ff;
  border-radius: 5px;
  background: #f0f5ff;
  color: #285ab7;
  font-size: var(--product-font-label);
  font-weight: 650;
}

.bm-processing-options.is-disabled span {
  border-style: dashed;
  border-color: #ccd6dc;
  background: #f7f9fa;
  color: #93a1a8;
}

.bm-control-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.bm-control-row + .bm-control-row {
  margin-top: 0.45rem;
}

.bm-control-row > label {
  color: #4d626e;
  font-size: var(--product-font-small);
}

.bm-control-row > label small {
  display: block;
  margin-top: 0.1rem;
  color: #617987;
  font-size: var(--product-font-label-xs);
}

.bm-control-pair.is-small {
  width: 7.5rem;
}

.bm-control-pair.is-small button {
  min-height: 1.9rem;
  padding: 0.3rem;
}

.bm-effective-route {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 68% 35%, rgba(28, 139, 255, 0.18), transparent 20rem),
    linear-gradient(145deg, #071923, #092b3a);
  color: #fff;
}

.bm-effective-route::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(137, 205, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 205, 230, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

.bm-effective-route > * {
  position: relative;
  z-index: 1;
}

.bm-effective-route > header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(145, 198, 221, 0.19);
}

.bm-effective-route > header span,
.bm-effective-route > header strong {
  display: block;
}

.bm-effective-route > header span {
  margin-bottom: 0.25rem;
  color: #6fe8f4;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bm-effective-route > header strong {
  font-size: var(--product-font-title-sm);
}

.bm-effective-route ol {
  display: grid;
  min-height: 16rem;
  margin: 0;
  padding: 2.5rem 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  list-style: none;
}

.bm-effective-route li {
  position: relative;
  display: flex;
  min-height: 6.7rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid rgba(107, 174, 205, 0.38);
  border-radius: 8px;
  background: rgba(9, 42, 57, 0.82);
  text-align: center;
}

.bm-effective-route li + li {
  margin-left: 1.25rem;
}

.bm-effective-route li + li::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 1.25rem;
  height: 1px;
  background: #37cfdf;
  box-shadow: 0 0 8px rgba(55, 207, 223, 0.55);
  content: "";
}

.bm-effective-route li small,
.bm-effective-route li strong {
  display: block;
}

.bm-effective-route li small {
  position: absolute;
  top: 0.55rem;
  right: 0;
  left: 0;
  color: #6fb8d1;
  font-size: var(--product-font-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bm-effective-route li strong {
  color: #f2fbff;
  font-size: var(--product-font-small);
  line-height: 1.35;
}

.bm-source-state {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.bm-source-state div {
  padding: 0.85rem;
  border: 1px solid rgba(126, 190, 219, 0.21);
  border-radius: 7px;
  background: rgba(5, 23, 32, 0.62);
}

.bm-source-state span,
.bm-source-state strong,
.bm-source-state small {
  display: block;
}

.bm-source-state span {
  margin-bottom: 0.18rem;
  color: #69dce9;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bm-source-state strong {
  margin-bottom: 0.25rem;
  font-size: var(--product-font-small);
}

.bm-source-state small {
  color: #819ba8;
  font-size: var(--product-font-caption);
  line-height: 1.45;
}

.bm-route-matrix {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--bm-line);
  border-radius: 10px;
  background: #fff;
}

.bm-route-matrix article {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--bm-line);
}

.bm-route-matrix article:last-child {
  border-right: 0;
}

.bm-route-matrix article.is-current {
  background: #eff5ff;
  box-shadow: inset 0 3px var(--bm-blue);
}

.bm-route-matrix span,
.bm-route-matrix strong {
  display: block;
}

.bm-route-matrix span {
  margin-bottom: 0.4rem;
  color: var(--bm-blue);
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.bm-route-matrix strong {
  min-height: 3.2rem;
  margin-bottom: 0.4rem;
  color: #1a3443;
  font-size: var(--product-font-body-compact);
  line-height: 1.5;
}

.bm-route-matrix p {
  margin: 0;
  color: #5d727e;
  font-size: var(--product-font-small);
  line-height: 1.5;
}

/* Content, packages, plans */
.bm-offers-section {
  background: var(--bm-surface);
}

.bm-offer-model {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) 2.5rem minmax(11rem, 1fr) 2.5rem minmax(14rem, 1.2fr) 2.5rem minmax(11rem, 1fr);
  align-items: stretch;
}

.bm-model-node {
  position: relative;
  min-height: 15rem;
  padding: 1.25rem;
  border: 1px solid var(--bm-line);
  border-radius: 10px;
  background: #f8fafc;
}

.bm-model-node h3 {
  margin-bottom: 0.55rem;
  font-size: var(--product-font-title-sm);
}

.bm-model-node p {
  margin: 0;
  color: var(--bm-muted);
  font-size: var(--product-font-small);
}

.bm-model-node ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.bm-model-node li {
  padding: 0.3rem 0;
  border-top: 1px solid #e2e9ee;
  color: #526975;
  font-size: var(--product-font-small);
}

.bm-plan-node {
  border-color: #75a1ff;
  background: #f1f6ff;
}

.bm-content-branches {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  border-top: 1px dashed #9eb4c0;
}

.bm-content-branch {
  display: grid;
  padding-top: 0.55rem;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: baseline;
}

.bm-content-branch + .bm-content-branch {
  margin-top: 0.45rem;
  border-top: 1px solid #e2e9ee;
}

.bm-content-branch span,
.bm-content-branch strong {
  display: block;
}

.bm-content-branch span {
  color: var(--bm-green);
  font-size: var(--product-font-label);
  font-weight: 700;
  text-transform: uppercase;
}

.bm-content-branch strong {
  color: #47606c;
  font-size: var(--product-font-caption);
}

.bm-content-branch + .bm-content-branch span {
  color: var(--bm-blue);
}

.bm-model-arrow {
  position: relative;
  display: flex;
  align-items: center;
}

.bm-model-arrow span {
  width: 100%;
  height: 1px;
  background: #8fa9b8;
}

.bm-model-arrow span::after {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin: -0.19rem 0 0 auto;
  border-top: 1px solid #8fa9b8;
  border-right: 1px solid #8fa9b8;
  transform: rotate(45deg);
  content: "";
}

.bm-model-definitions {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--bm-blue);
  background: #f3f7fb;
}

.bm-model-definitions dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.5rem;
}

.bm-model-definitions dt {
  margin-bottom: 0.2rem;
  color: #173c68;
  font-size: var(--product-font-small);
}

.bm-model-definitions dd {
  margin: 0;
  color: #627783;
  font-size: var(--product-font-small);
}

.bm-relationship-explorer {
  display: grid;
  margin-top: 1rem;
  border: 1px solid var(--bm-line);
  border-radius: 9px;
  background: #fff;
  grid-template-columns: 13rem minmax(0, 1fr);
}

.bm-relationship-explorer > p {
  margin: 0;
  padding: 1rem;
  border-right: 1px solid var(--bm-line);
  background: #f7f9fb;
}

.bm-relationship-explorer > p span,
.bm-relationship-explorer > p strong {
  display: block;
}

.bm-relationship-explorer > p span {
  margin-bottom: 0.35rem;
  color: var(--bm-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bm-relationship-explorer > p strong {
  color: #264452;
  font-size: var(--product-font-body-compact);
  line-height: 1.45;
}

.bm-relationship-explorer > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bm-relationship-explorer details {
  padding: 1rem;
  border-right: 1px solid var(--bm-line);
}

.bm-relationship-explorer details:last-child {
  border-right: 0;
}

.bm-relationship-explorer summary {
  color: #173c68;
  font-size: var(--product-font-body-compact);
  font-weight: 700;
  cursor: pointer;
}

.bm-relationship-explorer ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
}

.bm-relationship-explorer li {
  margin-top: 0.35rem;
  color: #566e7a;
  font-size: var(--product-font-small);
  line-height: 1.45;
}

/* Sales and access */
.bm-sales-section {
  background: var(--bm-canvas);
}

.bm-sales-flow {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1rem;
}

.bm-sales-plan {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #0b2d46, #0a3a52);
  color: #fff;
}

.bm-sales-plan::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 1rem;
  border-top: 1px solid #8ea9b8;
  content: "";
}

.bm-sales-plan > span {
  color: #70e7f2;
}

.bm-sales-plan strong {
  margin-bottom: 0.45rem;
  font-size: var(--product-font-title-lg);
}

.bm-sales-plan small {
  color: #a6bdc9;
  font-size: var(--product-font-small);
  line-height: 1.55;
}

.bm-sales-channels {
  position: relative;
  display: grid;
  padding-bottom: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.bm-sales-channels::after {
  position: absolute;
  right: 10%;
  bottom: 0;
  left: 10%;
  border-top: 1px solid #8ea9b8;
  content: "";
}

.bm-sales-channels article {
  position: relative;
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--bm-line);
  border-radius: 9px;
  background: #fff;
}

.bm-sales-channels article::after {
  position: absolute;
  bottom: -1.05rem;
  left: 50%;
  height: 1.05rem;
  border-left: 1px solid #8ea9b8;
  content: "";
}

.bm-sales-channels article > span {
  display: inline-flex;
  width: 1.45rem;
  height: 1.45rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid #bfd0db;
  border-radius: 50%;
  color: var(--bm-blue);
  font-size: var(--product-font-label-xs);
  font-weight: 700;
}

.bm-sales-channels h3 {
  min-height: 2.7rem;
  margin-bottom: 0.5rem;
  font-size: var(--product-font-card);
  line-height: 1.35;
}

.bm-sales-channels p {
  margin: 0;
  color: var(--bm-muted);
  font-size: var(--product-font-small);
  line-height: 1.5;
}

.bm-sales-result {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e9ed;
}

.bm-sales-result span,
.bm-sales-result strong {
  display: block;
}

.bm-sales-result span {
  margin-bottom: 0.25rem;
  color: #245fc7;
  font-size: var(--product-font-caption);
  line-height: 1.4;
}

.bm-sales-result strong {
  color: #173c68;
  font-size: var(--product-font-caption);
}

.bm-sales-convergence-label {
  position: relative;
  grid-column: 2;
  justify-self: center;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border: 1px solid #9eb9cb;
  border-radius: 999px;
  background: #fff;
  color: #194d88;
  font-size: var(--product-font-caption);
  font-weight: 700;
}

.bm-sales-convergence-label::before,
.bm-sales-convergence-label::after {
  position: absolute;
  left: 50%;
  height: 0.5rem;
  border-left: 1px solid #8ea9b8;
  content: "";
}

.bm-sales-convergence-label::before {
  bottom: 100%;
}

.bm-sales-convergence-label::after {
  top: 100%;
}

.bm-access-chain {
  display: grid;
  grid-column: 2;
  margin-top: 0.5rem;
  padding: 1rem;
  border: 1px solid #a7c1db;
  border-radius: 9px;
  background: #eff5fc;
  grid-template-columns: 1fr 2rem 1fr 2rem 1.2fr;
  align-items: center;
}

.bm-access-chain div {
  padding: 0.4rem;
}

.bm-access-chain div > span {
  color: #4677ad;
}

.bm-access-chain strong,
.bm-access-chain small {
  display: block;
}

.bm-access-chain strong {
  margin-bottom: 0.25rem;
  color: #153650;
  font-size: var(--product-font-body-compact);
}

.bm-access-chain small {
  color: #637d8c;
  font-size: var(--product-font-caption);
}

.bm-access-chain i {
  position: relative;
  height: 1px;
  background: #78a1bc;
}

.bm-access-chain i::after {
  position: absolute;
  top: -0.2rem;
  right: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #78a1bc;
  border-right: 1px solid #78a1bc;
  transform: rotate(45deg);
  content: "";
}

.bm-payment-note {
  margin: 0;
  color: #5c727e;
  font-size: var(--product-font-small);
}

.bm-sales-tools {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0 0 12rem;
  padding: 0.8rem 1rem;
  border: 1px solid #cbdbe5;
  border-radius: 8px;
  background: #f5f8fb;
}

.bm-sales-tools div {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
}

.bm-sales-tools span {
  color: #1b4f9b;
  font-size: var(--product-font-caption);
  font-weight: 700;
}

.bm-sales-tools div p {
  margin: 0;
  color: #536b77;
  font-size: var(--product-font-body-compact);
}

/* Customer, device, and reseller operations */
.bm-customer-section {
  background: var(--bm-surface);
}

.bm-customer-model {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(17rem, 0.82fr) minmax(20rem, 0.95fr);
  gap: 0.85rem;
  align-items: stretch;
}

.bm-customer-column {
  display: grid;
  gap: 0.85rem;
}

.bm-customer-column article,
.bm-reseller-operations {
  padding: 1.2rem;
  border: 1px solid var(--bm-line);
  border-radius: 9px;
  background: #f7f9fb;
}

.bm-customer-column article > span,
.bm-reseller-operations > span,
.bm-customer-record > span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--bm-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.bm-customer-column h3,
.bm-reseller-operations h3 {
  margin-bottom: 0.65rem;
  font-size: var(--product-font-title-sm);
}

.bm-customer-column ul,
.bm-reseller-operations ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-customer-column li,
.bm-reseller-operations li {
  padding: 0.45rem 0;
  border-top: 1px solid #dce5eb;
  color: #4e6571;
  font-size: var(--product-font-body-compact);
  line-height: 1.45;
}

.bm-customer-record {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 9px;
  background: linear-gradient(145deg, #071d29, #0a3446);
  color: #fff;
}

.bm-customer-record > span {
  color: #66e1ed;
}

.bm-customer-record div {
  padding: 0.8rem;
  border: 1px solid rgba(145, 199, 221, 0.24);
  border-radius: 7px;
  background: rgba(10, 45, 60, 0.72);
}

.bm-customer-record small,
.bm-customer-record strong {
  display: block;
}

.bm-customer-record small {
  margin-bottom: 0.25rem;
  color: #77dce8;
  font-size: var(--product-font-caption);
}

.bm-customer-record strong {
  font-size: var(--product-font-body-compact);
}

.bm-customer-record i {
  width: 1px;
  height: 1rem;
  margin: 0 auto;
  background: #43c6d6;
}

.bm-customer-record footer {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(145, 199, 221, 0.2);
  color: #a7bcc6;
  font-size: var(--product-font-caption);
  line-height: 1.45;
}

.bm-reseller-operations {
  display: flex;
  flex-direction: column;
}

.bm-reseller-operations p {
  margin: 0 0 1rem;
  color: var(--bm-muted);
  font-size: var(--product-font-body-compact);
}

.bm-reseller-operations > strong {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #cfdae1;
  color: #27599e;
  font-size: var(--product-font-small);
  line-height: 1.45;
}

/* Defaults */
.bm-defaults-section {
  background: var(--bm-surface);
}

.bm-split-heading-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(32rem, 1.28fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.bm-split-heading-layout .product-section-heading {
  margin: 0;
}

.bm-default-map {
  padding: 1.25rem;
  border: 1px solid var(--bm-line);
  border-radius: 11px;
  background: #f8fafc;
}

.bm-priority-order {
  display: grid;
  padding-bottom: 1rem;
  grid-template-columns: auto 1fr 1.6rem 1fr 1.6rem 1fr;
  align-items: center;
  border-bottom: 1px solid #dfe7ec;
}

.bm-priority-order span {
  margin-right: 0.85rem;
  color: #66808e;
  font-size: var(--product-font-label-xs);
  text-transform: uppercase;
}

.bm-priority-order strong {
  padding: 0.55rem;
  border: 1px solid #c8d6df;
  border-radius: 6px;
  background: #fff;
  color: #264452;
  font-size: var(--product-font-label);
  text-align: center;
}

.bm-priority-order strong:first-of-type {
  border-color: var(--bm-blue);
  color: #1855cf;
}

.bm-priority-order i {
  height: 1px;
  background: #8ca6b5;
}

.bm-default-examples {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.bm-default-examples article {
  display: grid;
  padding: 0.7rem;
  border: 1px solid #dce5ea;
  border-radius: 7px;
  background: #fff;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.bm-default-examples article > span {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #edf3ff;
  color: var(--bm-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
}

.bm-default-examples strong,
.bm-default-examples small {
  display: block;
}

.bm-default-examples strong {
  font-size: var(--product-font-caption);
}

.bm-default-examples small {
  color: #586f7a;
  font-size: var(--product-font-caption);
}

.bm-default-examples em {
  color: #3f6e99;
  font-size: var(--product-font-caption);
  font-style: normal;
}

.bm-default-map > p {
  margin: 0.85rem 0 0;
  grid-column: auto;
}

/* Connected views */
.bm-connected-section {
  background: var(--bm-canvas);
}

.bm-record-map {
  min-height: 18rem;
  padding: 1.25rem;
  border: 1px solid var(--bm-line);
  border-radius: 11px;
  background: #fff;
}

.bm-record-map {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 2.2rem;
  align-items: center;
}

.bm-record-source {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--bm-blue);
  border-radius: 9px;
  background: #eff5ff;
}

.bm-record-source::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 2.2rem;
  height: 1px;
  background: #6c93b0;
  content: "";
}

.bm-record-source strong,
.bm-record-source small {
  display: block;
}

.bm-record-source strong {
  margin-bottom: 0.3rem;
  font-size: var(--product-font-card);
}

.bm-record-source small {
  color: #67808e;
  font-size: var(--product-font-caption);
}

.bm-record-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.bm-record-products article {
  position: relative;
  padding: 0.9rem 1rem;
  border: 1px solid #d3dfe7;
  border-radius: 8px;
  background: #f8fafc;
}

.bm-record-products article::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 1.1rem;
  border-top: 1px dashed #6c93b0;
  content: "";
}

.bm-record-products span,
.bm-record-products strong,
.bm-record-products em,
.bm-record-products small {
  display: block;
}

.bm-record-products span {
  margin-bottom: 0.2rem;
  color: #2d6adb;
  font-size: var(--product-font-label-xs);
}

.bm-record-products strong {
  margin-bottom: 0.35rem;
  font-size: var(--product-font-body-compact);
}

.bm-record-products em {
  margin-bottom: 0.35rem;
  color: #244f87;
  font-size: var(--product-font-caption);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.bm-record-products small {
  color: #586f7b;
  font-size: var(--product-font-caption);
}

.bm-record-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #dce5eb;
  color: #566e7a;
  font-size: var(--product-font-small);
  line-height: 1.5;
}

/* Application operations */
.bm-app-section {
  background: var(--bm-surface);
}

.bm-app-control-plane {
  display: grid;
  margin-bottom: 2.5rem;
  border: 1px solid #b7cad7;
  border-radius: 11px;
  background: #f7f9fb;
  grid-template-columns: minmax(15rem, 0.62fr) minmax(38rem, 1.38fr);
  overflow: hidden;
}

.bm-app-estate {
  padding: 1.35rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(52, 217, 235, 0.16), transparent 15rem),
    linear-gradient(145deg, #071d29, #0a3446);
  color: #fff;
}

.bm-app-estate > span {
  display: block;
  margin-bottom: 0.65rem;
  color: #65e1ed;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.bm-app-estate > h3 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: var(--product-font-title-lg);
}

.bm-app-estate > div {
  position: relative;
  margin-bottom: 0.6rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(135, 197, 220, 0.24);
  border-radius: 7px;
  background: rgba(10, 45, 60, 0.72);
}

.bm-app-estate > div::after {
  position: absolute;
  top: 50%;
  right: -1.35rem;
  width: 1.35rem;
  border-top: 1px dashed #4fbdd0;
  content: "";
}

.bm-app-estate strong,
.bm-app-estate small {
  display: block;
}

.bm-app-estate strong {
  margin-bottom: 0.2rem;
  font-size: var(--product-font-body-compact);
}

.bm-app-estate small {
  color: #8fa9b5;
  font-size: var(--product-font-small);
  line-height: 1.4;
}

.bm-app-estate footer {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(135, 197, 220, 0.2);
}

.bm-app-scope {
  padding: 0.85rem;
}

.bm-app-common {
  display: grid;
  padding: 1rem;
  border: 1px solid #77a3ff;
  border-radius: 8px;
  background: #eef4ff;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(19rem, 1.1fr);
  gap: 1.2rem;
  align-items: center;
}

.bm-app-common span,
.bm-app-managed-heading span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--bm-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bm-app-common h3,
.bm-app-managed-heading h3 {
  margin: 0;
  font-size: var(--product-font-title-sm);
}

.bm-app-common p {
  margin: 0;
  color: #4f6672;
  font-size: var(--product-font-body-compact);
  line-height: 1.5;
}

.bm-app-managed-heading {
  display: grid;
  padding: 1.2rem 0 0.8rem;
  grid-template-columns: minmax(18rem, 1fr) minmax(20rem, 1fr);
  gap: 1rem;
  align-items: end;
}

.bm-app-managed-heading ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-app-managed-heading li {
  padding: 0.38rem 0.5rem;
  border: 1px solid #cbd9e2;
  border-radius: 5px;
  background: #fff;
  color: #5c717d;
  font-size: var(--product-font-caption);
}

.bm-app-managed-heading li strong {
  color: #214f8e;
}

.bm-app-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.bm-app-capabilities article {
  position: relative;
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid #d5e0e7;
  border-radius: 8px;
  background: #fff;
}

.bm-app-capabilities article:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.bm-app-capabilities article > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #647f8d;
  font-size: var(--product-font-label);
  font-weight: 700;
}

.bm-app-capabilities h3 {
  max-width: 25ch;
  margin: 0 2rem 0.5rem 0;
  font-size: var(--product-font-card);
}

.bm-app-capabilities p {
  margin: 0 0 0.75rem;
  color: var(--bm-muted);
  font-size: var(--product-font-body-compact);
  line-height: 1.55;
}

.bm-app-capabilities small {
  display: block;
  padding-top: 0.6rem;
  border-top: 1px solid #e1e8ed;
  color: #2761bb;
  font-size: var(--product-font-caption);
}

.bm-app-mode-intro {
  display: grid;
  margin-bottom: 1rem;
  grid-template-columns: 13rem minmax(0, 1fr);
  align-items: end;
}

.bm-app-mode-intro .product-eyebrow {
  margin: 0;
}

.bm-app-mode-intro h3 {
  max-width: 42ch;
  margin: 0;
  font-size: var(--product-font-title);
}

.bm-app-modes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.bm-app-mode {
  min-height: 21rem;
  padding: 1.25rem;
  border: 1px solid var(--bm-line);
  border-radius: 10px;
  background: #f8fafc;
}

.bm-app-mode.is-managed {
  border-color: #6d9cff;
  background: #eff5ff;
}

.bm-app-mode > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--bm-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.bm-app-mode h3 {
  margin-bottom: 0.65rem;
  font-size: var(--product-font-title);
}

.bm-app-mode p {
  min-height: 4.8rem;
  margin: 0;
  color: var(--bm-muted);
  font-size: var(--product-font-body-compact);
  line-height: 1.5;
}

.bm-app-mode .bm-build-boundary {
  min-height: 0;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #cfdcf0;
  color: #315d97;
  font-size: var(--product-font-small);
}

.bm-app-mode ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.bm-app-mode li {
  padding: 0.56rem 0;
  border-top: 1px solid #dce5eb;
  color: #4e6672;
  font-size: var(--product-font-body-compact);
  line-height: 1.45;
}

.bm-app-mode li strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #234f88;
}

.bm-app-release {
  display: grid;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #aac1d3;
  border-radius: 10px;
  background: linear-gradient(135deg, #082433, #0a3142);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
  color: #fff;
  list-style: none;
}

.bm-app-release li {
  position: relative;
  padding: 0.35rem;
}

.bm-app-release li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.2rem);
  width: 1.6rem;
  height: 1px;
  background: #45c7d7;
  content: "";
}

.bm-app-release span,
.bm-app-release strong,
.bm-app-release small {
  display: block;
}

.bm-app-release span {
  margin-bottom: 0.35rem;
  color: #64e1ed;
  font-size: var(--product-font-label);
  font-weight: 700;
}

.bm-app-release strong {
  margin-bottom: 0.28rem;
  font-size: var(--product-font-body-compact);
}

.bm-app-release small {
  color: #8fa8b4;
  font-size: var(--product-font-caption);
  line-height: 1.45;
}

/* Operational preview */
.bm-operations-section {
  background: var(--bm-surface);
}

.bm-operations-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(25rem, 1.2fr);
  gap: 4rem;
  align-items: end;
}

.bm-operations-heading h2 {
  margin-bottom: 0;
}

.bm-operations-block {
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid #1d4559;
  border-radius: 10px;
  background: #071d29;
  color: #fff;
}

.bm-operations-block > header {
  display: grid;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(143, 202, 224, 0.2);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
  gap: 2rem;
  align-items: end;
}

.bm-operations-block > header span,
.bm-analytics-heading > span {
  display: block;
  margin-bottom: 0.35rem;
  color: #65e1ed;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bm-operations-block > header h3 {
  margin: 0;
  color: #fff;
  font-size: var(--product-font-title);
}

.bm-operations-block > header p {
  margin: 0;
  color: #9fb5c0;
  font-size: var(--product-font-body-compact);
}

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

.bm-live-operations article {
  min-height: 13rem;
  padding: 1.15rem;
  border-right: 1px solid rgba(143, 202, 224, 0.16);
}

.bm-live-operations article:last-child {
  border-right: 0;
}

.bm-live-operations article > span {
  display: block;
  margin-bottom: 0.6rem;
  color: #63d8e6;
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.bm-live-operations h4 {
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: var(--product-font-title-sm);
}

.bm-live-operations p {
  margin: 0;
  color: #9eb3bd;
  font-size: var(--product-font-small);
  line-height: 1.55;
}

.bm-analytics-heading {
  display: grid;
  margin-bottom: 1rem;
  grid-template-columns: 14rem minmax(0, 1fr);
  align-items: end;
}

.bm-analytics-heading > span {
  margin: 0;
  color: var(--bm-blue);
}

.bm-analytics-heading h3 {
  max-width: 52ch;
  margin: 0;
  font-size: var(--product-font-title);
}

.bm-analytics-table-wrap {
  overflow: hidden;
  border: 1px solid var(--bm-line);
  border-radius: 10px 10px 0 0;
  background: #fff;
}

.bm-analytics-reports {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.bm-analytics-reports caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bm-analytics-reports thead th {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #cbd9e2;
  background: #eef3f7;
  color: #526b78;
  font-size: var(--product-font-caption);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
}

.bm-analytics-reports thead th:first-child {
  width: 22%;
}

.bm-analytics-reports thead th:nth-child(2) {
  width: 29%;
}

.bm-analytics-reports thead th:last-child {
  width: 49%;
}

.bm-analytics-reports tbody th,
.bm-analytics-reports tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--bm-line);
  vertical-align: top;
  text-align: left;
}

.bm-analytics-reports tbody tr:last-child th,
.bm-analytics-reports tbody tr:last-child td {
  border-bottom: 0;
}

.bm-analytics-reports tbody th > span,
.bm-analytics-reports tbody th > strong {
  display: block;
}

.bm-analytics-reports tbody th > span {
  margin-bottom: 0.4rem;
  color: var(--bm-blue);
  font-size: var(--product-font-caption);
  letter-spacing: 0.04em;
}

.bm-analytics-reports tbody th > strong {
  color: var(--bm-ink);
  font-size: var(--product-font-card);
}

.bm-analytics-reports tbody td {
  color: var(--bm-muted);
  font-size: var(--product-font-body-compact);
  line-height: 1.55;
}

.bm-analytics-reports ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem 1rem;
  list-style: none;
}

.bm-analytics-reports li {
  position: relative;
  padding-left: 0.7rem;
  color: #4f6672;
  font-size: var(--product-font-small);
  line-height: 1.45;
}

.bm-analytics-reports li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #2e75ec;
  content: "";
}

.bm-analysis-filters {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: -1rem 0 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--bm-line);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: #f4f7fa;
  color: #5d7380;
  font-size: var(--product-font-caption);
}

.bm-analysis-filters strong {
  margin-right: 0.2rem;
  color: #183c51;
}

.bm-analysis-filters span + span::before {
  margin-right: 0.55rem;
  color: #a0b2bc;
  content: "·";
}

.bm-dashboard-preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #a9bdcb;
  border-radius: 12px;
  background: #0a2332;
  box-shadow: 0 28px 70px rgba(15, 46, 64, 0.16);
}

.bm-dashboard-preview::before {
  display: block;
  height: 1.9rem;
  border-bottom: 1px solid #1d4559;
  background:
    radial-gradient(circle at 1rem 50%, #ff6d67 0 0.2rem, transparent 0.22rem),
    radial-gradient(circle at 1.8rem 50%, #f6c65b 0 0.2rem, transparent 0.22rem),
    radial-gradient(circle at 2.6rem 50%, #55d68b 0 0.2rem, transparent 0.22rem),
    #071d29;
  content: "";
}

.bm-dashboard-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.bm-dashboard-preview > a {
  display: block;
}

.bm-dashboard-preview figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(143, 199, 221, 0.15);
  background: #071723;
  color: #eaf5fa;
  font-size: var(--product-font-label);
}

.bm-dashboard-preview figcaption span:first-child {
  font-weight: 700;
}

.bm-dashboard-preview figcaption span + span {
  color: #91abb8;
}

.bm-dashboard-preview figcaption a {
  margin-left: auto;
  color: #75e6f0;
  font-weight: 650;
  text-decoration: none;
}

.bm-dashboard-preview figcaption a:hover,
.bm-dashboard-preview figcaption a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .bm-stage {
    min-height: 15.7rem;
  }

  .bm-offer-model {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .bm-model-arrow {
    display: none;
  }

  .bm-sales-flow {
    grid-template-columns: 9.5rem minmax(0, 1fr);
  }

  .bm-sales-channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bm-sales-channels article {
    min-height: 12rem;
  }

  .bm-sales-channels article::after {
    display: none;
  }

  .bm-access-chain {
    grid-column: 1 / -1;
  }

  .bm-sales-convergence-label {
    grid-column: 1 / -1;
  }

  .bm-sales-tools {
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  .bm-stage {
    min-height: 12rem;
  }

  .bm-platform-map,
  .bm-configurator,
  .bm-split-heading-layout,
  .bm-customer-model,
  .bm-app-control-plane,
  .bm-app-common,
  .bm-app-managed-heading,
  .bm-operations-block > header,
  .bm-operations-heading {
    grid-template-columns: 1fr;
  }

  .bm-app-managed-heading ul {
    justify-content: flex-start;
  }

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

  .bm-live-operations article:nth-child(2) {
    border-right: 0;
  }

  .bm-live-operations article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(143, 202, 224, 0.16);
  }

  .bm-platform-map::before,
  .bm-platform-map::after {
    display: none;
  }

  .bm-platform-column,
  .bm-platform-core {
    min-height: auto;
  }

  .bm-app-estate > div::after {
    display: none;
  }

  .bm-effective-route {
    min-height: 31rem;
  }

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

  .bm-route-matrix article:nth-child(2) {
    border-right: 0;
  }

  .bm-route-matrix article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--bm-line);
  }

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

  .bm-model-definitions dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .bm-stage-origin {
    margin-right: 0.8rem;
    margin-left: 0.8rem;
  }

  .bm-stage-origin::after {
    left: 1rem;
  }

  .bm-stage-list {
    gap: 0.45rem;
    padding: 0.8rem;
    grid-template-columns: 1fr;
  }

  .bm-stage-list::before {
    top: 2rem;
    bottom: 2rem;
    left: 1.7rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #2979ff, #21d8e9);
  }

  .bm-stage {
    min-height: 0;
    padding: 0.8rem 0.8rem 0.8rem 3rem;
  }

  .bm-stage::after {
    top: 1rem;
    left: 0.65rem;
  }

  .bm-stage > span {
    margin: 0 0 0.3rem;
  }

  .bm-stage strong {
    min-height: 0;
    margin-bottom: 0.25rem;
  }

  .bm-operations-rail,
  .bm-operations-rail p,
  .bm-platform-band {
    align-items: flex-start;
  }

  .bm-operations-rail,
  .bm-platform-band {
    flex-direction: column;
  }

  .bm-operations-rail p {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .bm-platform-band span + span::before {
    display: none;
  }

  .bm-config-controls {
    padding: 1rem;
  }

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

  .bm-config-controls fieldset {
    grid-template-columns: 1fr;
  }

  .bm-config-controls legend {
    grid-row: auto;
    margin-bottom: 0.7rem;
  }

  .bm-config-controls fieldset > p {
    grid-column: auto;
  }

  .bm-effective-route {
    min-height: auto;
    padding: 1rem;
  }

  .bm-effective-route ol {
    min-height: 0;
    padding: 1.25rem 0;
    grid-template-columns: 1fr;
  }

  .bm-effective-route li {
    min-height: 4.5rem;
  }

  .bm-effective-route li + li {
    margin: 1rem 0 0;
  }

  .bm-effective-route li + li::before {
    top: auto;
    right: auto;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 1rem;
  }

  .bm-source-state,
  .bm-route-matrix,
  .bm-offer-model,
  .bm-model-definitions dl,
  .bm-sales-channels,
  .bm-access-chain,
  .bm-record-map,
  .bm-record-products,
  .bm-app-modes,
  .bm-app-capabilities,
  .bm-analytics-heading,
  .bm-live-operations {
    grid-template-columns: 1fr;
  }

  .bm-relationship-explorer,
  .bm-relationship-explorer > div {
    grid-template-columns: 1fr;
  }

  .bm-relationship-explorer > p,
  .bm-relationship-explorer details {
    border-right: 0;
    border-bottom: 1px solid var(--bm-line);
  }

  .bm-relationship-explorer details:last-child {
    border-bottom: 0;
  }

  .bm-app-capabilities article:last-child {
    grid-column: auto;
  }

  .bm-analytics-reports thead {
    display: none;
  }

  .bm-analytics-reports,
  .bm-analytics-reports tbody,
  .bm-analytics-reports tr,
  .bm-analytics-reports th,
  .bm-analytics-reports td {
    display: block;
    width: 100%;
  }

  .bm-analytics-reports tbody tr {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--bm-line);
  }

  .bm-analytics-reports tbody tr:last-child {
    border-bottom: 0;
  }

  .bm-analytics-reports tbody th,
  .bm-analytics-reports tbody td {
    padding: 0.65rem 0.85rem;
    border-bottom: 0;
  }

  .bm-analytics-reports ul {
    grid-template-columns: 1fr;
  }

  .bm-sales-tools,
  .bm-sales-tools div,
  .bm-analysis-filters {
    align-items: flex-start;
    flex-direction: column;
  }

  .bm-route-matrix article {
    border-right: 0;
    border-bottom: 1px solid var(--bm-line);
  }

  .bm-route-matrix article:last-child {
    border-bottom: 0;
  }

  .bm-route-matrix strong,
  .bm-model-node,
  .bm-sales-channels article {
    min-height: auto;
  }

  .bm-content-branches,
  .bm-sales-result {
    position: static;
    margin-top: 1rem;
  }

  .bm-sales-channels {
    padding-bottom: 0;
  }

  .bm-sales-channels::after,
  .bm-sales-channels article::after,
  .bm-sales-convergence-label::before,
  .bm-sales-convergence-label::after {
    display: none;
  }

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

  .bm-sales-plan {
    min-height: 9rem;
  }

  .bm-sales-plan::after {
    display: none;
  }

  .bm-access-chain {
    grid-column: auto;
  }

  .bm-access-chain i {
    width: 1px;
    height: 1.2rem;
    margin: 0 auto;
  }

  .bm-access-chain i::after {
    top: auto;
    right: -0.18rem;
    bottom: 0;
    transform: rotate(135deg);
  }

  .bm-priority-order {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .bm-priority-order span {
    margin: 0;
  }

  .bm-priority-order i {
    width: 1px;
    height: 0.65rem;
    margin: 0 auto;
  }

  .bm-default-examples article {
    grid-template-columns: 2rem 1fr;
  }

  .bm-default-examples em {
    grid-column: 2;
  }

  .bm-record-map {
    gap: 1.4rem;
  }

  .bm-record-source::after {
    top: 100%;
    left: 50%;
    width: 1px;
    height: 1.4rem;
  }

  .bm-record-products article::before {
    display: none;
  }

  .bm-app-mode,
  .bm-app-mode p,
  .bm-app-capabilities article,
  .bm-live-operations article {
    min-height: auto;
  }

  .bm-app-mode-intro {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .bm-app-release {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bm-app-release li:not(:last-child)::after {
    top: calc(100% + 0.1rem);
    left: 50%;
    width: 1px;
    height: 0.8rem;
  }

  .bm-live-operations article,
  .bm-live-operations article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 202, 224, 0.16);
  }

  .bm-live-operations article:last-child {
    border-bottom: 0;
  }

  .bm-analysis-filters span + span::before {
    display: none;
  }

  .bm-dashboard-preview figcaption {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
    border-radius: 0;
  }

}

@media (max-width: 419.98px) {
  .bm-control-pair {
    grid-template-columns: 1fr;
  }

  .bm-control-pair.is-small {
    width: 6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bm-control-row {
    align-items: flex-start;
  }
}

@media (forced-colors: active) {
  .bm-stage-list::before,
  .bm-effective-route li + li::before,
  .bm-model-arrow span,
  .bm-access-chain i,
  .bm-record-source::after {
    background: CanvasText;
  }

  .bm-platform-core,
  .bm-sales-plan,
  .bm-app-release,
  .bm-effective-route {
    border: 2px solid CanvasText;
    background: Canvas;
    color: CanvasText;
  }
}
