.o6m-ecosystem {
  margin: 0;
  width: 100%;
}

.o6m-ecosystem__track {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.o6m-ecosystem__node {
  align-items: center;
  background: var(--o6-white, #fff);
  border: 1px solid var(--o6-border, #E2E8F0);
  border-radius: var(--o6-radius, 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
  min-width: 0;
  padding: 0.85rem 0.75rem;
  text-align: center;
}

.o6m-ecosystem__node--hub {
  background: var(--o6-ink, #0A0F1A);
  border-color: var(--o6-ink, #0A0F1A);
  color: #fff;
  gap: 0;
  padding-block: 0.95rem;
}

.o6m-ecosystem__node--hub .o6m-ecosystem__label {
  display: none;
}

.o6m-ecosystem__icon {
  align-items: center;
  color: var(--o6-red, #E40613);
  display: inline-flex;
  justify-content: center;
}

.o6m-ecosystem__node--hub .o6m-ecosystem__icon {
  align-items: center;
  background: transparent;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 3.25rem;
  justify-content: center;
  overflow: hidden;
  padding: 0.4rem;
  width: 3.25rem;
}

.o6m-ecosystem__logo {
  display: block;
  height: 100%;
  max-height: 2.45rem;
  max-width: 2.45rem;
  object-fit: contain;
  width: auto;
}

.o6m-ecosystem__label {
  color: var(--o6-ink, #0A0F1A);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

.o6m-ecosystem__arrow {
  align-items: center;
  color: var(--o6-slate, #475569);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 0.15rem 0;
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .o6m-ecosystem__track {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    justify-content: center;
  }

  .o6m-ecosystem__node {
    flex: 0 1 auto;
    min-width: 5.5rem;
    padding: 0.75rem 0.65rem;
  }

  .o6m-ecosystem__arrow {
    transform: none;
  }
}

@media (min-width: 1024px) {
  .o6m-ecosystem__track {
    flex-wrap: nowrap;
    gap: 0.25rem 0.35rem;
  }

  .o6m-ecosystem__node {
    min-width: 4.75rem;
  }
}

.o6m-metrics-empty {