
/* ====================================
	S'kaiNet Exoplanet Analyzer CSS
	Enterprise Space Exploration Theme
   ==================================== */

/* Base Variables */
:root {
	/* Colors */
	--primary-blue: #0066cc;
	--primary-cyan: #00d4ff;
	--primary-purple: #7c3aed;
	--secondary-blue: #1e3a8a;
	--accent-gold: #fbbf24;
	--success-green: #10b981;
	--warning-orange: #f59e0b;
	--error-red: #ef4444;

	/* Backgrounds */
	--bg-primary: #0a0e27;
	--bg-secondary: #1a1a2e;
	--bg-tertiary: #16213e;
	--bg-card: rgba(255, 255, 255, 0.05);
	--bg-card-hover: rgba(255, 255, 255, 0.08);
	--bg-glass: rgba(255, 255, 255, 0.1);

	/* Borders */
	--border-primary: rgba(0, 212, 255, 0.3);
	--border-secondary: rgba(255, 255, 255, 0.1);
	--border-accent: rgba(251, 191, 36, 0.4);

	/* Shadows */
	--shadow-primary: 0 8px 32px rgba(0, 212, 255, 0.1);
	--shadow-secondary: 0 4px 16px rgba(0, 0, 0, 0.3);
	--shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);

	/* Typography */
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Orbitron', monospace;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
	color: #ffffff;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

/* Animated Star Field Background */
#stars, #stars2, #stars3 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

#stars {
	background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white" opacity="0.8"/><circle cx="200" cy="300" r="1" fill="white" opacity="0.6"/><circle cx="400" cy="150" r="1" fill="white" opacity="0.9"/><circle cx="600" cy="400" r="1" fill="white" opacity="0.7"/><circle cx="800" cy="200" r="1" fill="white" opacity="0.5"/><circle cx="300" cy="600" r="1" fill="white" opacity="0.8"/><circle cx="700" cy="700" r="1" fill="white" opacity="0.6"/><circle cx="900" cy="500" r="1" fill="white" opacity="0.9"/></svg>') repeat;
	animation: starMove 200s linear infinite;
}

#stars2 {
	background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="150" cy="250" r="1.5" fill="rgba(0,212,255,0.8)"/><circle cx="350" cy="450" r="1.5" fill="rgba(124,58,237,0.8)"/><circle cx="550" cy="150" r="1.5" fill="rgba(251,191,36,0.8)"/><circle cx="750" cy="350" r="1.5" fill="rgba(0,212,255,0.6)"/><circle cx="250" cy="750" r="1.5" fill="rgba(124,58,237,0.6)"/></svg>') repeat;
	animation: starMove 100s linear infinite;
}

#stars3 {
	background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="500" cy="200" r="2" fill="rgba(251,191,36,0.9)"/><circle cx="800" cy="600" r="2" fill="rgba(0,212,255,0.7)"/><circle cx="200" cy="800" r="2" fill="rgba(124,58,237,0.8)"/></svg>') repeat;
	animation: starMove 50s linear infinite;
}

@keyframes starMove {
	from { transform: translateY(0px); }
	to { transform: translateY(-1000px); }
}

/* Navigation */
.navbar {
	background: rgba(10, 14, 39, 0.8) !important;
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-primary);
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.navbar-brand {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--primary-cyan) !important;
	text-decoration: none;
  height: 50px;
  width: auto;
}

.navbar-brand img {
	height: 50px;
	width: auto;
}


.brand-text {
	font-family: var(--font-display);
	font-weight: 900;
	background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.brand-subtitle {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}

.nav-link {
	color: rgba(255, 255, 255, 0.8) !important;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem !important;
	border-radius: 8px;
}

.nav-link:hover {
	color: var(--primary-cyan) !important;
	background: rgba(0, 212, 255, 0.1);
}

.nav-link.active {
	color: var(--primary-cyan) !important;
	background: rgba(0, 212, 255, 0.15);
}

.mission-status {
	display: flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: 20px;
}

.status-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 0.5rem;
	animation: pulse 2s infinite;
}

.status-indicator.online {
	background: var(--success-green);
}

.status-text {
	font-size: 0.875rem;
	color: var(--success-green);
	font-weight: 500;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(22, 33, 62, 0.9) 100%);
	overflow: hidden;
}

.hero-content {
	position: relative;
	z-index: 10;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(251, 191, 36, 0.1);
	border: 1px solid rgba(251, 191, 36, 0.3);
	color: var(--accent-gold);
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.hero-title {
	font-family: var(--font-display);
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple), var(--accent-gold));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.hero-subtitle-inline {
	display: block;
	font-size: 2rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 0.5rem;
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hero-stats {
	margin: 3rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.stat-item {
	text-align: center;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

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

.stat-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.5rem;
	font-weight: 500;
}

.hero-actions {
	text-align: center;
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(45deg, var(--primary-blue), var(--primary-cyan));
	border: none;
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.btn-outline-light {
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--primary-cyan);
	color: var(--primary-cyan);
	transform: translateY(-2px);
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.5);
	font-size: 1.5rem;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-10px); }
	60% { transform: translateX(-50%) translateY(-5px); }
}

