/* dpp.woobattery.com - THE BIG OFFER - Million Dollar Design System */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
	--color-bg: #03040a;
	--color-surface: #0a0c16;
	--color-glass: rgba(255, 255, 255, 0.02);
	--color-glass-border: rgba(255, 255, 255, 0.08);
	--color-primary: #3b82f6;
	/* Digital Blue */
	--color-primary-glow: rgba(59, 130, 246, 0.4);
	--color-accent: #fbbf24;
	/* Electric Gold */
	--color-accent-glow: rgba(251, 191, 36, 0.3);
	--text-primary: #ffffff;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;
	--max-width: 1100px;
	--ease-framer: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", -apple-system, sans-serif;
	background-color: var(--color-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand {
	font-family: "Outfit", sans-serif;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

/* Base Utility Classes */
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 40px;
}

.glass {
	background: var(--color-glass);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid var(--color-glass-border);
}

/* Premium Animations (Framer Style) */
.motion-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s var(--ease-framer);
}

.motion-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.bg-orchestration {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.bg-dot-grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.bg-glow-top {
	position: absolute;
	top: -20vh;
	left: 20vw;
	width: 60vw;
	height: 60vw;
	background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
	opacity: 0.4;
	filter: blur(100px);
}

/* Navbar */
nav {
	position: fixed;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	min-width: 600px;
	z-index: 2000;
	border-radius: 100px;
	padding: 8px 12px;
	transition: all 0.5s var(--ease-framer);
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	margin-left: 12px;
}

.logo span {
	color: var(--color-primary);
}

.nav-links {
	display: flex;
	gap: 24px;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s;
}

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

.btn-nav {
	padding: 8px 20px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

/* Hero Section - The Big Offer */
.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 80px;
}

.hero-badge {
	padding: 4px 12px;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 24px;
}

.hero h1 {
	font-size: 110px;
	font-weight: 900;
	letter-spacing: -6px;
	margin-bottom: 24px;
	line-height: 0.95;
	background: linear-gradient(to bottom, #fff 20%, #94a3b8 50%, #fff 80%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
	to {
		background-position: 0 200%;
	}
}

.hero p {
	font-size: 22px;
	color: var(--text-secondary);
	max-width: 600px;
	margin-bottom: 40px;
	font-weight: 300;
}

/* The "Scale" Section - Stats */
.scale-section {
	padding-bottom: 120px;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--color-glass-border);
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--color-glass-border);
}

.stat-box {
	background: var(--color-surface);
	padding: 48px 24px;
	text-align: center;
}

.stat-box h3 {
	font-size: 48px;
	margin-bottom: 4px;
	color: #fff;
}

.stat-box span {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Feature Showcase */
.showcase {
	padding: 120px 0;
}

.section-head {
	margin-bottom: 80px;
}

.section-head h2 {
	font-size: 48px;
	margin-bottom: 16px;
}

.showcase-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.showcase-card {
	padding: 60px;
	border-radius: 32px;
}

.showcase-card h3 {
	font-size: 28px;
	margin-bottom: 16px;
}

.showcase-card p {
	color: var(--text-secondary);
	font-size: 17px;
}

/* The AI Matcher Demo Card */
.matcher-card {
	grid-column: span 2;
	background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.matcher-demo {
	flex: 1;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 16px;
	padding: 24px;
	font-family: monospace;
	font-size: 13px;
	color: #10b981;
	margin-left: 60px;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

/* New: Pillar Sections */
.pillars {
	padding: 120px 0;
}

.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pillar-card {
	padding: 40px;
	border-radius: 24px;
	height: 100%;
	border: 1px solid var(--color-glass-border);
}

.pillar-tag {
	font-size: 10px;
	font-weight: 800;
	color: var(--color-primary);
	text-transform: uppercase;
	margin-bottom: 16px;
	display: block;
}

/* New: Verification Section */
.verification {
	padding: 120px 0;
	background: radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent 50%);
}

.verify-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* New: Ecosystem Section */
.ecosystem {
	padding: 120px 0;
	text-align: center;
}

.logo-cloud {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	margin-top: 40px;
	opacity: 0.5;
}

.logo-item {
	font-family: "Outfit";
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

/* Compliance Timeline */
.timeline {
	padding: 120px 0;
	border-top: 1px solid var(--color-glass-border);
}

.timeline-step {
	display: flex;
	gap: 40px;
	padding: 40px 0;
	border-bottom: 1px solid var(--color-glass-border);
}

.step-info {
	flex: 1;
}

.step-label {
	font-weight: 800;
	color: var(--color-primary);
	margin-bottom: 8px;
}

/* Contact/Consortium */
.consortium {
	padding: 120px 0;
	text-align: center;
}

.offer-box {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
	padding: 80px;
	border-radius: 48px;
	border: 1px solid var(--color-glass-border);
}

.offer-box h2 {
	font-size: 64px;
	margin-bottom: 32px;
}

.btn-large {
	padding: 24px 64px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 100px;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 40px var(--color-primary-glow);
	transition: transform 0.3s var(--ease-framer);
}

.btn-large:hover {
	transform: scale(1.05);
}

footer {
	padding: 80px 0;
	text-align: center;
	border-top: 1px solid var(--color-glass-border);
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-bottom: 24px;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
	.hero h1 {
		font-size: 64px;
	}

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

	.matcher-card {
		grid-column: span 1;
		flex-direction: column;
		text-align: center;
	}

	.matcher-demo {
		margin-left: 0;
		margin-top: 40px;
		width: 100%;
	}

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