:root {
	--bg-color: #0a0a0a;
	--card-bg: #161616;
	--text-main: #ffffff;
	--text-muted: #a1a1aa;
	--accent: #3b82f6;
	/* Blue */
	--accent-glow: rgba(59, 130, 246, 0.5);
	--highlight: #8b5cf6;
	/* Purple */
	--border: #27272a;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-main);
	line-height: 1.6;
}

/* Navigation */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--border);
	background: rgba(10, 10, 10, 0.8);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 100;
}

.logo {
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
}

.nav-links a {
	color: var(--text-muted);
	text-decoration: none;
	margin-left: 2rem;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--text-main);
}

/* Hero */
.hero {
	text-align: center;
	padding: 8rem 1rem;
	background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-color) 70%);
}

.hero h1 {
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.highlight {
	background: linear-gradient(to right, var(--accent), var(--highlight));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subtitle {
	font-size: 1.25rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s;
}

.btn-primary {
	background: var(--text-main);
	color: var(--bg-color);
}

.btn-primary:hover {
	background: #e5e5e5;
	transform: translateY(-2px);
}

.btn-secondary {
	background: var(--card-bg);
	color: var(--text-main);
	border: 1px solid var(--border);
	margin-left: 1rem;
}

.btn-secondary:hover {
	border-color: var(--text-muted);
}

.btn-outline {
	border: 1px solid var(--border);
	color: var(--text-main);
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.btn-outline:hover {
	background: var(--card-bg);
}

/* Features */
.features {
	padding: 5rem 1rem;
	border-bottom: 1px solid var(--border);
}

.container {
	max-width: 1100px;
	margin: 0 auto;
}

.features h2,
.pricing h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.card {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.card h3 {
	margin-top: 0;
}

.card p {
	color: var(--text-muted);
}

/* Pricing */
.pricing {
	padding: 5rem 1rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	align-items: start;
}

.price-card {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid var(--border);
	position: relative;
}

.price-card.popular {
	border-color: var(--accent);
	box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.price {
	font-size: 3rem;
	font-weight: 800;
	margin: 1rem 0;
}

.price-card ul {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	text-align: left;
}

.price-card li {
	margin-bottom: 0.75rem;
	color: var(--text-muted);
}

.price-card li strong {
	color: var(--text-main);
}

/* About Section */
.about {
	padding: 5rem 1rem;
	background: linear-gradient(to bottom, var(--bg-color), #111);
	border-bottom: 1px solid var(--border);
}

.about h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about .lead {
	font-size: 1.5rem;
	color: var(--text-main);
	margin-bottom: 2rem;
}

.about p {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.about-grid {
	margin-top: 4rem;
	text-align: left;
}

.about-grid .card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	transition: transform 0.2s;
}

.about-grid .card:hover {
	transform: translateY(-5px);
	border-color: var(--accent);
}

/* Footer */
footer {
	padding: 4rem 1rem;
	text-align: center;
	border-top: 1px solid var(--border);
	color: var(--text-muted);
}

.legal {
	font-size: 0.8rem;
	margin-top: 1rem;
	opacity: 0.6;
}

/* Community & Quote Section */
.community {
	padding: 6rem 1rem;
	background: var(--card-bg);
	text-align: center;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.quote-box {
	max-width: 800px;
	margin: 0 auto 4rem auto;
	padding: 2rem;
	border-left: 4px solid var(--accent);
	background: rgba(255, 255, 255, 0.02);
	text-align: left;
}

.quote-box blockquote {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--text-main);
	margin: 0 0 1rem 0;
	line-height: 1.4;
	font-style: italic;
}

.quote-box cite {
	display: block;
	font-size: 1.1rem;
	color: var(--text-muted);
	font-style: normal;
}

.collaboration-content {
	max-width: 600px;
	margin: 0 auto;
}

.collaboration-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, #fff, #aaa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.collaboration-content p {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.quote-tagline {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--accent);
	margin-top: 1rem;
	font-style: normal;
}

.nav-logo {
	height: 32px;
	width: auto;
	vertical-align: middle;
	margin-right: 0.5rem;
}

/* Video Container */
.video-container {
	max-width: 400px;
	margin: 1.5rem auto 2rem auto;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border);
}

.video-container video {
	width: 100%;
	max-height: 300px;
	object-fit: contain;
	display: block;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
