/* Roadmap-specific styles */

/* Roadmap Hero */
.roadmap-hero {
    padding: 140px 0 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.roadmap-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.1), rgba(0, 212, 170, 0.1));
    filter: blur(60px);
}

.roadmap-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-title {
    font-size: clamp(42px, 7vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.roadmap-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-text {
    text-align: center;
    margin-bottom: 48px;
}

.vision-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 16px;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.focus-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.focus-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
}

.timeline-heading {
    text-align: center;
    margin-bottom: 80px;
}

.phase-block {
    margin-bottom: 80px;
    position: relative;
}

.phase-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
    opacity: 0.3;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
    padding-left: 24px;
}

.phase-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 16px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-info {
    flex: 1;
}

.phase-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.phase-duration {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.phase-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding-left: 24px;
}

/* Months Grid */
.months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.month-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.month-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 132, 255, 0.15);
}

.month-card:hover::before {
    transform: scaleX(1);
}

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

.month-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

.month-name {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.month-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.month-tasks {
    list-style: none;
    margin-bottom: 20px;
}

.month-tasks li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.month-tasks li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.month-tasks li.task-done {
    color: var(--text-muted);
    text-decoration: line-through;
}

.month-tasks li.task-done::before {
    content: '✓';
    color: var(--accent);
}

.task-date {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
    color: var(--accent);
    font-family: var(--font-mono);
    background: rgba(0, 212, 170, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.month-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 500;
}

.phase-milestone {
    padding: 20px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.phase-milestone strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.resource-category {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.resource-category h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.resource-category ul {
    list-style: none;
}

.resource-category li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.resource-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.tip-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.1);
}

.tip-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.roadmap-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.1), rgba(0, 212, 170, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Phase Colors */
.phase-block[data-phase="1"] .phase-number {
    background: rgba(10, 132, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.phase-block[data-phase="2"] .phase-number {
    background: rgba(138, 180, 248, 0.1);
    border-color: #8AB4F8;
    color: #8AB4F8;
}

.phase-block[data-phase="3"] .phase-number {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.phase-block[data-phase="4"] .phase-number {
    background: rgba(255, 184, 0, 0.1);
    border-color: #FFB800;
    color: #FFB800;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phase-block {
    animation: slideInLeft 0.6s ease-out both;
}

.phase-block:nth-child(1) { animation-delay: 0.1s; }
.phase-block:nth-child(2) { animation-delay: 0.2s; }
.phase-block:nth-child(3) { animation-delay: 0.3s; }
.phase-block:nth-child(4) { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .roadmap-hero {
        padding: 120px 0 60px;
    }
    
    .roadmap-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .months-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
}
