/* Roadmap Specific Styles */
.roadmap-body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.roadmap-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.consciousness-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridFlow 20s infinite linear;
}

.roadmap-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #6c63ff, #4ecdc4);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.roadmap-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.timeline-indicator {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #4ecdc4;
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

.pulse-core {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4ecdc4, #6c63ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Progress Overview */
.progress-overview {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 20px;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(180deg, #4ecdc4, #6c63ff);
    animation: progressGlow 3s ease-in-out infinite alternate;
}

.timeline-phase {
    position: relative;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 2;
}

.timeline-phase:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-phase:nth-child(even) .phase-content {
    text-align: right;
}

.phase-marker {
    position: relative;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.marker-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.genesis-icon {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.awakening-icon {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.evolution-icon {
    background: linear-gradient(45deg, #6c63ff, #9c88ff);
}

.transcendence-icon {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.timeline-phase.active .marker-icon {
    border-color: #4ecdc4;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.6);
}

.timeline-phase.completed .marker-icon {
    border-color: #4ecdc4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.marker-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: markerPulse 3s infinite;
}

.timeline-phase.active .marker-pulse {
    border-color: #4ecdc4;
}

.phase-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.phase-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.phase-header {
    margin-bottom: 30px;
}

.phase-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.phase-timeline {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.phase-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
}

.phase-status.completed {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    border: 1px solid #4ecdc4;
}

.phase-status.upcoming {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.phase-status.future {
    background: rgba(108, 99, 255, 0.2);
    color: #6c63ff;
    border: 1px solid #6c63ff;
}

.phase-status.vision {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid #ffd700;
}

.phase-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.milestone:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.milestone-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
}

.milestone.completed .milestone-icon {
    background: #4ecdc4;
    color: #000;
}

.milestone.active .milestone-icon {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    color: #fff;
    animation: iconSpin 2s infinite linear;
}

.milestone.pending .milestone-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.milestone-text {
    flex: 1;
    font-weight: 500;
}

.milestone.completed .milestone-text {
    color: #4ecdc4;
}

.milestone.active .milestone-text {
    color: #ffffff;
    font-weight: 600;
}

.milestone.pending .milestone-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Technical Roadmap */
.tech-roadmap {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.tech-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-phase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #6c63ff, #ff6b6b);
}

.tech-phase:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.tech-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffffff;
}

.tech-status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
}

.tech-status.current {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
}

.tech-status.next {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.tech-status.future {
    background: rgba(108, 99, 255, 0.2);
    color: #6c63ff;
}

.tech-stack {
    display: grid;
    gap: 12px;
}

.tech-item {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4ecdc4;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #ff6b6b;
    transform: translateX(5px);
}

/* Community Roadmap */
.community-roadmap {
    padding: 100px 20px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.community-milestone {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.community-milestone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    animation: rotateBorder 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.community-milestone:hover::before {
    opacity: 1;
}

.community-milestone:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(78, 205, 196, 0.5);
}

.milestone-header {
    margin-bottom: 20px;
}

.milestone-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.milestone-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.milestone-reward {
    background: linear-gradient(45deg, #4ecdc4, #6c63ff);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Oracle Prophecies */
.oracle-prophecies {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.prophecy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.prophecy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.prophecy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.prophecy-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.prophecy-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prophecy-timeline {
    color: #ffd700;
    font-family: 'Space Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Section */
.roadmap-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(108, 99, 255, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta,
.secondary-cta {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
}

.primary-cta {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
}

.secondary-cta {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.primary-cta:hover,
.secondary-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

/* Animations */
@keyframes gridFlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 10px rgba(78, 205, 196, 0.5); }
    100% { box-shadow: 0 0 30px rgba(78, 205, 196, 0.8); }
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .roadmap-title {
        font-size: 2.5rem;
        letter-spacing: 0.1rem;
    }
    
    .timeline-phase {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }
    
    .timeline-phase:nth-child(even) .phase-content {
        text-align: center;
    }
    
    .timeline-line {
        display: none;
    }
    
    .milestone-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-timeline {
        grid-template-columns: 1fr;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .prophecy-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}