:root {
	--bg-dark: #050510;
	--bg-panel: rgba(20, 20, 40, 0.6);
	--primary: #FF7F50;
	/* Coral */
	--primary-glow: rgba(255, 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: 60px;
	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 Section - 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: 4rem;
	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.25rem;
	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;
}

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

/* Tech 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;
}

/* Code Visual */
.code-visual {
	width: 100%;
	max-width: 500px;
	background: rgba(176, 196, 222, 0.05);
	border: 1px solid rgba(176, 196, 222, 0.15);
	border-radius: 16px;
	padding: 2rem;
	font-family: 'Courier New', monospace;
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.8;
	position: relative;
	overflow: hidden;
}

.code-visual .code-line {
	opacity: 0;
	animation: typeIn 0.5s forwards;
}

.code-visual .code-line:nth-child(1) { animation-delay: 0.3s; }
.code-visual .code-line:nth-child(2) { animation-delay: 0.6s; }
.code-visual .code-line:nth-child(3) { animation-delay: 0.9s; }
.code-visual .code-line:nth-child(4) { animation-delay: 1.2s; }
.code-visual .code-line:nth-child(5) { animation-delay: 1.5s; }

.code-keyword { color: var(--secondary); }
.code-string { color: var(--primary); }
.code-comment { color: #555; }

@keyframes typeIn {
	from { opacity: 0; transform: translateX(-10px); }
	to { opacity: 1; transform: translateX(0); }
}

.code-dots {
	display: flex;
	gap: 6px;
	margin-bottom: 1.5rem;
}

.code-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.code-dot:nth-child(1) { background: #ff5f56; }
.code-dot:nth-child(2) { background: #ffbd2e; }
.code-dot:nth-child(3) { background: #27c93f; }

/* 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;
	}

	.stat-number {
		font-size: 2rem;
	}
}