/* GLITCH EFFECT */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
glitch::before {
  background: linear-gradient(135deg, #ff00c8, var(--purple-bright));
  -webkit-background-clip: text;
  background-clip: text;
  animation: glitch-1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.glitch::after {
  background: linear-gradient(135deg, var(--purple), #00f0ff);
  -webkit-background-clip: text;
  background-clip: text;
  animation: glitch-2 4s infinite;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}
@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-2px, 1px); }
  94% { transform: translate(2px, -1px); }
  96% { transform: translate(-1px, 2px); }
}
@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(0); }
  93% { transform: translate(2px, -1px); }
  95% { transform: translate(-2px, 1px); }
  97% { transform: translate(1px, -2px); }
}

/* FADE IN */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
