/* Styles for knowledge/roadmap.html */


        /* Roadmap-specific styles */
        .roadmap-hero {
            background: linear-gradient(135deg, var(--navy) 0%, #1a3a4a 100%);
            padding: 140px 48px 80px;
            color: white;
            text-align: center;
        }
        
        .roadmap-hero .section-label {
            color: var(--gold);
        }
        
        .roadmap-hero .section-title {
            color: white;
            margin-bottom: 16px;
        }
        
        .roadmap-hero .section-desc {
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .roadmap-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            padding: 8px 20px;
            background: rgba(201, 162, 39, 0.2);
            border: 1px solid rgba(201, 162, 39, 0.4);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--gold);
        }
        
        .roadmap-status .pulse {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        /* Timeline */
        .roadmap-timeline {
            padding: 80px 48px;
            background: var(--ivory);
        }
        
        .timeline-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--gold), var(--champagne));
            transform: translateX(-50%);
        }
        
        .timeline-phase {
            margin-bottom: 80px;
            position: relative;
        }
        
        .timeline-phase:last-child {
            margin-bottom: 0;
        }
        
        .phase-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            background: rgba(255, 254, 248, 0.92);
            padding: 24px 40px 20px;
            border-radius: 12px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }
        
        .phase-dot {
            width: 24px;
            height: 24px;
            background: var(--gold);
            border: 4px solid var(--ivory);
            border-radius: 50%;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
            box-shadow: 0 0 0 4px var(--gold);
        }
        
        .phase-dot.completed {
            background: #2ECC71;
            box-shadow: 0 0 0 4px #2ECC71;
        }
        
        .phase-dot.current {
            animation: pulseGold 2s infinite;
        }
        
        @keyframes pulseGold {
            0%, 100% { box-shadow: 0 0 0 4px var(--gold); }
            50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.3); }
        }
        
        .phase-label {
            font-family: var(--font-ui);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--gold);
            margin-bottom: 8px;
        }
        
        .phase-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 8px;
        }
        
        .phase-date {
            font-family: var(--font-ui);
            font-size: 0.9rem;
            color: var(--slate);
        }
        
        .phase-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .phase-status.completed {
            background: rgba(46, 204, 113, 0.1);
            color: #2ECC71;
        }
        
        .phase-status.current {
            background: rgba(201, 162, 39, 0.15);
            color: #B8860B;
        }
        
        .phase-status.upcoming {
            background: rgba(74, 74, 74, 0.1);
            color: var(--slate);
        }
        
        /* Milestone grid */
        .milestones-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        
        .milestone-card {
            background: white;
            border: 1px solid rgba(0,0,0,0.08);
            padding: 24px;
            position: relative;
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .milestone-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s var(--ease-out-expo);
        }
        
        .milestone-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        }
        
        .milestone-card:hover::before {
            transform: scaleY(1);
        }
        
        .milestone-card.completed {
            opacity: 0.7;
        }
        
        .milestone-card.completed::before {
            background: #2ECC71;
            transform: scaleY(1);
        }
        
        .milestone-icon {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        
        .milestone-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 8px;
        }
        
        .milestone-desc {
            font-size: 0.9rem;
            color: var(--slate);
            line-height: 1.6;
        }
        
        .milestone-check {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 20px;
            height: 20px;
            background: #2ECC71;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
        }
        
        /* Vision section */
        .roadmap-vision {
            padding: 80px 48px;
            background: var(--cream);
        }
        
        .vision-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .vision-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--ink);
            margin-bottom: 24px;
        }
        
        .vision-text {
            font-size: 1.1rem;
            color: var(--graphite);
            line-height: 1.9;
            margin-bottom: 16px;
        }
        
        /* CTA section */
        .roadmap-cta {
            padding: 80px 48px;
            background: var(--ivory);
            text-align: center;
        }
        
        .cta-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 400;
            color: var(--ink);
            margin-bottom: 16px;
        }
        
        .cta-text {
            color: var(--slate);
            margin-bottom: 32px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .roadmap-hero {
                padding: 120px 24px 60px;
            }
            
            .roadmap-timeline {
                padding: 60px 24px;
            }
            
            .timeline-container::before {
                left: 20px;
            }
            
            .phase-header {
                text-align: left;
                padding: 20px 24px 16px 48px;
                margin-left: 0;
                margin-right: 0;
                max-width: 100%;
            }
            
            .phase-dot {
                position: absolute;
                left: 12px;
                top: 24px;
                margin: 0;
            }
            
            .phase-title {
                font-size: 1.5rem;
            }
            
            .milestones-grid {
                grid-template-columns: 1fr;
                padding-left: 48px;
            }
            
            .vision-title {
                font-size: 1.8rem;
            }
        }
    