.reveal-frame {
  animation: frameIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes frameIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Модификация кастомного светящегося курсора-точки */
.custom-cursor {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--accent), 0 0 15px var(--accent);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.12s ease, visibility 0.12s ease;
  will-change: left, top;
}
.custom-cursor.is-away {
  opacity: 0;
  visibility: hidden;
}
