/**
 * Launchpad Lab - Page-specific CSS
 * Additional styles for the Launchpad Lab page
 */

/*--------------------------------------------------------------
# Launchpad Lab Hero Section with Slider
--------------------------------------------------------------*/
.launchpad-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.8) 0%, 
        rgba(6, 182, 212, 0.6) 50%, 
        rgba(16, 185, 129, 0.4) 100%);
}

.launchpad-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
}

.launchpad-hero .hero-content {
    color: var(--neutral-white);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--neutral-white), var(--secondary-yellow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slider {
    height: 4rem;
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.slider-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-yellow);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slider-text.active {
    opacity: 1;
    transform: translateY(0);
}

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

.hero-cta.primary {
    background: var(--gradient-secondary);
    color: var(--neutral-white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neutral-white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    color: var(--neutral-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-yellow);
    font-family: var(--font-header);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/*--------------------------------------------------------------
# What is Launchpad Lab Section
--------------------------------------------------------------*/
.what-is-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.highlight-box {
    display: flex;
    gap: 1rem;
    background: var(--gradient-accent);
    color: var(--neutral-white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.highlight-box i {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.age-groups {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.age-group {
    padding: 1.5rem;
    background: var(--neutral-white);
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
}

.age-group h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--neutral-white);
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/*--------------------------------------------------------------
# Learning Journey Timeline
--------------------------------------------------------------*/
.learning-journey-section {
    padding: 6rem 0;
    background: var(--neutral-white);
}

.journey-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.journey-milestone {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.milestone-content {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.milestone-content:hover {
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.milestone-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.journey-milestone.final .milestone-icon {
    background: var(--gradient-secondary);
}

.journey-milestone.final .milestone-content {
    background: var(--gradient-secondary);
    color: var(--neutral-white);
}

.journey-milestone.final .milestone-content h3 {
    color: var(--neutral-white);
}

/*--------------------------------------------------------------
# Program Tracks Section
--------------------------------------------------------------*/
.program-tracks-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.track-card {
    background: var(--neutral-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.track-card.featured {
    background: var(--gradient-primary);
    color: var(--neutral-white);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--neutral-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.track-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-card);
}

.track-card.featured .track-icon {
    background: rgba(255, 255, 255, 0.2);
}

.track-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.track-card.featured .track-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.track-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.track-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.track-features i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.track-card.featured .track-features i {
    color: var(--secondary-yellow);
}

.track-duration {
    background: var(--neutral-light);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.track-card.featured .track-duration {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neutral-white);
}

.tracks-note {
    text-align: center;
    background: var(--gradient-accent);
    color: var(--neutral-white);
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
}

.tracks-note i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Demo Day Section
--------------------------------------------------------------*/
.demo-day-section {
    padding: 6rem 0;
    background: var(--neutral-dark);
    color: var(--neutral-white);
}

.demo-day-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-day-text h2 {
    color: var(--neutral-white);
    margin-bottom: 2rem;
}

.demo-day-features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.demo-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.demo-feature i {
    font-size: 2rem;
    color: var(--secondary-yellow);
    margin-top: 0.5rem;
}

.demo-feature h4 {
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

.demo-day-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.demo-day-stage {
    position: relative;
    width: 300px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stage-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: spotlight 3s ease-in-out infinite alternate;
}

@keyframes spotlight {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.presenter-silhouette {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.audience-dots {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: audienceClap 2s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
.dot:nth-child(4) { animation-delay: 0.6s; }
.dot:nth-child(5) { animation-delay: 0.8s; }
.dot:nth-child(6) { animation-delay: 1s; }

@keyframes audienceClap {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.demo-day-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-yellow);
    backdrop-filter: blur(10px);
}

.demo-day-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.demo-day-quote cite {
    color: var(--secondary-yellow);
    font-weight: 600;
}

/*--------------------------------------------------------------
# Outcomes Section
--------------------------------------------------------------*/
.outcomes-section {
    padding: 6rem 0;
    background: var(--neutral-white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.outcome-item {
    background: var(--neutral-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.outcome-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    background: var(--neutral-white);
    box-shadow: var(--shadow-card);
}

.outcome-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-card);
}

.outcome-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.outcomes-note {
    background: var(--gradient-secondary);
    color: var(--neutral-white);
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Background Section
--------------------------------------------------------------*/
.background-section {
    padding: 6rem 0;
    background: var(--neutral-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.experience-item {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.experience-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.background-scroll-container {
    overflow-x: auto;
    padding: 1rem 0;
}

.background-scroll-wrapper {
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
    min-width: max-content;
}

.background-item {
    flex: 0 0 400px;
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.background-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--neutral-white);
    padding: 2rem;
}

.background-overlay h4 {
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# PDF Download Section
--------------------------------------------------------------*/
.pdf-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
}

.pdf-download-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-hover);
    backdrop-filter: blur(10px);
}

.pdf-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.pdf-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pdf-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pdf-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.pdf-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--neutral-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pdf-features i {
    color: var(--accent-green);
}

.pdf-action {
    text-align: center;
}

.download-btn {
    background: var(--gradient-secondary);
    color: var(--neutral-white);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 1rem;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--neutral-white);
}

.pdf-note {
    font-size: 0.9rem;
    color: var(--neutral-gray);
    margin: 0;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    .launchpad-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .section-grid,
    .demo-day-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pdf-download-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-slider {
        height: 3rem;
    }
    
    .slider-text {
        font-size: 1.8rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .milestone-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .journey-milestone {
        gap: 1rem;
    }
    
    .track-card.featured {
        transform: none;
    }
    
    .pdf-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pdf-features {
        justify-content: center;
    }
    
    .background-scroll-wrapper {
        gap: 1rem;
    }
    
    .background-item {
        flex: 0 0 280px;
        height: 200px;
    }
    
    .sections {
        padding: 4rem 0;
    }
}

/*--------------------------------------------------------------
# Mobile Carousel for Outcomes Section
--------------------------------------------------------------*/
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }

    .outcomes-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 1rem 0.5rem 2rem 0.5rem; /* Bottom padding for scrollbar/shadow */
        margin-bottom: 1rem;
        
        /* Hide scrollbar for cleaner look */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }

    .outcomes-grid::-webkit-scrollbar {
        display: none;
    }

    .outcome-item {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: center;
        margin-right: 0; /* Override grid gap if needed, but flex gap handles it */
        flex-shrink: 0;
    }

    /* Scroll Indicators */
    .scroll-indicators {
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
        background-color: var(--neutral-gray);
        border-radius: 50%;
        opacity: 0.3;
        transition: all 0.3s ease;
    }

    .indicator.active {
        width: 24px;
        background-color: var(--primary-blue);
        border-radius: 4px;
        opacity: 1;
    }
}