/* Proxima Nova Font Face Declarations */
@font-face {
	font-family: 'Proxima Nova';
	src: url('/fonts/proximanova_regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('/fonts/proximanova_bold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('/fonts/proximanova_black.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('/fonts/proximanova_light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
}

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

body {
	font-family: 'Proxima Nova', sans-serif;
	background: #000000;
	min-height: 100vh;
	color: white;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.logo {
	font-size: clamp(3.2rem, 12vw, 9.6rem);
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	/* text-shadow: 0 4px 20px rgba(126, 169, 250, 0.3); */
	color: #7ea9fa;
}

@keyframes glow {
	from {
		filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
	}

	to {
		filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
	}
}

.tagline {
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: 400;
	margin-bottom: 3rem;
	opacity: 0.9;
	max-width: 600px;
	line-height: 1.4;
}

.description {
	font-size: clamp(0.9rem, 2.5vw, 1.1rem);
	line-height: 1.6;
	margin-bottom: 3rem;
	opacity: 0.8;
	max-width: 800px;
}

.cta-section {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
}

.notify-btn {
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 1rem 2rem;
	font-family: 'Proxima Nova', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	text-transform: lowercase;
}

.notify-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.coming-soon {
	font-size: 0.9rem;
	opacity: 0.7;
	font-weight: 400;
}

.social-links {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.social-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.social-link:hover {
	color: white;
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
}

.social-link i {
	font-size: 1rem;
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

.floating-text {
	position: absolute;
	font-family: 'Proxima Nova', sans-serif;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.15);
	animation: float 20s linear infinite;
	white-space: nowrap;
}

@keyframes float {
	0% {
		transform: translateX(-100px);
	}

	100% {
		transform: translateX(calc(100vw + 100px));
	}
}

.floating-text:nth-child(1) {
	top: 10%;
	animation-delay: 0s;
	animation-duration: 25s;
}

.floating-text:nth-child(2) {
	top: 30%;
	animation-delay: -8s;
	animation-duration: 30s;
}

.floating-text:nth-child(3) {
	top: 50%;
	animation-delay: -15s;
	animation-duration: 20s;
}

.floating-text:nth-child(4) {
	top: 70%;
	animation-delay: -5s;
	animation-duration: 35s;
}

.floating-text:nth-child(5) {
	top: 85%;
	animation-delay: -12s;
	animation-duration: 28s;
}

@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	.social-links {
		flex-direction: column;
		gap: 1rem;
	}

	.floating-elements {
		display: none;
	}
}

/* Email signup form styles */
.email-form {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
	max-width: 400px;
	width: 100%;
}

.email-input {
	flex: 1;
	padding: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-family: 'Proxima Nova', sans-serif;
	font-size: 0.9rem;
	border-radius: 8px;
	backdrop-filter: blur(10px);
}

.email-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: white;
	padding: 1rem 1.5rem;
	font-family: 'Proxima Nova', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	white-space: nowrap;
}

.submit-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
	.email-form {
		flex-direction: column;
	}
}
