* {
	font-family: 'Inter', 'Space Grotesk', sans-serif;
}
body {
	background-color: #010314;
	background-image: 
		linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
}
/* Smooth scroll */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}
/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: #010314;
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	background: #0a3b4f;
	border-radius: 10px;
	transition: 0.2s;
}
::-webkit-scrollbar-thumb:hover {
	background: #00d4ff;
	box-shadow: 0 0 6px #00d4ff;
}
.glass-card {
	background: rgba(12, 20, 35, 0.65);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: 2rem;
	transition: all 0.3s ease;
}
.glass-card:hover {
	border-color: #00d4ff;
	box-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
	transform: translateY(-4px);
}
.neon-text {
	text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}
.btn-primary {
	background: linear-gradient(105deg, #00a6ff, #4f46e5);
	border: none;
	padding: 0.9rem 2rem;
	border-radius: 3rem;
	font-weight: 600;
	font-size: 1rem;
	color: white;
	transition: all 0.25s ease;
	box-shadow: 0 6px 14px rgba(0, 166, 255, 0.25);
	cursor: pointer;
}
.btn-primary:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 22px rgba(0, 166, 255, 0.4);
	background: linear-gradient(105deg, #1fb4ff, #6366f1);
}
.btn-outline {
	background: transparent;
	border: 1.5px solid #00d4ff;
	padding: 0.8rem 1.8rem;
	border-radius: 3rem;
	font-weight: 500;
	color: #00d4ff;
	transition: 0.2s;
	display: inline-block;
}
.btn-outline:hover {
	background: rgba(0, 212, 255, 0.1);
	box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}
.feature-icon {
	font-size: 2.2rem;
	background: linear-gradient(135deg, #00d4ff, #3b82f6);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #fff, #a0e9ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}
}
.stat-number {
	font-size: 2.8rem;
	font-weight: 800;
	background: linear-gradient(145deg, #ffffff, #00d4ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.team-card {
	background: rgba(8, 18, 28, 0.7);
	backdrop-filter: blur(8px);
	border-radius: 2rem;
	border: 1px solid rgba(0, 212, 255, 0.2);
	padding: 1.5rem;
	text-align: center;
	transition: 0.2s;
}
.team-card:hover {
	border-color: #00d4ff;
	transform: translateY(-3px);
}
.team-img {
	width: 100px;
	height: 100px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #00d4ff;
	box-shadow: 0 0 12px rgba(0,212,255,0.3);
	background: #0a142e;
}
.hero-glow {
	position: absolute;
	top: -20%;
	left: -10%;
	width: 120%;
	height: 120%;
	background: radial-gradient(ellipse at 30% 40%, rgba(0, 212, 255, 0.2), transparent 70%);
	filter: blur(70px);
	z-index: -2;
	pointer-events: none;
}
@keyframes spin-slow {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.animate-spin-slow {
	animation: spin-slow 12s linear infinite;
}
.fade-up {
	opacity: 0;
	transform: translateY(35px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}
.device-image-placeholder {
	background: linear-gradient(145deg, #0a142e, #03071e);
	border-radius: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	border: 1px solid rgba(0,212,255,0.4);
	box-shadow: 0 0 25px rgba(0,212,255,0.2);
}
.mobile-menu {
	transition: all 0.3s ease-in-out;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
}
.mobile-menu.open {
	max-height: 500px;
	opacity: 1;
}
/* Toast notification */
.toast-notify {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: rgba(8, 25, 45, 0.95);
	backdrop-filter: blur(12px);
	border-left: 4px solid #00d4ff;
	border-radius: 1rem;
	padding: 1rem 1.5rem;
	color: white;
	font-size: 0.9rem;
	box-shadow: 0 10px 25px rgba(0,0,0,0.3), 0 0 15px rgba(0,212,255,0.2);
	z-index: 1000;
	transform: translateX(400px);
	transition: transform 0.3s ease;
	max-width: 350px;
}
.toast-notify.show {
	transform: translateX(0);
}
.toast-notify i {
	color: #00d4ff;
	margin-right: 10px;
}
footer a {
	transition: color 0.2s;
}
footer a:hover {
	color: #00d4ff;
}
