

.rfx-reveal {
  opacity: 0;
  visibility: hidden;
}

[data-split-text] {
  opacity: 0;
}

.rfx-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rfx-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rfx-stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

.rfx-scale-in {
  opacity: 0;
  transform: scale(0.9);
}

.rfx-img-parallax {
  will-change: transform;
}


.rfx-spinner {
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: var(--rfx-white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: rfxSpin 1s linear infinite;
  display: inline-block;
}

@keyframes rfxSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.rfx-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rfx-secondary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.rfx-loader-logo svg {
  width: 150px;
  height: auto;
  fill: none;
  stroke: var(--rfx-primary);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: rfxDrawLogo 2s ease forwards;
}

.rfx-loader-counters {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  color: var(--rfx-white);
  font-family: var(--rfx-font-head);
  font-size: 1.5rem;
}

@keyframes rfxDrawLogo {
  to {
    stroke-dashoffset: 0;
    fill: var(--rfx-white);
  }
}
