@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
	--bg-dark: #07090f;
	--bg-surface: #10131d;
	--accent-gold: #d4af37;
	--accent-gold-light: #f3e5ab;
	--accent-cyan: #00f2fe;
	--text-primary: #f8f9fa;
	--text-secondary: #a0aab2;
	--glass-bg: rgba(16, 19, 29, 0.6);
	--glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand {
	font-family: 'Outfit', sans-serif;
}

/* Typography */
h1 {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--accent-gold-light);
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #fff;
}

p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Buttons */
.btn {
	display: inline-block;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 1rem 2rem;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-primary {
	background: linear-gradient(90deg, var(--accent-gold) 0%, #b8860b 100%);
	color: #000;
	border: none;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--accent-gold);
	border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
	background: rgba(212, 175, 55, 0.1);
}

/* Navbar */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1.5rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	background: rgba(7, 9, 15, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--glass-border);
}

.brand {
	font-size: 1.8rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 2px;
}

.brand span {
	color: var(--accent-gold);
}

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

.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #fff;
}

/* Sections */
section {
	padding: 6rem 5%;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 5rem;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	overflow: hidden;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	transform: scale(1.05);
	/* subtle zoom */
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(7, 9, 15, 0.95) 0%, rgba(7, 9, 15, 0.7) 50%, rgba(7, 9, 15, 0.2) 100%);
	z-index: -1;
}

.hero-content {
	max-width: 650px;
}

.highlight {
	color: var(--accent-gold);
	-webkit-text-fill-color: var(--accent-gold);
	display: inline-block;
	position: relative;
}

.highlight::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--accent-cyan);
	box-shadow: 0 0 10px var(--accent-cyan);
}

/* Problem Section */
.problem {
	background-color: var(--bg-surface);
	text-align: center;
	border-top: 1px solid var(--glass-border);
	border-bottom: 1px solid var(--glass-border);
}

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

.problem h2 {
	font-size: 2rem;
	color: #fff;
}

.problem p {
	font-size: 1.25rem;
}

/* AI Solution Section */
.solutions {
	background: radial-gradient(circle at center, #10131d 0%, #07090f 100%);
}

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

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

.solution-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	position: relative;
}

.solution-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	border-color: rgba(212, 175, 55, 0.3);
}

.solution-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.solution-card:hover::before {
	opacity: 1;
}

.solution-img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-bottom: 1px solid var(--glass-border);
}

.solution-text {
	padding: 2rem;
}

/* Credibility Section */
.credibility {
	background-color: var(--bg-surface);
	display: flex;
	align-items: center;
}

.credibility .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.authority-image {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.authority-image img {
	width: 100%;
	display: block;
}

.authority-image::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid var(--accent-gold);
	border-radius: 8px;
	box-sizing: border-box;
	opacity: 0.5;
}

.about-text h2 {
	font-size: 2.5rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

.stat-box {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--glass-border);
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 3px solid var(--accent-cyan);
}

.stat-box h4 {
	font-size: 2rem;
	color: #fff;
	margin-bottom: 0.5rem;
}

.stat-box p {
	font-size: 0.9rem;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Final CTA Section */
.final-cta {
	text-align: center;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
	border-top: 1px solid var(--glass-border);
}

.final-cta h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

/* Footer */
footer {
	background-color: #030407;
	padding: 3rem 5%;
	text-align: center;
	border-top: 1px solid #1a1a1a;
}

footer p {
	font-size: 0.9rem;
	margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
	h1 {
		font-size: 3.5rem;
	}

	.credibility .container {
		grid-template-columns: 1fr;
	}

	.authority-image {
		max-width: 500px;
		margin: 0 auto;
	}
}

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

	h2 {
		font-size: 2rem;
	}

	.nav-links {
		display: none;
		/* simple hidden nav for mobile */
	}

	.hero-overlay {
		background: rgba(7, 9, 15, 0.85);
	}

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