@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.76; }
  50% { transform: scale(1.16); opacity: 1; }
}

@keyframes shine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes caret {
  0%, 45% { border-color: currentColor; }
  46%, 100% { border-color: transparent; }
}

.typing-text {
  border-right: 2px solid currentColor;
  padding-right: 3px;
  animation: caret 0.8s step-end infinite;
}

.profile-orbit {
  animation: float 7s ease-in-out infinite;
}

.orbit-dot {
  animation: pulse 3s ease-in-out infinite;
}

.orbit-dot.two { animation-delay: 0.5s; }
.orbit-dot.three { animation-delay: 1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
