.vd-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 88px);
	display: flex;
	align-items: center;
	padding: 86px 0 100px;
	background:
		radial-gradient(
			circle at 78% 25%,
			rgba(213, 170, 50, 0.17),
			transparent 23%
		),
		radial-gradient(
			circle at 15% 80%,
			rgba(91, 42, 134, 0.42),
			transparent 32%
		),
		linear-gradient(
			135deg,
			#031027 0%,
			#071a3d 45%,
			#28144c 100%
		);
	color: var(--vd-white);
}

.vd-hero::before {
	position: absolute;
	top: -220px;
	right: -190px;
	width: 560px;
	height: 560px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
}

.vd-hero::after {
	position: absolute;
	right: 90px;
	bottom: -270px;
	width: 530px;
	height: 530px;
	border: 1px solid rgba(213, 170, 50, 0.16);
	border-radius: 50%;
	content: "";
}

.vd-hero-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.vd-hero-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	align-items: center;
	gap: 80px;
}

.vd-hero-content {
	max-width: 680px;
}

.vd-hero-title {
	margin-bottom: 28px;
	font-size: clamp(54px, 6vw, 88px);
	font-weight: 700;
	letter-spacing: -5px;
	line-height: 0.98;
}

.vd-hero-title span {
	display: block;
	color: var(--vd-gold);
}

.vd-hero-description {
	max-width: 660px;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	line-height: 1.85;
}

.vd-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 50px;
}

.vd-hero-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 650px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding-top: 28px;
}

.vd-hero-trust-item {
	padding-right: 20px;
}

.vd-hero-trust-item + .vd-hero-trust-item {
	padding-left: 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.vd-hero-trust-item strong,
.vd-hero-trust-item span {
	display: block;
}

.vd-hero-trust-item strong {
	margin-bottom: 4px;
	color: var(--vd-white);
	font-size: 15px;
}

.vd-hero-trust-item span {
	color: rgba(255, 255, 255, 0.53);
	font-size: 12px;
}

.vd-hero-visual {
	position: relative;
	min-height: 570px;
}

.vd-hero-image-card {
	position: absolute;
	inset: 0 0 35px 35px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 220px 220px 28px 28px;
	background:
		linear-gradient(
			160deg,
			rgba(213, 170, 50, 0.28),
			rgba(91, 42, 134, 0.45)
		),
		#102857;
	box-shadow: var(--vd-shadow-lg);
}

.vd-hero-image-card::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to top,
			rgba(3, 16, 39, 0.85),
			transparent 55%
		);
	content: "";
}

.vd-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.vd-hero-image-caption {
	position: absolute;
	right: 30px;
	bottom: 32px;
	left: 30px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 5px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	line-height: 1.6;
}

.vd-hero-image-caption-label {
	color: var(--vd-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.vd-hero-floating-card {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: min(360px, 86%);
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: rgba(7, 26, 61, 0.86);
	box-shadow: var(--vd-shadow-lg);
	backdrop-filter: blur(20px);
}

.vd-floating-icon {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--vd-gold);
	color: var(--vd-navy);
	font-weight: 800;
}

.vd-hero-floating-card strong,
.vd-hero-floating-card span {
	display: block;
}

.vd-hero-floating-card strong {
	margin-bottom: 4px;
	font-size: 14px;
}

.vd-hero-floating-card div > span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	line-height: 1.6;
}

.vd-hero-scroll {
	position: absolute;
	right: 30px;
	bottom: 60px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 16px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	transform: rotate(90deg);
	transform-origin: right center;
}

.vd-scroll-line {
	width: 54px;
	height: 1px;
	background: var(--vd-gold);
}