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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: #0a0a0a;
	color: #ffffff;
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

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

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

.nav-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.open-source-badge {
	background: #7CB342;
	color: #000000;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.nav-links a {
	color: #cccccc;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

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

.github-link {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.github-stars {
	background: #7CB342;
	color: #000000;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8rem 2rem 4rem;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(124, 179, 66, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(124, 179, 66, 0.08) 0%, transparent 50%);
	z-index: -1;
	will-change: transform;
}

.hero-content {
	max-width: 800px;
	z-index: 1;
}

.hero-badge {
	background: rgba(124, 179, 66, 0.2);
	border: 1px solid rgba(124, 179, 66, 0.3);
	color: #7CB342;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 2rem;
	display: inline-block;
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease 0.4s both;
}

.hero-highlight {
	color: #7CB342;
	-webkit-text-fill-color: #7CB342;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: #7CB342;
	margin-bottom: 1.5rem;
	font-weight: 500;
	min-height: 2rem;
	animation: fadeInUp 1s ease 0.6s both;
}

.hero-description {
	font-size: 1.125rem;
	color: #cccccc;
	margin-bottom: 3rem;
	line-height: 1.7;
	animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 1s both;
}

.btn-primary, .btn-secondary {
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	transform: translateY(0);
}

.btn-primary {
	background: #7CB342;
	color: #000000;
	border: none;
}

.btn-primary:hover {
	background: #8BC34A;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(124, 179, 66, 0.3);
}

.btn-secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	border-color: #7CB342;
	color: #7CB342;
	transform: translateY(-2px);
}

.hero-features {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	color: #999999;
	font-size: 0.875rem;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 1.2s both;
}

/* Keyframe Animations */
@keyframes fadeInUp {
from {
	opacity: 0;
	transform: translateY(30px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes typing {
from {
	width: 0;
}
to {
	width: 100%;
}
}

@keyframes blink {
0%, 50% {
	border-color: #7CB342;
}
51%, 100% {
	border-color: transparent;
}
}

/* Typing effect styles */
.typing-effect {
	overflow: hidden;
	white-space: nowrap;
	animation: typing 3s steps(40, end), blink 1s infinite;
}

/* Smooth transitions for all interactive elements */
.feature, .tool, .config-item, .highlight, .command-group, .example {
	transition: all 0.3s ease;
}

.feature:hover, .tool:hover, .config-item:hover, .highlight:hover, .command-group:hover {
	transform: translateY(-5px);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	.hero-badge,
	.hero-title,
	.hero-subtitle,
	.hero-description,
	.hero-buttons,
	.hero-features {
		animation: none;
	}

	.hero-background {
		will-change: auto;
	}

	.feature:hover, .tool:hover, .config-item:hover, .highlight:hover, .command-group:hover {
		transform: none;
	}

	.btn-primary:hover, .btn-secondary:hover {
		transform: none;
	}
}

/* Problem/Solution Section */
.problem-solution {
	padding: 6rem 0;
	background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.03) 100%);
}

.comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.problem, .solution {
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem h3, .solution h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

.problem ul, .solution ul {
	list-style: none;
	space-y: 1rem;
}

.problem li, .solution li {
	padding: 0.75rem 0;
	font-size: 1rem;
	line-height: 1.6;
}

.problem li {
	color: #ff6b6b;
}

.solution li {
	color: #7CB342;
}

/* How It Works */
.how-it-works {
	padding: 6rem 0;
	background: rgba(10, 10, 10, 0.8);
}

.how-it-works h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	color: #ffffff;
}

.section-subtitle {
	text-align: center;
	font-size: 1.25rem;
	color: #cccccc;
	margin-bottom: 4rem;
}

.conversation-examples {
	display: grid;
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.example {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-message, .ai-response {
	margin-bottom: 1rem;
}

.user-message:last-child, .ai-response:last-child {
	margin-bottom: 0;
}

.message-label {
	font-weight: 600;
	color: #7CB342;
	display: block;
	margin-bottom: 0.5rem;
}

.user-message {
	color: #ffffff;
	font-style: italic;
}

.ai-response {
	color: #cccccc;
	font-style: italic;
}

/* Features Section */
.features {
	padding: 6rem 0;
}

.features h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 4rem;
	color: #ffffff;
}

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

.feature {
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
	transform: translateY(-5px);
	border-color: rgba(124, 179, 66, 0.3);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.feature h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.feature p {
	color: #cccccc;
	line-height: 1.6;
}

/* MCP Tools */
.mcp-tools {
	padding: 6rem 0;
	background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.03) 100%);
}

.mcp-tools h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	color: #ffffff;
}

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

.tool {
	padding: 1.5rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.tool:hover {
	transform: translateY(-3px);
	border-color: rgba(124, 179, 66, 0.3);
}

.tool h4 {
	font-family: 'Monaco', 'Consolas', monospace;
	color: #7CB342;
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

.tool p {
	color: #cccccc;
	font-size: 0.9rem;
	line-height: 1.5;
}

.octocode-highlight {
	background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(124, 179, 66, 0.05) 100%);
	border: 1px solid rgba(124, 179, 66, 0.3);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	margin-top: 3rem;
}

.octocode-highlight h3 {
	color: #7CB342;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.octocode-highlight p {
	color: #cccccc;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Session Commands */
.session-commands {
	padding: 6rem 0;
	background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.03) 100%);
}

.session-commands h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	color: #ffffff;
}

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

