/* style.css */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	min-height: 100vh;
	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;

	background:
		radial-gradient(circle at top, rgba(0, 255, 170, 0.1), transparent 35%),
		radial-gradient(circle at bottom, rgba(0, 140, 255, 0.1), transparent 35%),
		#050816;

	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	color: #fff;

	position: relative;
}

.bg-glow {
	position: absolute;
	width: 700px;
	height: 700px;
	border-radius: 50%;

	background: radial-gradient(
		circle,
		rgba(0, 255, 170, 0.12) 0%,
		rgba(0, 255, 170, 0) 70%
	);

	filter: blur(50px);

	animation: float 8s ease-in-out infinite;
}

.container {
	position: relative;
	z-index: 2;

	text-align: center;

	padding: 40px;
}

.logo {
	width: 280px;
	max-width: 80vw;

	margin-bottom: 20px;

	filter: drop-shadow(0 0 25px rgba(0, 255, 170, 0.2));

	animation: logoFloat 5s ease-in-out infinite;
}

h1 {
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -2px;

	margin-bottom: 10px;
}

h1 span {
	color: #3cffb3;
}

.subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);

	margin-bottom: 16px;
}

.lead {
	max-width: 540px;
	margin: 0 auto 28px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
}

.cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 28px;
}

.cta {
	display: inline-block;
	padding: 13px 26px;
	border-radius: 14px;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, #4fd1ff, #7c5cff);
	color: #08111f;
	border: 1px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(79, 209, 255, 0.25);
}

.cta-ghost {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer {
	position: absolute;
	bottom: 16px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	z-index: 2;
}

.site-footer a {
	color: #3cffb3;
	text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
	.logo,
	.bg-glow {
		animation: none;
	}
}


.status {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 12px 26px;

	border-radius: 14px;

	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);

	color: #3cffb3;

	font-size: 15px;
	font-weight: 600;

	backdrop-filter: blur(10px);

	box-shadow: 0 0 30px rgba(0, 255, 170, 0.08);
}

@keyframes logoFloat {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0px);
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 44px;
	}

	.subtitle {
		font-size: 16px;
	}

	.logo {
		width: 220px;
	}
}
