:root {
	--bg-dark: #050510;
	--bg-panel: rgba(20, 20, 40, 0.6);
	--primary: #2a7f50;
	/* PALADEM Green */
	--primary-glow: rgba(42, 127, 80, 0.4);
	--secondary: #B0C4DE;
	/* Light Steel Blue */
	--secondary-glow: rgba(176, 196, 222, 0.4);
	--text-main: #ffffff;
	--text-muted: #a0a0b0;
	--font-main: 'Outfit', sans-serif;
	--glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
	background-color: var(--bg-dark);
	color: var(--text-main);
	font-family: var(--font-main);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

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

/* Header */
.glass-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(5, 5, 16, 0.8);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--glass-border);
	padding: 1rem 0;
}

.glass-header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.brand-logo {
	height: auto;
	max-height: 80px;
	width: auto;
}

.highlight {
	color: var(--primary);
	text-shadow: 0 0 10px var(--primary-glow);
}

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

.nav-links a:not(.btn):hover {
	color: var(--primary);
}

/* Buttons */
.btn {
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	display: inline-block;
}

.primary-btn {
	background: var(--primary);
	color: #fff;
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.primary-btn::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	background: var(--bg-dark);
	border-radius: 49px;
	z-index: -1;
	transition: opacity 0.3s ease;
	opacity: 0.1;
}

.primary-btn.glow-effect {
	box-shadow: 0 0 20px var(--secondary-glow);
}

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

.secondary-btn {
	border: 1px solid var(--secondary);
	color: var(--secondary);
	background: rgba(176, 196, 222, 0.05);
}

.secondary-btn:hover {
	border-color: var(--secondary);
	background: rgba(176, 196, 222, 0.15);
	box-shadow: 0 0 15px var(--secondary-glow);
}

/* Hero - Centered with Skyline */
.hero-section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 60px;
	background: url('Boise_Skyline.png') no-repeat center 100px;
	background-size: contain;
}

.hero-bg-glow {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(5, 5, 16, 0.8), rgba(5, 5, 16, 0.6), rgba(5, 5, 16, 0.9));
	top: 0;
	left: 0;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	padding-top: 50vh;
}

.hero-content h1 {
	font-size: 3.8rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.gradient-text {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	color: var(--primary);
}

.text-secondary {
	color: var(--secondary);
}

.paladem-link {
	color: var(--primary);
	text-decoration: underline;
	text-decoration-color: rgba(0, 242, 255, 0.3);
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 700px;
	margin: 0 auto 2.5rem;
}

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

/* Stats Bar */
.stats-bar {
	background: linear-gradient(135deg, rgba(176, 196, 222, 0.08), rgba(176, 196, 222, 0.02));
	border-top: 1px solid rgba(176, 196, 222, 0.15);
	border-bottom: 1px solid rgba(176, 196, 222, 0.15);
	padding: 3rem 0;
}

.stats-grid {
	display: flex;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	display: block;
}

.stat-label {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-top: 0.25rem;
}

/* Sections */
section {
	padding: 6rem 0;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.text-center {
	text-align: center;
}

.mt-2 {
	margin-top: 2rem;
}

.about-logo-text {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin-bottom: 0.5rem;
}

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

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

.tri-grid {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
	.tri-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.quad-grid {
		grid-template-columns: 1fr;
	}
}

.tech-card {
	background: var(--bg-panel);
	border: 1px solid var(--glass-border);
	padding: 2rem;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.tech-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
}

.icon-box {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.tech-card h3 {
	margin-bottom: 0.5rem;
	color: var(--text-main);
}

.tech-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Feature Rows */
.feature-rows {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.feature-row {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 2rem;
	align-items: center;
	padding: 2.5rem;
	background: var(--bg-panel);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-row:hover {
	transform: translateX(8px);
	border-color: var(--primary);
}

.feature-row-icon {
	font-size: 3rem;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(176, 196, 222, 0.08);
	border: 1px solid rgba(176, 196, 222, 0.15);
	border-radius: 16px;
	flex-shrink: 0;
}

.feature-row-content h3 {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.feature-row-content p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Info Grid */
.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

/* Node Visual */
.agent-node-visual {
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0 auto;
}

.node {
	border-radius: 50%;
	position: absolute;
}

.center-node {
	width: 60px;
	height: 60px;
	background: var(--primary);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 30px var(--primary-glow);
}

.orbit-node {
	width: 20px;
	height: 20px;
	background: var(--secondary);
}

.orbit-node.n1 {
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
}

.orbit-node.n2 {
	bottom: 30%;
	right: 10%;
}

.orbit-node.n3 {
	bottom: 30%;
	right: 22%;
	width: 14px;
	height: 14px;
}

/* Animation Utilities */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards;
}

.delay-1 {
	animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.4s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Footer */
footer {
	padding: 2rem 0;
	border-top: 1px solid var(--glass-border);
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
}

.footer-right {
	display: flex;
	gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	.glass-header nav {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

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

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

	.hero-section {
		background-position: center 220px;
	}

	.stats-grid {
		gap: 2rem;
	}

	.feature-row {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.feature-row-icon {
		margin: 0 auto;
	}
}

/* Pricing Teaser */
.pricing-teaser {
	padding: 5rem 0;
}

.pricing-teaser .teaser-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.pricing-teaser .teaser-highlight {
	font-size: 1.1rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.pricing-teaser .teaser-highlight strong {
	color: var(--primary);
	font-weight: 700;
}

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

.pricing-teaser .btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid var(--glass-border);
	padding: 0.85rem 1.75rem;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.35s ease;
}

.pricing-teaser .btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(42, 127, 80, 0.08);
}

/* FAQ Section */
.faq-section {
	padding: 6rem 0;
}

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

.faq-item {
	border-bottom: 1px solid var(--glass-border);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.5rem 0;
	background: none;
	border: none;
	font-family: var(--font-main);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-main);
	cursor: pointer;
	text-align: left;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: var(--primary);
}

.faq-toggle {
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--primary);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer p {
	padding-bottom: 1.5rem;
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.75;
}

.faq-answer a {
	color: var(--primary);
	text-decoration: underline;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}