:root {
	--bg-deep: #020617;
	--accent: #22D3EE;
	--accent-purple: #A78BFA;
	--text: #F8FAFC;
	--text-muted: #94A3B8;
	--card-glass: rgba(15, 23, 42, 0.5);
}

/* ========== Hero Section ========== */
.hero-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: radial-gradient(ellipse at 70% 50%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
		var(--bg-deep);
	overflow: hidden;
}

/* 微网格背景 */
.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 120px 40px 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

/* ===== 左侧内容 ===== */
.hero-content {
	flex: 0 0 50%;
	max-width: 600px;
}

.hero-headline {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--text);
	margin-bottom: 28px;
}

.hero-headline .accent-number {
	display: inline-block;
	color: var(--accent);
	text-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
	letter-spacing: -1px;
}

.hero-badges {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border: 1px solid rgba(34, 211, 238, 0.3);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(248, 250, 252, 0.85);
	background: rgba(34, 211, 238, 0.06);
	backdrop-filter: blur(4px);
	transition: all 0.3s;
	white-space: nowrap;
}

.badge:hover {
	border-color: var(--accent);
	box-shadow: 0 0 16px rgba(34, 211, 238, 0.25);
}

/* CTA按钮组 */
.hero-cta {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 36px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	letter-spacing: 0.3px;
}

.btn-primary {
	background: linear-gradient(135deg, #22D3EE, #38BDF8);
	color: #0F172A;
	border: none;
	box-shadow: 0 8px 24px rgba(34, 211, 238, 0.35);
	animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {

	0%,
	100% {
		box-shadow: 0 0 20px rgba(34, 211, 238, 0.3), 0 8px 24px rgba(0, 0, 0, 0.3);
	}

	50% {
		box-shadow: 0 0 40px rgba(34, 211, 238, 0.6), 0 12px 32px rgba(0, 0, 0, 0.4);
	}
}

/* 扫光效果 */
.btn-primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}

	20% {
		left: 100%;
	}

	100% {
		left: 100%;
	}
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 50px rgba(34, 211, 238, 0.7), 0 16px 40px rgba(0, 0, 0, 0.5);
	background: linear-gradient(135deg, #3DD8F0, #5DC6F8);
}

.btn-ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--text);
}

.btn-ghost:hover {
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
	background: rgba(34, 211, 238, 0.05);
}

/* ===== 右侧视觉 ===== */
.hero-visual {
	flex: 1 1 50%;
	height: 600px;
	position: relative;
}

#particleCanvas {
	width: 100%;
	height: 100%;
	display: block;
}

/* ===== 底部信任栏 ===== */
.trust-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(2, 6, 23, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 5;
}

.trust-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 18px 40px;
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	align-items: center;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(148, 163, 184, 0.6);
	white-space: nowrap;
}

.trust-icon {
	width: 18px;
	height: 18px;
	opacity: 0.5;
	color: var(--accent);
}

.trust-divider {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.08);
}

/* 响应式 */
@media (max-width: 1024px) {
	.hero-inner {
		flex-direction: column;
		padding: 100px 20px 80px;
	}

	.hero-content {
		flex: 1;
		max-width: 100%;
		text-align: center;
	}

	.hero-badges,
	.hero-cta {
		justify-content: center;
	}

	.hero-visual {
		height: 400px;
		width: 100%;
	}

	.trust-inner {
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.hero-headline {
		font-size: 28px;
	}

	.hero-visual {
		height: 300px;
	}

	.btn {
		padding: 14px 28px;
		font-size: 14px;
	}
}