/* ── Animated logo dots ──────────────────────────────────────── */
.logo-stage {
  position: relative;
  width: 56px;
  height: 44px;
  flex-shrink: 0;
}
.logo-dot {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ld-orange { background: #F26522; }
.ld-green  { background: #8DC63F; }
.ld-navy   { background: #1B3A5C; }
.ld-teal   { background: #2E6DA4; }
