.spear-project-humanoid {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: var(--spear-detail-split);
  overflow: hidden;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 720ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 720ms;
}

.spear-project-humanoid.is-active {
  visibility: visible;
  transition-delay: 0s;
}

.spear-project-humanoid.is-active.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.spear-project-humanoid__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

@media (max-width: 980px) {
  .spear-project-humanoid { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .spear-project-humanoid { transition-duration: 1ms; }
}
