body {
	background-color: #2e1065;
	color: #f5f3ff;
	font-family: 'Asap', sans-serif;
}

.state-masked-view {
	display: none !important;
	opacity: 0;
	transform: translateY(30px);
}
.state-motion-view {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
	animation: kinetic-rise-flow 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.state-direct-view {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
}

@keyframes kinetic-rise-flow {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.glide-hover-drift {
	animation: drift-cycle-steady 6s ease-in-out infinite;
}

@keyframes drift-cycle-steady {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

.glow-surge-burst {
	animation: radar-wave-ambient 2s infinite;
}

@keyframes radar-wave-ambient {
	0% {
		box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.5);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(167, 139, 250, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
	}
}