/* Mission Section */
.mission-section {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--border-secondary);
	border-bottom: 1px solid var(--border-secondary);
}

.section-title {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-cyan);
	text-align: center;
}

.section-description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.mission-card {
	background: var(--bg-glass);
	backdrop-filter: blur(15px);
	border: 1px solid var(--border-secondary);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

.mission-card:hover {
	transform: translateY(-8px);
	background: var(--bg-card-hover);
	border-color: var(--border-primary);
	box-shadow: var(--shadow-glow);
}

.mission-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
}

.mission-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: white;
}

.mission-card p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* Main Content */
.main-content {
	padding: 4rem 0;
	background: rgba(0, 0, 0, 0.1);
}

.control-panel {
	background: var(--bg-glass);
	backdrop-filter: blur(15px);
	border: 1px solid var(--border-secondary);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 3rem;
}

.panel-title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary-cyan);
}

.panel-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
}

.data-status {
	text-align: right;
}

.data-status-centered {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.status-line {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.status-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.status-label {
	color: rgba(255, 255, 255, 0.7);
	margin-right: 1rem;
}

.status-value {
	color: var(--primary-cyan);
	font-weight: 600;
}

/* Loading States */
.loading-state {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
	text-align: center;
}

.loading-content h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--primary-cyan);
	margin: 2rem 0 1rem;
}

.loading-content p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
}

.loading-animation {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto;
}

.spinner {
	width: 60px;
	height: 60px;
	border: 3px solid rgba(0, 212, 255, 0.3);
	border-top: 3px solid var(--primary-cyan);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.loading-rings {
	position: absolute;
	width: 100%;
	height: 100%;
}

.ring {
	position: absolute;
	border: 2px solid transparent;
	border-radius: 50%;
	animation: ring 3s linear infinite;
}

.ring1 {
	width: 80px;
	height: 80px;
	top: 20px;
	left: 20px;
	border-top-color: var(--primary-cyan);
	animation-delay: 0s;
}

.ring2 {
	width: 100px;
	height: 100px;
	top: 10px;
	left: 10px;
	border-right-color: var(--primary-purple);
	animation-delay: 1s;
}

.ring3 {
	width: 120px;
	height: 120px;
	top: 0;
	left: 0;
	border-bottom-color: var(--accent-gold);
	animation-delay: 2s;
}

@keyframes spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring {
	to { transform: rotate(360deg); }
}

.loading-progress {
	width: 200px;
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	margin: 0 auto;
	overflow: hidden;
}

.progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
	border-radius: 2px;
	animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
	0% { width: 0%; }
	50% { width: 70%; }
	100% { width: 100%; }
}

/* Error State */
.error-state {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 40vh;
	text-align: center;
}

.error-content {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 16px;
	padding: 3rem;
	max-width: 500px;
}

.error-icon {
	font-size: 3rem;
	color: var(--error-red);
	margin-bottom: 1rem;
}

.error-content h3 {
	color: var(--error-red);
	margin-bottom: 1rem;
}

.error-content p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
}

/* Statistics Section */
.stats-section {
	margin-bottom: 4rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.stats-row {
	display: contents;
}

.stat-card {
	background: var(--bg-glass);
	backdrop-filter: blur(15px);
	border: 1px solid var(--border-secondary);
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.stat-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-primary);
	box-shadow: var(--shadow-glow);
}

.stat-card .stat-number {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-cyan);
	display: block;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-card .stat-label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	margin: 0;
	font-weight: 500;
	text-align: center;
}

/* AI Engine Section */
.ai-engine-section {
	padding: 4rem 0;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--border-secondary);
	border-bottom: 1px solid var(--border-secondary);
	margin: 3rem 0;
}

