/* ===== CSS Variables ===== */
:root {
	/* Primary Colors - Teal from logo */
	--primary-50: #e6ffff;
	--primary-100: #b3ffff;
	--primary-200: #80ffff;
	--primary-300: #4dfcfc;
	--primary-400: #1af0f0;
	--primary-500: #00b4b4;
	--primary-600: #008080;
	--primary-700: #006666;
	--primary-800: #004d4d;
	--primary-900: #003333;

	/* Semantic Colors */
	--fact-color: #22c55e;
	--fact-bg: rgba(34, 197, 94, 0.15);
	--opinion-color: #ef4444;
	--opinion-bg: rgba(239, 68, 68, 0.15);
	--uncertain-color: #6b7280;
	--uncertain-bg: rgba(107, 114, 128, 0.15);

	/* Light Mode */
	--bg-primary: #ffffff;
	--bg-secondary: #f8fafc;
	--bg-tertiary: #f1f5f9;
	--bg-card: #ffffff;
	--bg-card-hover: #f8fafc;

	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-tertiary: #64748b;
	--text-muted: #94a3b8;

	--border-color: #e2e8f0;
	--border-light: #f1f5f9;

	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

	/* Transitions */
	--transition-fast: 150ms ease;
	--transition-base: 200ms ease;
	--transition-slow: 300ms ease;

	/* Spacing */
	--header-height: 72px;

	/* Border Radius */
	--radius-sm: 6px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--radius-2xl: 24px;
	--radius-full: 9999px;
}

/* Dark Mode */
[data-theme="dark"] {
	--bg-primary: #0f172a;
	--bg-secondary: #1e293b;
	--bg-tertiary: #334155;
	--bg-card: #1e293b;
	--bg-card-hover: #334155;

	--text-primary: #f8fafc;
	--text-secondary: #cbd5e1;
	--text-tertiary: #94a3b8;
	--text-muted: #64748b;

	--border-color: #334155;
	--border-light: #1e293b;

	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.3);

	--fact-bg: rgba(34, 197, 94, 0.2);
	--opinion-bg: rgba(239, 68, 68, 0.2);
	--uncertain-bg: rgba(107, 114, 128, 0.2);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
	transition: background-color var(--transition-base), color var(--transition-base);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

/* ===== Container ===== */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== Header ===== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background: var(--bg-primary);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	transition: background-color var(--transition-base), border-color var(--transition-base);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
}

[data-theme="dark"] .header.scrolled {
	background: rgba(15, 23, 42, 0.95);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--text-primary);
}

.logo-icon {
	width: 36px;
	height: 36px;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-link {
	padding: 8px 16px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-secondary);
	border-radius: var(--radius-md);
	transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover {
	color: var(--primary-500);
	background: var(--bg-tertiary);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.theme-toggle {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-md);
	color: var(--text-secondary);
	transition: color var(--transition-fast), background-color var(--transition-fast);
}

.theme-toggle:hover {
	color: var(--primary-500);
	background: var(--bg-tertiary);
}

.theme-toggle .icon-sun {
	display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
	display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
	display: none;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
}

.mobile-menu-toggle span {
	display: block;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius-lg);
	transition: all var(--transition-fast);
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
	color: white;
	box-shadow: 0 4px 14px 0 rgba(0, 180, 180, 0.35);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px 0 rgba(0, 180, 180, 0.45);
}

.btn-secondary {
	background: var(--bg-tertiary);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}

.btn-secondary:hover {
	background: var(--bg-card-hover);
	border-color: var(--primary-500);
	color: var(--primary-500);
}

.btn-large {
	padding: 16px 32px;
	font-size: 1rem;
}

/* ===== Hero Section ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: var(--header-height);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(0, 180, 180, 0.15), transparent);
}

[data-theme="dark"] .hero-gradient {
	background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(0, 180, 180, 0.1), transparent);
}

.hero-pattern {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b4b4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	padding: 80px 0;
}

.hero-text {
	max-width: 600px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.badge-icon {
	font-size: 1rem;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

.gradient-text {
	background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-400) 50%, var(--primary-600) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 32px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 24px;
}

.stat {
	text-align: center;
}

.stat-value {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-500);
}

.stat-label {
	font-size: 0.875rem;
	color: var(--text-tertiary);
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: var(--border-color);
}

.hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 450px;
	aspect-ratio: 1;
}

.hero-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: none !important;
	animation: none !important;
}

/* Override: remove glow and floating animation from hero logo */
.hero-logo {
	/* removed drop-shadow glow and float animation */
	filter: none !important;
	animation: none !important;
}

