:root {
	--primary-glow: #9333ea;
	--secondary-glow: #3b82f6;
	--text-primary: #f3f4f6;
	--text-secondary: #d1d5db;
	--surface-bg: rgba(23, 17, 36, 0.5);
	--border-color: rgba(255, 255, 255, 0.1);
	--success: #22c55e;
	--success-hover: #16a34a;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-image: url('static/images/bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-color: #0B0712;
	color: var(--text-primary);
	font-family: 'Inter', sans-serif;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(11, 7, 18, 0.4) 0%, rgba(11, 7, 18, 0.9) 100%);
	z-index: -1;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Glassmorphism Card Style */
.glass-card {
	background: var(--surface-bg);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.4);
}

/* --- Header --- */
.header {
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 7, 18, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
}

.logo .fa-shuttle-space {
	color: var(--primary-glow);
	font-size: 1.8rem;
}

/* --- Hero Section --- */
.hero {
	text-align: center;
	padding: 120px 0;
	position: relative;
}

.hero-badge {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 50px;
	background: var(--surface-bg);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 28px;
	font-weight: 500;
}

.hero-badge .fa-star {
	color: #facc15;
	margin-right: 8px;
	animation: spin 4s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

h1 {
	font-size: 4.2rem;
	font-weight: 800;
	margin-bottom: 24px;
	letter-spacing: -0.05em;
	line-height: 1.1;
	text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

.tagline {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 48px;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
	color: white;
	padding: 18px 40px;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 0 25px rgba(147, 51, 234, 0.4), 0 0 15px rgba(59, 130, 246, 0.3);
	border: none;
}

.cta-button:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(147, 51, 234, 0.6), 0 0 25px rgba(59, 130, 246, 0.5);
}

.membership-notice {
	font-size: 0.8rem;
	color: var(--text-secondary);
	opacity: 0.8;
	margin-top: 20px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* --- Content Sections --- */
.content-section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 72px;
}

.section-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.04em;
}

.section-subtitle {
	color: var(--text-secondary);
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1rem;
}

/* --- Features Grid --- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.feature-card {
	padding: 32px;
	text-align: center;
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 24px;
	background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 16px;
	color: var(--text-primary);
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* --- Stats/Data Section --- */
.stats-section {
	text-align: center;
}

.stats-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 32px;
	margin-top: 48px;
}

.stat-item {
	flex: 1;
	min-width: 200px;
}

.stat-value {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--text-primary);
}

.stat-desc {
	font-size: 1rem;
	color: var(--text-secondary);
}

/* --- Testimonial Section --- */
.testimonial-card {
	padding: 48px;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.testimonial-quote {
	font-size: 1.2rem;
	line-height: 1.8;
	font-style: italic;
	color: var(--text-secondary);
	margin-bottom: 32px;
	position: relative;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
}

.author-info h4 {
	font-weight: 600;
	color: var(--text-primary);
}

.author-info p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* --- Join Section --- */
#join {
	background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
	border-radius: 24px;
	padding: 4px;
}

.join-wrapper {
	background: #0B0712;
	border-radius: 20px;
	padding: 64px;
	text-align: center;
}

.join-wrapper h2 {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
	line-height: 1.2;
}

.join-wrapper p {
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto 32px;
}

.benefits-list {
	list-style: none;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 48px;
	text-align: left;
}

.benefits-list li {
	display: flex;
	align-items: center;
	gap: 12px;
}

.benefits-list .fa-check {
	color: var(--success);
}

#joinButton {
	width: 100%;
	max-width: 450px;
	background: var(--success);
	color: #ffffff;
	border: none;
	padding: 20px;
	border-radius: 12px;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

#joinButton:hover {
	background: var(--success-hover);
	transform: scale(1.03);
	box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

.eligibility-notice {
	color: var(--text-secondary);
	font-size: 0.8rem;
	margin-top: 24px;
	font-style: italic;
	line-height: 1.5;
	opacity: 0.7;
}

/* --- Floating Join Now Button --- */
.floating-join-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 1.5rem;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	animation: float-pulse 2.5s infinite;
}

.floating-join-btn:hover {
	transform: scale(1.1);
	animation-play-state: paused;
}

@keyframes float-pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 12px 40px rgba(147, 51, 234, 0.7);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
	}
}

/* --- Footer --- */
.footer {
	padding: 80px 0 40px;
	text-align: center;
}

.disclaimer {
	font-size: 1px;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
	background: rgba(11, 7, 18, 0.8);
	padding: 20px;
	border-radius: 12px;
	border-top: 1px solid var(--border-color);
}

.disclaimer strong {
	color: var(--text-primary);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
	h1 {
		font-size: 2.8rem;
	}

	.tagline {
		font-size: 1.1rem;
	}

	.section-title {
		font-size: 2.25rem;
	}

	.hero,
	.content-section {
		padding: 80px 0;
	}

	.join-wrapper {
		padding: 40px 24px;
	}

	.join-wrapper h2 {
		font-size: 2.2rem;
	}

	.floating-join-btn {
		width: 55px;
		height: 55px;
		font-size: 1.3rem;
		bottom: 20px;
		right: 20px;
	}

	.stats-grid {
		flex-direction: column;
		gap: 40px;
	}
}