.ai-engine-card {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
	backdrop-filter: blur(20px);
	border: 2px solid rgba(0, 212, 255, 0.2);
	border-radius: 24px;
	padding: 4rem 3rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.ai-engine-card:hover {
	border-color: rgba(0, 212, 255, 0.4);
	box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
	transform: translateY(-4px);
}

.ai-engine-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.03), transparent);
	transform: rotate(-45deg);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
	50% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.ai-icon-container {
	position: relative;
	margin: 0 auto 2rem;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ai-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: white;
	z-index: 2;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.ai-pulse-rings {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pulse-ring {
	position: absolute;
	border: 2px solid var(--primary-cyan);
	border-radius: 50%;
	animation: pulse 2s ease-out infinite;
}

.ring-1 {
	width: 100px;
	height: 100px;
	top: -50px;
	left: -50px;
	animation-delay: 0s;
}

.ring-2 {
	width: 120px;
	height: 120px;
	top: -60px;
	left: -60px;
	animation-delay: 0.7s;
}

.ring-3 {
	width: 140px;
	height: 140px;
	top: -70px;
	left: -70px;
	animation-delay: 1.4s;
}

@keyframes pulse {
	0% {
		opacity: 1;
		transform: scale(0.8);
	}
	100% {
		opacity: 0;
		transform: scale(1.5);
	}
}

.ai-title {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple), var(--accent-gold));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.ai-description {
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.ai-metrics {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.metric-item {
	text-align: center;
	padding: 1rem;
}

.metric-value {
	display: block;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-cyan);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.metric-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.ai-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-ai-primary {
	background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple));
	border: none;
	color: white;
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-ai-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
	color: white;
	text-decoration: none;
}

.btn-outline-ai {
	background: transparent;
	border: 2px solid var(--primary-cyan);
	color: var(--primary-cyan);
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.btn-outline-ai:hover {
	background: rgba(0, 212, 255, 0.1);
	transform: translateY(-3px);
	color: var(--primary-cyan);
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

/* Chart Categories */
.chart-category {
	margin-bottom: 4rem;
}

.category-header {
	text-align: center;
	margin-bottom: 3rem;
}

.category-title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary-cyan);
	margin-bottom: 1rem;
}

.category-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Chart Cards */
.chart-card {
	background: var(--bg-glass);
	backdrop-filter: blur(15px);
	border: 1px solid var(--border-secondary);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
}

.chart-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-primary);
	box-shadow: var(--shadow-glow);
}

.chart-card-wide {
	min-height: 600px;
}

.chart-header {
	background: rgba(0, 0, 0, 0.3);
	padding: 1.5rem;
	border-bottom: 1px solid var(--border-secondary);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chart-title {
	font-weight: 600;
	font-size: 1.125rem;
	color: white;
	display: flex;
	align-items: center;
}

.chart-controls .btn {
	padding: 0.375rem 0.75rem;
	border: 1px solid var(--border-secondary);
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	transition: all 0.3s ease;
}

.chart-controls .btn:hover {
	color: var(--primary-cyan);
	border-color: var(--border-primary);
	background: rgba(0, 212, 255, 0.1);
}

.chart-body {
	padding: 0;
	position: relative;
}

/* Chart Containers */
.chart-container {
	position: relative;
	height: 400px;
	padding: 1.5rem;
}

.chart-container-wide {
	position: relative;
	height: 500px;
	padding: 1rem;
	width: 100%;
}

/* Ensure charts use full available space */
.chart-container canvas,
.chart-container-wide canvas,
.chart-container .plotly,
.chart-container-wide .plotly {
	width: 100% !important;
	height: 100% !important;
}

/* Plotly specific adjustments */
#scatterPlot, #temperaturePlot, #transitDepthPlot, #logScalePlot, #correlationMatrix, #detectabilityPlot {
	width: 100% !important;
	height: 100% !important;
}

/* Footer */
.footer {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(15px);
	border-top: 1px solid var(--border-secondary);
	padding: 3rem 0 2rem;
	margin-top: 4rem;
}

.footer-brand h5 {
	font-family: var(--font-display);
	color: var(--primary-cyan);
	margin-bottom: 1rem;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.5rem;
}

.footer-info p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary-cyan);
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.hero-subtitle-inline {
		font-size: 1.5rem;
	}

	.data-status {
		text-align: left;
		margin-top: 1rem;
	}

	.data-status-centered {
		align-items: center;
		text-align: center;
	}

	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.ai-title {
		font-size: 2rem;
	}
	
	.ai-metrics {
		gap: 2rem;
	}
}

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

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

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

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

	.chart-container {
		height: 300px;
		padding: 1rem;
	}

	.chart-container-wide {
		height: 400px;
		padding: 0.5rem;
	}

	.control-panel {
		padding: 1.5rem;
	}

	.mission-card {
		padding: 1.5rem;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}
	
	.ai-engine-card {
		padding: 3rem 2rem;
	}
	
	.ai-title {
		font-size: 1.75rem;
	}
	
	.ai-metrics {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.ai-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-ai-primary,
	.btn-outline-ai {
		width: 100%;
		max-width: 300px;
	}
}

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

	.hero-subtitle-inline {
		font-size: 1rem;
	}

	.btn-lg {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}

	.hero-actions .btn {
		margin-bottom: 1rem;
		width: auto;
		min-width: 200px;
	}

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

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
	
	.ai-engine-card {
		padding: 2rem 1rem;
	}
	
	.ai-title {
		font-size: 1.5rem;
	}
	
	.ai-icon-container {
		width: 100px;
		height: 100px;
	}
	
	.ai-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
}