/* Hide decorative background layers and floating cards (safety overrides) */
.hero-gradient,
.hero-pattern,
.floating-card {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: 0.875rem;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(8px);
	}
}

/* ===== Section Styles ===== */
section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 64px;
}

.section-tag {
	display: inline-block;
	padding: 6px 14px;
	background: var(--primary-50);
	color: var(--primary-600);
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	margin-bottom: 16px;
}

[data-theme="dark"] .section-tag {
	background: rgba(0, 180, 180, 0.15);
	color: var(--primary-400);
}

.section-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.section-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ===== Features Section ===== */
.features {
	background: var(--bg-secondary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	padding: 32px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	transition: all var(--transition-base);
}

.feature-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-lg);
	margin-bottom: 20px;
	background: var(--primary-50);
	color: var(--primary-600);
}

[data-theme="dark"] .feature-icon {
	background: rgba(0, 180, 180, 0.15);
	color: var(--primary-400);
}

.feature-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.feature-description {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== How It Works Section ===== */
.steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 800px;
	margin: 0 auto;
}

.step {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 32px;
	align-items: center;
	padding: 32px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	transition: all var(--transition-base);
}

.step-number {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: var(--radius-lg);
}

.step-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 8px;
}

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

.step-icon {
	color: var(--primary-500);
	opacity: 0.3;
}

.step-connector {
	width: 2px;
	height: 40px;
	background: linear-gradient(180deg, var(--primary-500), var(--primary-300));
	margin-left: 59px;
}

/* ===== Demo Section ===== */
.demo-container {
	max-width: 900px;
	margin: 0 auto;
}

.demo-frame {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.demo-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: var(--bg-tertiary);
	border-bottom: 1px solid var(--border-color);
}

.demo-dots {
	display: flex;
	gap: 8px;
}

.demo-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--border-color);
}

.demo-dot:nth-child(1) {
	background: #ef4444;
}
.demo-dot:nth-child(2) {
	background: #eab308;
}
.demo-dot:nth-child(3) {
	background: #22c55e;
}

.demo-title {
	flex: 1;
	text-align: center;
	font-size: 0.875rem;
	color: var(--text-tertiary);
}

.demo-content {
	padding: 0;
	background: var(--bg-secondary);
}

.demo-gif {
	width: 100%;
	display: block;
}

/* ===== Installation Section ===== */
.installation {
	background: var(--bg-secondary);
}

.installation-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.install-step {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	transition: all var(--transition-base);
}

.install-step-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-50);
	color: var(--primary-600);
	border-radius: var(--radius-lg);
}

[data-theme="dark"] .install-step-icon {
	background: rgba(0, 180, 180, 0.15);
	color: var(--primary-400);
}

.install-step-content h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.install-step-content p {
	color: var(--text-secondary);
	font-size: 0.9375rem;
}

.install-step-content code {
	display: inline-block;
	padding: 4px 8px;
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-family: "Consolas", "Monaco", monospace;
	font-size: 0.875rem;
	color: var(--primary-600);
}

[data-theme="dark"] .install-step-content code {
	color: var(--primary-400);
}

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

/* ===== Tech Stack Section ===== */
.tech-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}

.tech-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.tech-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	transition: all var(--transition-base);
	color: var(--text-secondary);
}

.tech-name {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-secondary);
}

/* ===== Team Section ===== */
.team {
	background: var(--bg-secondary);
}

.team-grid {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-bottom: 48px;
}

.team-member {
	text-align: center;
	padding: 32px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	min-width: 280px;
	transition: all var(--transition-base);
}


.member-avatar {
	width: 96px;
	height: 96px;
	margin: 0 auto 20px;
}

.avatar-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
	color: white;
	font-size: 2rem;
	font-weight: 700;
	border-radius: 50%;
}

