:root {
	--primary: #00f2ff;
	--secondary: #7000ff;
	--bg-dark: #050505;
}

body {
	background-color: var(--bg-dark);
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
}

h1, h2, h3, .nav-logo {
	font-family: 'Space Grotesk', sans-serif;
}

#bg-canvas {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.glass {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
}

.hero-gradient {
	background: radial-gradient(circle at center, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
}

.text-glow {
	text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.btn-primary {
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3);
}

.nav-link {
	position: relative;
	transition: color 0.3s;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--primary);
	transition: width 0.3s;
}

.nav-link:hover::after {
	width: 100%;
}

.feature-card {
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.06);
}

/* Animation for scrolling */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}