: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 - Left Aligned with Background Image */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	background: url('hero-bg.png') no-repeat center center;
	background-size: cover;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, rgba(5, 5, 16, 0.85) 0%, rgba(5, 5, 16, 0.6) 50%, rgba(5, 5, 16, 0.9) 100%);
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 650px;
}

.hero-content h1 {
	font-size: 3.5rem;
	line-height: 1.15;
	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(176, 196, 222, 0.3);
}

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

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

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

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

.quad-grid {
	grid-template-columns: repeat(2, 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;
}

/* Timeline */
.timeline {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	padding-left: 40px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--primary), rgba(255, 127, 80, 0.1));
}

.timeline-step {
	position: relative;
	margin-bottom: 3rem;
	padding-left: 2rem;
}

.timeline-step:last-child {
	margin-bottom: 0;
}

.timeline-step::before {
	content: '';
	position: absolute;
	left: -33px;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 12px var(--primary-glow);
	border: 3px solid var(--bg-dark);
}

.timeline-step-number {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--primary);
	background: rgba(255, 127, 80, 0.12);
	padding: 0.2rem 0.7rem;
	border-radius: 50px;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}

.timeline-step h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

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

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

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

	.timeline {
		padding-left: 30px;
	}
}