.idtect-hero-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 40px 20px;
	box-sizing: border-box;
	direction: ltr;
}

.idtect-hero-stage {
	position: relative;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 1 / 1;
}

.idtect-hero-stage * {
	box-sizing: border-box;
}

@keyframes idtect-spin-cw {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---------- Core shadow (navy glow bleeding from the dark circle) ---------- */

.idtect-hero-core-shadow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 56%;
	height: 56%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #0a1330;
	box-shadow:
		0 0 50px 18px rgba(15, 30, 80, 0.55),
		0 0 100px 40px rgba(30, 58, 138, 0.35),
		0 0 160px 70px rgba(30, 58, 138, 0.18);
	z-index: 1;
	pointer-events: none;
}

/* ---------- Core image (dark circle + speckled corona + swirl trails) ---------- */

.idtect-hero-core-image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 112%;
	height: 112%;
	transform: translate(-50%, -50%);
	z-index: 2;
	pointer-events: none;
	animation: idtect-spin-cw 110s linear infinite;
}

.idtect-hero-core-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.idtect-hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	padding: 0 4%;
	z-index: 3;
}

.idtect-hero-text-line {
	color: #f3f5fb;
	font-size: clamp(13px, 4vw, 21px);
	font-weight: 400;
	line-height: 1.35;
}

.idtect-hero-text-accent {
	font-weight: 700;
	background: linear-gradient(90deg, #4facfe 0%, #a78bfa 60%, #f472b6 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* ---------- Icons ---------- */

.idtect-hero-icon {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 30%;
	z-index: 4;
	text-align: center;
	will-change: transform;
	animation-duration: var(--idtect-anim-duration, 3.4s);
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.idtect-hero-icon--anim-float {
	animation-name: idtect-float;
}

.idtect-hero-icon--anim-zoom {
	animation-name: idtect-zoom;
}

.idtect-hero-icon--anim-none {
	animation: none;
}

.idtect-hero-icon--top-left {
	top: 2%;
	left: 0%;
}

.idtect-hero-icon--top-right {
	top: 2%;
	right: 0%;
}

.idtect-hero-icon--bottom-left {
	bottom: 2%;
	left: 0%;
}

.idtect-hero-icon--bottom-right {
	bottom: 2%;
	right: 0%;
}

.idtect-hero-icon-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--idtect-icon-size, 54px);
	height: var(--idtect-icon-size, 54px);
	max-width: 26vw;
	max-height: 26vw;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid rgba(123, 141, 255, 0.55);
}

.idtect-hero-icon-badge svg,
.idtect-hero-icon-badge img {
	width: 46%;
	height: 46%;
	object-fit: contain;
}

.idtect-hero-icon-label {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(10px, 2.6vw, 13px);
	font-weight: 600;
	line-height: 1.35;
	color: #2b2f57;
}

@keyframes idtect-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(calc(-1 * var(--idtect-anim-amount, 10px))); }
}

@keyframes idtect-zoom {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(var(--idtect-anim-scale, 1.1)); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.idtect-hero-core-image,
	.idtect-hero-icon {
		animation: none !important;
	}
}

