.logos-orchestration-frame {
  position: absolute;
  inset: 0;
  z-index: var(--logos-z-frame);
  pointer-events: none;
  transition:
    opacity var(--logos-duration-normal)
      var(--logos-ease),
    filter var(--logos-duration-normal)
      var(--logos-ease);
}

.logos-orchestration-frame__object {
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  filter:
    drop-shadow(
      0 0 1rem rgba(0, 201, 133, 0.08)
    );
}

.logos-stage.has-active-module
.logos-orchestration-frame {
  opacity: 0.72;
}

.logos-stage.is-synchronized
.logos-orchestration-frame {
  opacity: 1;
  filter:
    drop-shadow(
      0 0 1.5rem rgba(0, 201, 133, 0.34)
    );
}

.logos-orchestration-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54%;
  aspect-ratio: 1.8;
  border:
    1px dashed rgba(0, 201, 133, 0.15);
  border-radius: 50%;
  transform:
    translate(-50%, -50%);
}

.logos-orchestration-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36%;
  aspect-ratio: 1.75;
  border:
    1px solid rgba(98, 223, 240, 0.11);
  border-radius: 50%;
  transform:
    translate(-50%, -50%);
}

.logos-stage.has-active-module
.logos-orchestration-frame::before {
  border-color:
    rgba(0, 201, 133, 0.25);
}

.logos-stage.is-synchronized
.logos-orchestration-frame::before,
.logos-stage.is-synchronized
.logos-orchestration-frame::after {
  border-color:
    rgba(0, 201, 133, 0.48);
}