* {
	box-sizing: border-box;
	text-decoration: none;
	user-select: none;
}

html,
body {
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: "Poppins", sans-serif;
	background: linear-gradient(
		180deg,
		rgb(255, 255, 255) 0%,
		rgba(240, 240, 255, 1) 100%
	);
}

/* Navigation Header */
.navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(
		150deg,
		rgb(26, 78, 247) 0%,
		rgba(63, 7, 168, 0.753) 100%
	);
	box-shadow: 0 4px 20px rgba(36, 67, 227, 0.2);
	padding: 0;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.logo {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.name {
	font-size: 1.5rem;
	color: white;
	font-weight: bold;
	white-space: nowrap;
}

.nav-links {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-link {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	transition: color 200ms;
	font-size: 0.95rem;
	text-decoration: none;
}

.nav-link:hover {
	color: white;
}

.github-link {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 14px;
	border-radius: 8px;
	transition: background 200ms;
}

.github-link:hover {
	background: rgba(255, 255, 255, 0.25);
}

.github-link img {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Hero Section */
.hero {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 80px 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	background: linear-gradient(135deg, #021db3, #6b4ce6);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.highlight {
	background: linear-gradient(135deg, rgb(27, 23, 248), rgb(148, 150, 253));
	color: white;
	padding: 0 12px;
	border-radius: 6px;
	display: inline-block;
	margin-top: 6px;
	white-space: nowrap;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: #555;
	line-height: 1.6;
	max-width: 500px;
}

.hero-ctas {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.btn {
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 300ms;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Poppins", sans-serif;
	text-decoration: none;
}

.btn-primary {
	background: linear-gradient(135deg, rgb(26, 78, 247), rgb(63, 7, 168));
	color: white;
	box-shadow: 0 10px 25px rgba(36, 67, 227, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(36, 67, 227, 0.4);
}

.btn-secondary {
	background: white;
	color: #021db3;
	border: 2px solid #021db3;
}

.btn-secondary:hover {
	background: #f0f0f8;
	transform: translateY(-2px);
}

.btn-secondary img {
	width: 18px;
	height: 18px;
	filter: invert(0.1) sepia(1) hue-rotate(210deg) saturate(3);
}

.btn-lg {
	padding: 15px 40px;
	font-size: 1.1rem;
}

.hero-video {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
	-webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
	-moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
	box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
	border-radius: 16px;
}

/* Features Section */
.features-section {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 80px 30px;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	background: linear-gradient(135deg, #021db3, #6b4ce6);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 60px;
}

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

.feature-card {
	background: white;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 5px 20px rgba(36, 67, 227, 0.1);
	transition: all 300ms;
	text-align: center;
	border: 1px solid rgba(26, 78, 247, 0.1);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(36, 67, 227, 0.2);
	border-color: rgba(26, 78, 247, 0.3);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		rgba(26, 78, 247, 0.15),
		rgba(148, 150, 253, 0.15)
	);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
}

.feature-icon img {
	width: 40px;
	height: 40px;
}

.feature-card h3 {
	font-size: 1.4rem;
	color: #021db3;
	margin: 0 0 12px 0;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Integrations Section */
.integrations {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 80px 80px;
}

.visit-docs {
	display: inline-flex;
	gap: 6px;
	transition: all ease-in-out 300ms;
	padding: 12px 19px;
	border-radius: 10px;
	width: fit-content;
	margin-top: 12px;
}
.visit-docs:hover .lucide-arrow-up-right-icon {
	transform: translate(3px, -3px);
	transition: all ease-in 200ms;
}
.integartion-content {
	margin: auto auto;

	width: fit-content;
}
.integartion-subtitle {
	font-size: 1.5rem;
	font-weight: normal;
	color: #3f3f3f;
	line-height: 1.6;
	width: fit-content;
	margin: 0 auto;
	text-align: start;
}
.visit-docs h3 {
	margin: 0;
	font-weight: 300;
}

#integrations,
#features,
#how-it-works {
	scroll-margin-top: 100px; /* space from top */
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, rgb(16, 25, 56), rgb(63, 7, 168));
	padding: 80px 30px;
	text-align: center;
	margin: 60px auto 0;
	width: 100%;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 2.5rem;
	color: white;
	margin: 0 0 20px 0;
	font-weight: 700;
}

.cta-content p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 30px 0;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: #0a0e27;
	color: white;
	padding: 60px 30px 30px;
	margin-top: auto;
	width: 100%;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	font-size: 1.1rem;
	margin: 0 0 15px 0;
	color: white;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-size: 0.95rem;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 200ms;
	text-decoration: none;
}

.footer-section ul li a:hover {
	color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero {
		grid-template-columns: 1fr;
		padding: 60px 30px;
		gap: 40px;
		text-align: center;
	}
	.hero-content {
		align-items: center;
	}
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-video {
		width: fit-content;
		margin: auto;
	}

	.integartion-subtitle {
	}
}

@media (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		gap: 15px;
		padding: 12px 20px;
	}

	.nav-links {
		width: 100%;
		gap: 10px;
		font-size: 0.85rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero {
		padding: 40px 20px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		padding: 30px 20px;
	}

	

	.integartion-subtitle {
		font-size: 1.2rem;
		font-weight: 500;
	}

	.cta-content h2 {
		font-size: 1.8rem;
	}

	.cta-content p {
		font-size: 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
