/* ============================================================
   ORBITY360 — Section Divider (Orbit + degree marker)
   ============================================================ */

.orbit-divider {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  pointer-events: none;
}

.orbit-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Hairline strokes only — no gradients, no glow */
.orbit-ring-outer { fill: none; stroke: #c9a961; stroke-opacity: 0.18; stroke-width: 1; }
.orbit-ring-main  { fill: none; stroke: #c9a961; stroke-opacity: 0.50; stroke-width: 1; vector-effect: non-scaling-stroke; }

.orbit-dot       { fill: #c9a961; }
.orbit-dot-halo  { fill: none; stroke: #c9a961; stroke-opacity: 0.35; stroke-width: 1; transform-origin: center; transform-box: fill-box; animation: orbitPulse 2.2s ease-in-out infinite; }

@keyframes orbitPulse {
  0%   { transform: scale(0.85); stroke-opacity: 0.55; }
  70%  { transform: scale(1.6);  stroke-opacity: 0;    }
  100% { transform: scale(1.6);  stroke-opacity: 0;    }
}

/* Degree marker — sits over the orbit, page bg shows through to "break" the line */
.orbit-degree {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark-base);
  color: #c9a961;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 12px;
  letter-spacing: 0.28em;
  padding: 4px 14px;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .orbit-dot-halo { animation: none; }
}
