/* landing.css */
:root {
    --bg-dark: #050B18;
    --bg-darker: #02050E;
    --bg-card: rgba(13, 25, 48, 0.65);
    --bg-card-hover: rgba(18, 36, 70, 0.75);
    --border-glass: rgba(0, 210, 255, 0.18);
    --border-glass-hover: rgba(0, 210, 255, 0.45);
    
    --neon-blue: #0066FF;
    --neon-cyan: #00F0FF;
    --neon-cyan-glow: rgba(0, 240, 255, 0.35);
    --neon-green: #10B981;
    --neon-red: #EF4444;
    --neon-amber: #F59E0B;
    --neon-purple: #8B5CF6;
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-code: 'Space Grotesk', monospace;
    
    --shadow-glow: 0 0 25px rgba(0, 102, 255, 0.3);
    --shadow-cyan-glow: 0 0 20px rgba(0, 240, 255, 0.25);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    position: relative;
    background: var(--bg-dark);
}

.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#highwayCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.glow-1 {
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
}

.glow-2 {
    top: 40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #00D2FF 0%, transparent 70%);
}

.glow-3 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4F46E5 0%, transparent 70%);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 210, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.app-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    line-height: 1;
}

.brand-sub {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--neon-cyan);
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    background: rgba(10, 20, 40, 0.4);
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.nav-item {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-primary);
}

.nav-item.active {
    font-weight: 600;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 4px;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 30, 60, 0.6);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-login:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan-glow);
    background: rgba(0, 102, 255, 0.2);
}

.hero-section {
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: calc(100vh - 90px);
    align-items: center;
    padding: 3rem 0 4rem;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2rem;
    z-index: 2;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.8rem;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse 1.8s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #00D2FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
    color: var(--text-primary);
    padding: 0.95rem 2.2rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid rgba(0, 240, 255, 0.4);
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 102, 255, 0.6);
    background: linear-gradient(135deg, #0077FF 0%, #0055EE 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 20, 45, 0.6);
    color: var(--text-primary);
    padding: 0.95rem 2.2rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan-glow);
    background: rgba(15, 35, 75, 0.7);
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item i {
    color: var(--neon-cyan);
    margin-right: 0.3rem;
}

.dot {
    color: rgba(255, 255, 255, 0.2);
}

.hero-right {
    position: relative;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ai-active-box {
    position: absolute;
    top: 5%;
    left: 20%;
    width: 240px;
    background: rgba(10, 22, 45, 0.75);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 0.85rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
    z-index: 10;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    padding-bottom: 0.4rem;
    margin-bottom: 0.6rem;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-indicator {
    width: 7px;
    height: 7px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-cyan);
}

.panel-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.8rem;
}

.brain-graphic {
    display: flex;
    justify-content: center;
    margin: 0.4rem 0;
}

.brain-svg {
    width: 80px;
    height: 60px;
}

.confidence-tag {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    background: rgba(0, 240, 255, 0.08);
    padding: 0.35rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.conf-val {
    color: var(--neon-cyan);
    font-weight: 700;
}

.anomaly-box {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
}

.target-reticle {
    position: relative;
    width: 90px;
    height: 55px;
    border: 1.5px dashed var(--neon-cyan);
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.3), 0 0 15px rgba(0, 240, 255, 0.2);
    border-radius: 4px;
}

.target-reticle.square {
    width: 70px;
    height: 50px;
}

.target-reticle.wide {
    width: 100px;
    height: 45px;
}

.corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: #00F0FF;
    border-style: solid;
}

.tl { top: -2px; left: -2px; border-width: 2px 0 0 2px; }
.tr { top: -2px; right: -2px; border-width: 2px 2px 0 0; }
.bl { bottom: -2px; left: -2px; border-width: 0 0 2px 2px; }
.br { bottom: -2px; right: -2px; border-width: 0 2px 2px 0; }

.scan-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.anomaly-label {
    margin-top: 6px;
    background: rgba(0, 102, 255, 0.85);
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.sidebar-stats-panel {
    width: 230px;
    background: rgba(8, 18, 38, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.2rem;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.stat-icon.warning { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.3); color: var(--neon-red); }
.stat-icon.success { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.3); color: var(--neon-green); }
.stat-icon.vehicle { background: rgba(139, 92, 246, 0.15); border-color: rgba(139, 92, 246, 0.3); color: var(--neon-purple); }
.stat-icon.accuracy { background: rgba(0, 240, 255, 0.15); border-color: rgba(0, 240, 255, 0.3); color: var(--neon-cyan); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 2.5rem;
    padding: 5rem 0;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00D2FF;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.glass-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 30, 80, 0.4) 100%);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-cyan-glow);
}

