:root {
  --sol: #b6e84e;
  --bg: #050704;
}

.orbit-wrap {
  position: relative;
  width: 100%;
  min-width: 360px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 999px;
  overflow: visible;
}

/* rings */
.ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(182, 232, 78, 0.4);
  filter: drop-shadow(0 0 18px rgba(182, 232, 78, 0.4));
}

.r1 {
  inset: 10%;
  opacity: 0.9;
}
.r2 {
  inset: 18%;
  opacity: 0.75;
}
.r3 {
  inset: 26%;
  opacity: 0.6;
}
.r4 {
  inset: 34%;
  opacity: 0.45;
}
.r5 {
  inset: 42%;
  opacity: 0.35;
}

/* axis lines */
.axis {
  position: absolute;
  left: 50%;
  top: 50%;
  
  transform: translate(-50%, -50%);
}
.axis.x {
  width: 86%;
  height: 1px;
}
.axis.y {
  width: 1px;
  height: 86%;
}

/* center core */
.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44%;
  height: 44%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.core-glow {
  position: absolute;
  inset: -12%;
  border-radius: 999px;
  background: radial-gradient(
    circle at center,
    rgba(182, 232, 78, 0.28),
    rgba(182, 232, 78, 0.08) 45%,
    rgba(182, 232, 78, 0) 70%
  );
  filter: blur(2px);
}

.core-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  /* border: 1px solid rgba(182, 232, 78, 0.22); */
  background: radial-gradient(
    circle at center,
    rgba(182, 232, 78, 0.09),
    rgba(0, 0, 0, 0) 70%
  );
  display: grid;
  place-items: center;
  text-align: center;
}

.num {
  color: rgba(182, 232, 78, 0.95);
  font-weight: 600;
  font-size:  24px;
  letter-spacing: 0.06em;
  text-shadow: 0 0 28px rgba(182, 232, 78, 0.35);
}

.label {
  margin-top: -6px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
}

/* nodes */
.node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.node-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(182, 232, 78, 0.25);
  background: rgba(182, 232, 78, 0.06);
  box-shadow: 0 0 28px rgba(182, 232, 78, 0.18);
  display: grid;
  place-items: center;
}

.node-icon {
  color: rgba(182, 232, 78, 0.95);
  font-size: 18px;
  line-height: 1;
}

.node-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

/* connection dots */
.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(182, 232, 78, 0.85);
  box-shadow: 0 0 18px rgba(182, 232, 78, 0.5);
  opacity: 0.85;
}
.sec01 {
  position: relative;
}
sec01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 32%);
}
