body {
	background-color: #0B1120;
	font-family: 'Inter', sans-serif;
}
.gradient-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: -1;
}
.gradient-bg::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top right, #ff80b5, #9089fc);
	opacity: 0.3;
	transform: rotate(30deg);
	clip-path: polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%);
}
.hero-section {
	max-width: 1120px;
	margin: 0 auto;
	padding: 30px 24px;
}
.hero-title {
	font-size: 48px;
	font-weight: 600;
	color: white;
	margin-bottom: 16px;
}
.hero-subtitle {
	font-size: 20px;
	margin-bottom: 50px;
	font-weight: 500;
	color: #94A3B8;
}
.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 40px;
}
@media (min-width: 640px) {
	.features-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.feature-card {
	border: 1px solid #223052;
	padding: 36px;
	border-radius: 12px;
	background-color: #0B1120;
	transition: all 0.3s ease;
}
.feature-card:hover {
	border-color: #4F46E5;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.feature-title {
	color: white;
	font-size: 25px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
}
.feature-description {
	color: #94A3B8;
	font-size: 18px;
	line-height: normal;
	margin-bottom: 25px;
}
.feature-link {
	color: #94A3B8;
	font-size: 14px;
	padding: 8px 16px;
	border: 1px solid #223052;
	border-radius: 5px;
	transition: all 0.3s ease;
	text-decoration: none;
}
.feature-link:hover {
	background-color: #4F46E5;
	color: white;
	border-color: #4F46E5;
}
.footer-text {
	color: #94A3B8;
	margin-top: 50px;
	margin-bottom: 30px;
}
.footer-text a {
	color: white;
	text-decoration: none;
}
.footer-text a:hover {
	color: #9c97ff;
}
.footer-container {
	display: flex;
	justify-content: space-between; 
	align-items: center;
	padding: 10px; 
}
.footer-credit {
	font-size: 30px;
	color: white; 
}
.footer-logo {
	width: 50px;
}
