.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Кнопки навыков никогда не прячем через reveal */
.skill-btn,
.skill-btn.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: background 0.25s ease, color 0.25s ease !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .reveal:not(.is-in) {
    opacity: 0;
    transform: translateY(18px);
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
  .skill-btn,
  .skills .skill-btn {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}
