.home-orbit-ring {
  position: absolute;
  left: var(--home-orbit-center-x, 50%);
  top: var(--home-orbit-center-y, 50%);
  border: 1px solid color-mix(in srgb, var(--ring-color) 24%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--ring-tilt));
  pointer-events: none;
}
.home-orbit-ring--back {
  z-index: 900;
  clip-path: inset(0 0 calc(50% - 1px) 0);
  opacity: .72;
}
.home-orbit-ring--front {
  z-index: 6001;
  clip-path: inset(calc(50% - 1px) 0 0 0);
}
.home-orbit-core {
  position: absolute;
  left: var(--home-orbit-center-x, 50%);
  top: var(--home-orbit-center-y, 50%);
  z-index: 6000;
  width: clamp(126px, 9vw, 168px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
}
.home-orbit-core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-orbit-core:focus-visible { outline: 2px solid #56eaff; outline-offset: 4px; }
.cosmic-node.home-orbit-node {
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}
/* Hover and click feedback must not change a sphere's physical diameter. */
.home-orbit-node .node-visual,
.home-orbit-node:hover .node-visual,
.home-orbit-node:focus-visible .node-visual {
  border-radius: 50%;
  object-fit: contain;
  transform: none !important;
  animation: none !important;
}
body.is-child-layer .home-orbit-core { pointer-events: none; }
body.is-child-layer .cosmic-node.home-orbit-node { pointer-events: none !important; }
body.is-child-layer .interaction-shade {
  z-index: 12000;
  background: rgba(0, 0, 0, .48);
  pointer-events: auto;
  transition: opacity .24s ease;
}
body.is-child-layer .cosmic-node:not(.home-orbit-node) .node-visual {
  border-radius: 50%;
  transform: none !important;
  animation: none !important;
}
.home-orbit-flow {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.home-orbit-flow ellipse {
  fill: none;
  stroke: var(--ring-color);
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.home-orbit-flow-aura { stroke-width: 5; }
.home-orbit-flow-tail { stroke-width: 1.9; }
.home-orbit-flow-head {
  stroke: color-mix(in srgb, var(--ring-color) 82%, white) !important;
  stroke-width: 2.7;
}
@media (max-width: 720px) { .home-orbit-core { width: 94px; } }


@media (max-width: 640px) {
  html body[data-ball-label-style] .home-orbit-node .node-label[data-label] {
    width: max-content !important;
    min-width: 76% !important;
    max-width: none !important;
    font-size: max(9px, var(--label-font-px)) !important;
  }
}

