:root {
	--primary: #bb86fc;
	--secondary: #03dac6;
	--background: #0d0d0d;
	--surface: rgba(255, 255, 255, 0.05);
	--text: #ffffff;
	--text-muted: rgba(255, 255, 255, 0.7);
	--glass: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.15);
	--font-main: 'Outfit', 'Inter', sans-serif;
}

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

body {
	background-color: var(--background);
	color: var(--text);
	font-family: var(--font-main);
	overflow-x: hidden;
}

/* Gradient backgrounds */
.bg-gradient {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: radial-gradient(circle at 20% 30%, rgba(187, 134, 252, 0.15), transparent),
		radial-gradient(circle at 80% 70%, rgba(3, 218, 198, 0.1), transparent);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

header {
	padding: 2rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.5px;
}

.logo span {
	background: linear-gradient(to right, #ffffff, #a5a5a5);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lang-selector {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	color: var(--text);
	padding: 0.5rem 1rem;
	border-radius: 12px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.lang-selector:hover {
	background: var(--glass);
}

/* Hero Section */
.hero {
	padding: 3rem 0 1rem 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.4;
	background: linear-gradient(to right, #ffffff, #a5a5a5);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-bottom: 0.2em;
	display: inline-block;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-muted);
	max-width: 700px;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.btn-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.btn-primary {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(10px);
	color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
	background: var(--glass);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	color: white;
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: var(--glass);
	transform: translateY(-5px);
}

/* Features Section Title */
.features-wrapper {
	text-align: center;
	padding-bottom: 2rem;
}

.features-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, #ffffff, #a5a5a5);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	padding-bottom: 0.1em;
}

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

.feature-card {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	padding: 2.5rem;
	border-radius: 24px;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	cursor: default;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: rgba(187, 134, 252, 0.4);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: rgba(187, 134, 252, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.feature-card p {
	color: var(--text-muted);
	line-height: 1.6;
}

footer {
	padding: 4rem 0;
	text-align: center;
	border-top: 1px solid var(--glass-border);
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate {
	animation: fadeIn 0.8s ease forwards;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero {
		padding: 4rem 0;
	}
}