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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 25%, #2d1b69 50%, #1a1a3a 75%, #0f0f23 100%);
	color: #ffffff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: hidden;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
	z-index: 0;
}

.container {
	max-width: 1400px;
	padding: 2rem;
	position: relative;
	z-index: 2;
	width: 100%;
}

/* Header and Navigation */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	margin-bottom: 2rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
}

.logo-accent {
	font-size: 1.5rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
}

.nav {
	display: flex;
	gap: 2rem;
}

.nav-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #ffffff;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
	transition: width 0.3s ease;
}

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

.hero-section {
	display: flex;
	align-items: center;
	gap: 4rem;
	margin-bottom: 4rem;
}

.content-left {
	flex: 1;
	max-width: 600px;
}

.rocket-section {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.rocket-image {
	width: 600px;
	height: auto;
	filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
	position: relative;
	z-index: 3;
}

.rocket-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 1;
}

.rocket-section::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 2;
}

.glass-effect {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 3rem;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	position: relative;
	overflow: hidden;
}

.glass-effect::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.logo {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 4s ease-in-out infinite;
	text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.subtitle {
	font-size: 1.6rem;
	margin-bottom: 2rem;
	color: #e0e0e0;
	font-weight: 300;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.description {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	color: #b0b0b0;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.cta-section {
	margin-top: 2rem;
	text-align: center;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 50px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 
		0 8px 25px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 15px 35px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.3) inset;
	border-color: rgba(255, 255, 255, 0.4);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-button:hover::before {
	left: 100%;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	margin: 2rem 0;
	overflow: hidden;
	position: relative;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
	border-radius: 3px;
	width: 75%;
	position: relative;
	overflow: hidden;
}

.progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

.features-section {
	margin-top: 4rem;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.feature:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.2) inset;
	border-color: rgba(255, 255, 255, 0.3);
}

.feature:hover::before {
	left: 100%;
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	display: block;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #4ecdc4;
	text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.feature-text {
	font-size: 1rem;
	color: #b0b0b0;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.hero-section {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}
	
	.rocket-image {
		width: 450px;
	}
	
	.rocket-section::before {
		width: 550px;
		height: 550px;
	}
	
	.rocket-section::after {
		width: 400px;
		height: 400px;
	}
	
	.content-left {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}
	
	.header {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}
	
	.nav {
		gap: 1rem;
	}
	
	.hero-section {
		gap: 1.5rem;
	}
	
	.rocket-image {
		width: 350px;
	}
	
	.rocket-section::before {
		width: 450px;
		height: 450px;
	}
	
	.rocket-section::after {
		width: 300px;
		height: 300px;
	}
	
	.glass-effect {
		padding: 2rem;
	}
	
	.logo {
		font-size: 2.5rem;
	}
	
	.subtitle {
		font-size: 1.3rem;
	}
	
	.cta-button {
		padding: 0.8rem 2rem;
		font-size: 1.1rem;
	}
	
	.features {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.feature {
		padding: 1.5rem;
	}
} 