/* launchpad.css - Complete Fixed Version */
:root {
    /* Professional Color Palette */
    --primary-blue: #2563eb;
    --primary-purple: #7c3aed;
    --primary-teal: #0d9488;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
}

/* LaunchPad Pro Main Container */
.launchpad-pro body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    color: #333;
    margin: 0;
}

/* Fix for LaunchPad specific components that are missing */

/* Progress bars */
.lp-progress-container {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.lp-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.lp-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Metric cards */
.metric-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Achievement badges */
.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    color: #92400e;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Wizard specific */
.wizard-step.completed .step-number {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.wizard-step.active .step-number {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border-color: #7c3aed;
    color: white;
}

/* Guidance cards */
.guidance-card.expanded .guidance-content {
    display: block;
}

.guidance-content {
    padding: 1.5rem;
    background: #f9fafb;
    display: none;
}

/* Buttons */
.btn-pro-primary {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-pro-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-pro-secondary {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pro-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Welcome screen */
.welcome-screen {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border-radius: 24px;
    margin: 2rem 0;
    border: 1px solid #dbeafe;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.welcome-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Video and code examples */
.video-placeholder {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 12px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 1rem 0;
}

.code-example {
    background: #1f2937;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-example pre {
    color: #d1d5db;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2rem;
    }
    
    .wizard-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .wizard-step::after {
        display: none;
    }
}

/* Hide elements */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
