@keyframes soft-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slow-orbit {
  to { transform: rotate(378deg); }
}

.content-card,
.category-card,
.project-card,
.photo-tile,
.study-card,
.idea-card { animation: soft-enter .45s ease both; }

[data-theme="stellar"] .hero-orbit::before {
  animation: slow-orbit 28s linear infinite;
}

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

@media (max-width: 760px) {
  .content-card,
  .category-card,
  .project-card,
  .photo-tile,
  .study-card,
  .idea-card { animation: none; }
}

