:root {
	--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--glass-bg: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.2);
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: #0f172a;
	color: #f8fafc;
	font-family: 'Inter', sans-serif;
}

.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at top left, #1e293b, #0f172a);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
	animation: rotate 30s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 3rem;
	max-width: 900px;
	width: 90%;
	text-align: center;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	z-index: 10;
	animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, #818cf8, #c084fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.025em;
}

p {
	font-size: 1.25rem;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 2.5rem;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2.5rem;
	background: var(--primary-gradient);
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.5);
	color: white;
}

.cta-button i {
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
}

.cta-button:hover i {
	transform: translateX(4px);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.feature-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 16px;
	transition: background 0.3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.1);
}

.feature-item img {
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
}

.feature-item h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
