
@keyframes spin-cuts {
  0% { transform: rotate(0deg) translate(0); }
  100% { transform: rotate(360deg) translate(0); }
}

@keyframes dot-glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 170, 23, 0.5);
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    box-shadow: 0 0 18px rgba(255, 170, 23, 1), 0 0 32px rgba(255, 170, 23, 0.7);
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Professional Hero Entrance Animations */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.topbar-thirteen__info {
  animation: slideInLeft 0.8s ease 0.5s both;
}

.topbar-thirteen__social {
  animation: slideInLeft 0.8s ease 0.8s both;
}

@keyframes topbarBarSlide {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.topbar-thirteen::after {
  transform-origin: left;
  animation: topbarBarSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Who We Are Polish Animations */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes soft-pulse {
  0% {
    transform: scale(1);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
  }
  50% {
    transform: scale(1.02);
    box-shadow: inset 0 0 25px rgba(158, 30, 217, 0.1);
  }
  100% {
    transform: scale(1);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
  }
}

.who-we-are__circle {
  /* Animation removed per feedback */
}

.who-we-are__inner-circle {
  animation: soft-pulse 4s ease-in-out infinite;
}
