.icon-cycler__circle {
  position: relative;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(131, 40, 40, 0.07);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.6s ease;
}

.icon-cycler__circle--landed {
  transform: scale(1.045);
  box-shadow: 0 14px 38px rgba(220, 71, 70, 0.18);
}

.icon-cycler__veil {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}

.icon-cycler__strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  will-change: transform;
}

.icon-cycler__cell {
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(220, 71, 70, 0.45);
  animation: bhRing 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: none;
}

@keyframes bhRing {
  from {
    opacity: 0.9;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bh-ring {
    display: none;
  }

  .icon-cycler__circle--landed {
    transform: none;
  }
}
