/* ===============================
   OkPunch Roadmap 2026 - Styles
   =============================== */

/* Hero Section */
.roadmap-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.roadmap-hero .hero-badge {
    font-size: 1rem;
}

.roadmap-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.roadmap-hero .hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Active nav link */
.nav-menu a.active {
    color: var(--okpunch-gold);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0 100px;
}

.quarter-block {
    margin-bottom: 64px;
    position: relative;
}

.quarter-block::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--border-color), transparent);
}

.quarter-block:last-child::before {
    display: none;
}

.quarter-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.quarter-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.quarter-badge svg {
    width: 28px;
    height: 28px;
}

.quarter-badge.completed {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.quarter-badge.in-progress {
    background: var(--accent-gradient);
    color: var(--okpunch-black);
}

.quarter-badge.pending {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
}

.quarter-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.quarter-status {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.quarter-status.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.quarter-status.in-progress {
    background: rgba(201, 162, 39, 0.1);
    color: var(--okpunch-gold);
}

.quarter-status.pending {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 76px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-item.completed:hover {
    border-color: #22c55e;
}

.feature-item.in-progress:hover {
    border-color: var(--okpunch-gold);
}

.feature-status {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item.completed .feature-status {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.feature-item.completed .feature-status svg {
    width: 20px;
    height: 20px;
}

.feature-item.in-progress .feature-status {
    background: rgba(201, 162, 39, 0.1);
}

.feature-item.pending .feature-status {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.feature-item.pending .feature-status svg {
    width: 20px;
    height: 20px;
}

/* Progress Spinner */
.progress-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--okpunch-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item.completed .tag {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.feature-item.in-progress .tag {
    background: rgba(201, 162, 39, 0.1);
    color: var(--okpunch-gold);
}

/* Progress Bar */
.progress-bar {
    margin-top: 12px;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .roadmap-hero {
        padding: 120px 0 60px;
    }
    
    .roadmap-hero h1 {
        font-size: 2rem;
    }
    
    .quarter-block::before {
        left: 20px;
    }
    
    .quarter-badge {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .quarter-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .quarter-info h2 {
        font-size: 1.25rem;
    }
    
    .features-list {
        padding-left: 0;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    
    .feature-status {
        width: 36px;
        height: 36px;
    }
}