.command-group {
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.command-group h4 {
	color: #7CB342;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.command-list {
	display: grid;
	gap: 1rem;
}

.command {
	padding: 1rem;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.command code {
	color: #7CB342;
	font-family: 'Monaco', 'Consolas', monospace;
	font-size: 1rem;
	font-weight: 600;
	display: block;
	margin-bottom: 0.5rem;
}

.command p {
	color: #cccccc;
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
}

.session-highlight {
	background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(124, 179, 66, 0.05) 100%);
	border: 1px solid rgba(124, 179, 66, 0.3);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
}

.session-highlight h3 {
	color: #7CB342;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.session-highlight p {
	color: #cccccc;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Configuration */
.configuration {
	padding: 6rem 0;
}

.configuration h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 4rem;
	color: #ffffff;
}

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

.config-item {
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.config-item:hover {
	transform: translateY(-3px);
	border-color: rgba(124, 179, 66, 0.3);
}

.config-item h4 {
	color: #7CB342;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.config-item p {
	color: #cccccc;
	line-height: 1.6;
}

.config-item code {
	background: rgba(124, 179, 66, 0.2);
	color: #7CB342;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-family: 'Monaco', 'Consolas', monospace;
	font-size: 0.875rem;
}

/* Providers Table */
.providers {
	padding: 6rem 0;
	background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.03) 100%);
}

.providers h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 4rem;
	color: #ffffff;
}

.providers-table-container {
	overflow-x: auto;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.providers-table {
	width: 100%;
	border-collapse: collapse;
}

.providers-table th,
.providers-table td {
	padding: 1.5rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.providers-table th {
	background: rgba(124, 179, 66, 0.1);
	color: #7CB342;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.5px;
}

.providers-table td {
	color: #cccccc;
}

.providers-table code {
	background: rgba(124, 179, 66, 0.2);
	color: #7CB342;
	padding: 0.3rem 0.6rem;
	border-radius: 4px;
	font-family: 'Monaco', 'Consolas', monospace;
	font-size: 0.875rem;
}

.providers-table tr:hover {
	background: rgba(255, 255, 255, 0.03);
}

/* Effectiveness */
.effectiveness {
	padding: 6rem 0;
}

.effectiveness h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 4rem;
	color: #ffffff;
}

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

.highlight {
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight:hover {
	transform: translateY(-5px);
	border-color: rgba(124, 179, 66, 0.3);
}

.highlight-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.highlight h4 {
	color: #7CB342;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.highlight p {
	color: #cccccc;
	line-height: 1.6;
}

/* Installation */
.installation {
	padding: 6rem 0;
	background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.03) 100%);
}

.installation h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 4rem;
	color: #ffffff;
}

.install-steps {
	display: grid;
	gap: 2rem;
	margin-bottom: 4rem;
}

.step {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
	background: #7CB342;
	color: #000000;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.step-content {
	flex: 1;
}

.step h4 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.step pre {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1rem;
	overflow-x: auto;
}

.step code {
	color: #7CB342;
	font-family: 'Monaco', 'Consolas', monospace;
	font-size: 0.9rem;
}

.alternative-installs {
	padding: 2rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.alternative-installs h4 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.alternative-installs pre {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 1rem;
	overflow-x: auto;
}

.alternative-installs code {
	color: #7CB342;
	font-family: 'Monaco', 'Consolas', monospace;
	font-size: 0.9rem;
}

/* Open Source */
.open-source {
	padding: 6rem 0;
}

.open-source h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 4rem;
	color: #ffffff;
}

.os-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.os-info h4 {
	color: #7CB342;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.os-info p {
	color: #cccccc;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.os-links {
	display: grid;
	gap: 1rem;
}

.os-link {
	display: block;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.os-link:hover {
	background: rgba(124, 179, 66, 0.1);
	border-color: rgba(124, 179, 66, 0.3);
	transform: translateY(-2px);
}

/* Footer */
.footer {
	padding: 4rem 0 2rem;
	background: rgba(0, 0, 0, 0.5);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: start;
}

.company-info {
	color: #cccccc;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.footer-logo .logo-dots {
	display: grid;
	grid-template-columns: repeat(3, 6px);
	grid-template-rows: repeat(2, 6px);
	gap: 2px;
}

.footer-logo .logo-dots span {
	width: 6px;
	height: 6px;
	background: #7CB342;
	border-radius: 50%;
}

.footer-logo .brand-name {
	font-weight: 600;
	font-size: 1.2rem;
	color: #ffffff;
}

.company-info p {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

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

.link-group h5 {
	color: #7CB342;
	margin-bottom: 1rem;
	font-size: 1rem;
	font-weight: 600;
}

.link-group a {
	display: block;
	color: #cccccc;
	text-decoration: none;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.link-group a:hover {
	color: #7CB342;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}

	.nav-container {
		padding: 0 1rem;
		flex-direction: column;
		gap: 1rem;
	}

	.nav-links {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero {
		padding: 6rem 1rem 4rem;
	}

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

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.comparison {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

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

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

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

	.os-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.footer-links {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.step {
		flex-direction: column;
		gap: 1rem;
	}

	.step-number {
		align-self: flex-start;
	}

	.providers-table {
		font-size: 0.875rem;
	}

	.providers-table th,
	.providers-table td {
		padding: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

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

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

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

	.btn-primary, .btn-secondary {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}
}