.card-h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.card-p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.dashboard-container {
    background: rgba(8, 18, 38, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dash-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.dash-metric-card {
    background: rgba(13, 26, 52, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.dash-metric-card:hover {
    border-color: rgba(0, 210, 255, 0.3);
}

.m-label {
    font-size: 0.725rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.m-val {
    font-size: 1.35rem;
    font-weight: 800;
}

.unit {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.text-green { color: var(--neon-green); }
.text-red { color: var(--neon-red); }
.text-blue { color: #3B82F6; }
.text-cyan { color: var(--neon-cyan); }
.text-purple { color: var(--neon-purple); }
.text-amber { color: var(--neon-amber); }

.sparkline-box {
    height: 24px;
    margin-top: 0.5rem;
}

.sparkline {
    width: 100%;
    height: 100%;
}

.dash-map-container {
    background: rgba(6, 14, 30, 0.8);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: 14px;
    padding: 1.2rem;
    position: relative;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.map-title-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--neon-cyan);
}

.tn-map-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
}

.tn-map-svg {
    height: 100%;
    max-width: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.2));
}

.map-legend {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: rgba(10, 20, 40, 0.85);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    backdrop-filter: blur(10px);
}

.legend-item {
    font-size: 0.675rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.leg-dot.green { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.leg-dot.blue { background: #3B82F6; box-shadow: 0 0 6px #3B82F6; }
.leg-dot.yellow { background: var(--neon-amber); box-shadow: 0 0 6px var(--neon-amber); }
.leg-dot.red { background: var(--neon-red); box-shadow: 0 0 6px var(--neon-red); }

.section-lower {
    grid-template-columns: 56% 44%;
    padding-top: 2rem;
}

.workflow-steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-top: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
}

.step-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(10, 24, 50, 0.8);
    border: 1.5px solid var(--neon-cyan);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
    transition: var(--transition);
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.1);
    background: var(--neon-blue);
    color: var(--text-primary);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.6);
}

.step-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.2rem;
}

.step-desc {
    font-size: 0.675rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.step-arrow {
    color: var(--neon-cyan);
    font-size: 0.75rem;
    opacity: 0.6;
}

.impact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.impact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.impact-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.25);
}

.imp-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.imp-icon-circle.blue { background: rgba(0, 102, 255, 0.2); color: var(--neon-cyan); border: 1px solid rgba(0, 240, 255, 0.4); }
.imp-icon-circle.green { background: rgba(16, 185, 129, 0.2); color: var(--neon-green); border: 1px solid rgba(16, 185, 129, 0.4); }
.imp-icon-circle.amber { background: rgba(245, 158, 11, 0.2); color: var(--neon-amber); border: 1px solid rgba(245, 158, 11, 0.4); }
.imp-icon-circle.purple { background: rgba(139, 92, 246, 0.2); color: var(--neon-purple); border: 1px solid rgba(139, 92, 246, 0.4); }

.imp-stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.imp-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
    background: rgba(3, 7, 18, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.brand-col {
    padding-right: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-slogan {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.f-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.f-links, .f-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.f-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.f-links a:hover {
    color: var(--neon-cyan);
    padding-left: 4px;
}

.f-contact li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.f-contact i {
    color: var(--neon-cyan);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 30, 60, 0.6);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-btn:hover {
    color: var(--text-primary);
    border-color: var(--neon-cyan);
    background: var(--neon-blue);
    box-shadow: var(--shadow-cyan-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.8rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .hero-title { font-size: 2.8rem; }
    .section-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-section { grid-template-columns: 1fr; gap: 3rem; }
    .hero-right { justify-content: center; height: 420px; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .app-container { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .hero-title { font-size: 2.2rem; }
    .glass-cards-grid, .dash-metrics-grid, .impact-cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .workflow-steps-container { flex-direction: column; align-items: stretch; }
    .step-arrow { transform: rotate(90deg); margin: 0.5rem 0; }
}