.member-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.member-role {
	color: var(--text-tertiary);
	margin-bottom: 16px;
}

.member-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--bg-tertiary);
	color: var(--text-secondary);
	border-radius: var(--radius-md);
	transition: all var(--transition-fast);
}

.member-social a:hover {
	background: var(--primary-500);
	color: white;
}

.hackheroes-badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 500px;
	margin: 0 auto;
	padding: 20px 24px;
	background: var(--bg-card);
	border: 2px solid var(--primary-500);
	border-radius: var(--radius-xl);
}

.hackheroes-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hackheroes-icon {
	font-size: 2rem;
}

.hackheroes-title {
	display: block;
	font-weight: 600;
	color: var(--text-primary);
}

.hackheroes-subtitle {
	font-size: 0.875rem;
	color: var(--text-tertiary);
}

.hackheroes-link {
	color: var(--primary-500);
	font-weight: 500;
	transition: color var(--transition-fast);
}

.hackheroes-link:hover {
	color: var(--primary-600);
}

/* ===== Footer ===== */
.footer {
	background: var(--bg-primary);
	padding: 64px 0 32px;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand {
	max-width: 320px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--text-primary);
	margin-bottom: 16px;
}

.footer-description {
	color: var(--text-secondary);
	line-height: 1.6;
}

.footer-links {
	display: flex;
	gap: 64px;
}

.footer-column h4 {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-column ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-column a {
	color: var(--text-secondary);
	transition: color var(--transition-fast);
}

.footer-column a:hover {
	color: var(--primary-500);
}

.footer-bottom {
	padding-top: 32px;
	border-top: 1px solid var(--border-color);
	text-align: center;
	color: var(--text-muted);
	font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 48px;
	}

	.hero-text {
		max-width: none;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-image-wrapper {
		max-width: 350px;
		margin: 0 auto;
	}

	.floating-card.card-fact {
		left: 0;
	}

	.floating-card.card-opinion {
		right: 0;
	}

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

	.installation-steps {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		background: var(--bg-primary);
		padding: 24px;
		gap: 8px;
		transform: translateX(100%);
		transition: transform var(--transition-base);
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.nav-link {
		display: block;
		padding: 16px;
		font-size: 1.125rem;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero {
		min-height: auto;
		padding-top: calc(var(--header-height) + 40px);
		padding-bottom: 60px;
	}

	.hero-scroll-indicator {
		display: none;
	}

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

	.step {
		grid-template-columns: auto 1fr;
		gap: 20px;
	}

	.step-icon {
		display: none;
	}

	.step-connector {
		margin-left: 51px;
	}

	.legend-items {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.team-grid {
		flex-direction: column;
		align-items: center;
	}

	.team-member {
		width: 100%;
		max-width: 350px;
	}

	.hackheroes-badge {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.footer-content {
		flex-direction: column;
		gap: 32px;
	}

	.footer-links {
		gap: 32px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	section {
		padding: 64px 0;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-stats {
		flex-direction: column;
		gap: 16px;
	}

	.stat-divider {
		width: 40px;
		height: 1px;
	}

	.floating-card {
		display: none;
	}

	.step {
		padding: 24px;
	}

	.step-number {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
	}

	.step-connector {
		margin-left: 47px;
		height: 32px;
	}

	.install-step {
		flex-direction: column;
		text-align: center;
	}

	.tech-grid {
		gap: 24px;
	}

	.footer-links {
		flex-direction: column;
	}
}

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
	.feature-card,
	.step,
	.install-step,
	.team-member,
	.tech-item {
		opacity: 0;
		transform: translateY(20px);
		animation: fadeInUp 0.6s ease forwards;
	}

	.feature-card:nth-child(1) {
		animation-delay: 0.1s;
	}
	.feature-card:nth-child(2) {
		animation-delay: 0.2s;
	}
	.feature-card:nth-child(3) {
		animation-delay: 0.3s;
	}
	.feature-card:nth-child(4) {
		animation-delay: 0.4s;
	}
	.feature-card:nth-child(5) {
		animation-delay: 0.5s;
	}
	.feature-card:nth-child(6) {
		animation-delay: 0.6s;
	}
}

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