/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #818cf8;
	--secondary-color: #0ea5e9;
	--text-primary: #111827;
	--text-secondary: #6b7280;
	--text-light: #9ca3af;
	--bg-primary: #ffffff;
	--bg-secondary: #f9fafb;
	--bg-dark: #111827;
	--border-color: #e5e7eb;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md:
		0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg:
		0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl:
		0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--max-width: 1280px;
	--border-radius: 8px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family:
		"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--bg-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 3.5rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.25rem;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	transition: var(--transition);
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	text-decoration: none;
	display: flex;
	align-items: center;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--primary-color);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	transition: var(--transition);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius);
	transition: var(--transition);
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: var(--bg-secondary);
	color: var(--text-primary);
	border: 2px solid var(--border-color);
}

.btn-secondary:hover {
	background: var(--bg-primary);
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-outline:hover {
	background: white;
	color: var(--primary-color);
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* Hero Section */
.hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(
		135deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 100%
	);
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero-subtitle {
	color: var(--text-secondary);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hero-title {
	margin-bottom: 2rem;
	font-weight: 800;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.8;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Features Section */
.features {
	padding: 5rem 0;
	background: var(--bg-primary);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

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

.feature-card {
	background: var(--bg-primary);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 2rem;
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-light);
}

.feature-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.feature-title {
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.feature-description {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	color: var(--text-secondary);
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

/* Security Section */
.security {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--bg-dark) 0%, #1f2937 100%);
	color: white;
}

.security .section-title,
.security .section-subtitle {
	color: white;
}

.security .section-subtitle {
	opacity: 0.9;
}

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

.security-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	transition: var(--transition);
}

.security-card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-4px);
}

.security-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 1.5rem;
	color: var(--primary-light);
}

.security-card h3 {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.security-card p {
	opacity: 0.9;
	line-height: 1.7;
}

.compliance-badge {
	text-align: center;
	margin-top: 3rem;
}

.badge-content {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid var(--primary-light);
	border-radius: 50px;
	padding: 1rem 2rem;
}

.badge-label {
	font-size: 1.125rem;
	font-weight: 600;
}

.badge-status {
	background: var(--primary-color);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

/* CTA Section */
.cta {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

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

.cta-title {
	color: white;
	margin-bottom: 1rem;
}

.cta-description {
	color: white;
	opacity: 0.95;
	font-size: 1.125rem;
	margin-bottom: 2rem;
	line-height: 1.8;
}

.cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Footer */
.footer {
	background: var(--bg-dark);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-brand {
	margin-bottom: 2rem;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-tagline {
	color: var(--text-light);
	margin-top: 0.5rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.footer-column h4 {
	margin-bottom: 1rem;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.7;
}

.footer-column a {
	display: block;
	color: var(--text-light);
	text-decoration: none;
	padding: 0.25rem 0;
	transition: var(--transition);
}

.footer-column a:hover {
	color: var(--primary-light);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero {
		padding: 6rem 0 3rem;
		min-height: auto;
	}

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

	.hero-description {
		font-size: 1.125rem;
	}

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

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

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.btn-large {
		width: 100%;
	}

	.footer-links {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
		transition-duration: 0.01ms;
	}
}

/* Print Styles */
@media print {
	.navbar,
	.hero-actions,
	.cta,
	.footer {
		display: none;
	}

	body {
		font-size: 12pt;
		line-height: 1.5;
	}

	.hero,
	.features,
	.security {
		page-break-inside: avoid;
	}
}
