/*--------------------------------------------------------------
Homepage Module 4 — Proof Band
--------------------------------------------------------------*/
.proof-band-v2 {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(rgba(12, 22, 25, 0.32), rgba(12, 22, 25, 0.32)),
		linear-gradient(115deg, #ef950d 0%, #1d7e6f 55%, #002f3a 100%);
}

.proof-band-v2 .container {
	position: relative;
	z-index: 2;
}

.proof-illus {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.proof-sweep {
	transform-box: view-box;
	transform-origin: 1150px 320px;
	animation: radarSweep 9s linear infinite;
}

@keyframes radarSweep {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.proof-sweep {
		animation: none;
	}
}

.proof-band-v2 .fade-anim-box {
	display: block;
}

.proof-band-v2 .medium-title {
	font-size: clamp(30px, 4vw, 45px);
	line-height: 1.08;
	letter-spacing: -1px;
	margin: 0;
}

.proof-band-v2 .small-title-oswald {
	font-size: 12px;
	letter-spacing: 1.8px;
	opacity: 0.9;
	margin: 14px 0 0;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 220px));
	gap: 36px;
	justify-content: center;
	margin-top: 56px !important;
}

.proof-item-wrap {
	display: block;
}

.proof-item {
	display: block;
	position: relative;
	padding-top: 34px;
	text-decoration: none;
	color: inherit;
}

.proof-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: #ffffff;
	transition: width 0.4s cubic-bezier(0.767, 0.01, 0.18, 1.01);
}

.proof-item .pnum {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(34px, 3.2vw, 46px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -1px;
	color: #ffffff;
	margin: 0;
}

.proof-item .plabel {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	margin: 15px 0 0;
}

.proof-item .pcase {
	display: block;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1.5px;
	margin-top: 12px;
	opacity: 0.72;
	transition: opacity 0.3s ease;
}

.proof-item.linked {
	transition: transform 0.4s cubic-bezier(0.767, 0.01, 0.18, 1.01);
}

.proof-item.linked:hover {
	transform: translateY(-3px);
}

.proof-item.linked:hover::before {
	width: 64px;
}

.proof-item.linked:hover .pcase {
	opacity: 1;
}

@media only screen and (max-width: 900px) {
	.proof-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 767px) {
	.proof-band-v2__head {
		text-align: center;
	}

	.proof-illus {
		inset: auto;
		top: 0;
		bottom: 0;
		right: -35%;
		left: auto;
		width: 240%;
		height: 100%;
		max-width: none;
	}

	.proof-grid {
		grid-template-columns: 1fr;
		gap: 36px;
		justify-items: center;
		text-align: center;
	}

	.proof-item-wrap {
		width: 100%;
		max-width: 320px;
	}

	.proof-item {
		text-align: center;
		padding-top: 28px;
	}

	.proof-item::before {
		left: 50%;
		width: 48px;
		margin-left: -24px;
	}

	.proof-item.linked:hover::before {
		width: 72px;
		margin-left: -36px;
	}

	.proof-item .pnum {
		font-size: 56px;
	}

	.proof-item .plabel {
		font-size: 17px;
	}

	.proof-item .pcase {
		font-size: 12px;
	}
}

@media only screen and (max-width: 520px) {
	.proof-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.proof-item .pnum {
		font-size: 60px;
	}
}
