/* ================================================
   MERIDIAN VEGA - Launch Division Styles
   Enterprise Modernization & Legacy Migration
   
   Copyright (c) 2025-Perpetuity Meridian Vega. All rights reserved.
   Author: Zachariah Ayers
   ================================================ */

/* ================================================
   LAUNCH-SPECIFIC COMPONENTS
   ================================================ */

/* Warning Banner */
.warning-banner {
    background: linear-gradient(135deg, var(--aviation-blue), var(--deep-navy));
    color: white;
    padding: 40px 0;
    text-align: center;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.warning-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

/* Approach Section */
.approach-section {
    background: var(--off-white);
    padding: 80px 0;
}

.approach-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.approach-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    transition: all 0.3s ease;
}

.approach-card.active {
    border-color: var(--heritage-red);
    box-shadow: 0 8px 32px rgba(178, 34, 34, 0.2);
}

.approach-card.inactive {
    opacity: 0.6;
}

.approach-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--heritage-red);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* Urgency Grid */
.urgency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.urgency-card {
    background: white;
    border: 2px solid var(--border-medium);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.urgency-card:hover {
    border-color: var(--aviation-blue);
    box-shadow: 0 8px 24px var(--shadow-light);
}

.urgency-icon {
    font-size: 48px;
    color: var(--aviation-blue);
    margin-bottom: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--aviation-blue), var(--deep-navy));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

/* Technology Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.tech-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--heritage-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-light);
}

.tech-icon {
    font-size: 32px;
    color: var(--aviation-blue);
    margin-bottom: 12px;
}

/* Migration Process */
.process-timeline {
    position: relative;
    padding: 48px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--brass-gold);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-light);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--heritage-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .approach-cards {
        grid-template-columns: 1fr;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        padding-left: 60px;
    }
    
    .process-number {
        left: 20px;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 16px;
    }
}