

.cp-timeline-premium {
    background-color: #ffffff;
    color: #020617;
    font-family: 'Nunito', sans-serif;
    padding-bottom: 120px;
}

.cp-tl-container-v2 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}


.cp-tl-header-v2 {
    padding: 100px 0 60px 0;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.cp-tl-tag-v2 {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8fa315;
    background: #f4f8d6;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.cp-tl-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0 0 16px 0;
    color: #0f172a;
}

.cp-tl-main-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
    max-width: 600px;
}


.cp-tl-track-v2 {
    padding: 60px 0;
    position: relative;
}

.cp-tl-grid-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
}


.cp-tl-line-v2 {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 220px;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}


.cp-tl-row {
    display: grid;
    grid-template-columns: 180px 80px 1fr;
    align-items: start;
    position: relative;
    padding: 40px 0;
}


.cp-tl-left {
    text-align: right;
    padding-top: 2px;
}

.cp-tl-timestamp {
    font-size: 1rem;
    font-weight: 800;
    color: #64748b;
    font-variant-numeric: tabular-nums;
}


.cp-tl-node {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 24px;
}

.cp-tl-marker {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
}


.cp-tl-row:hover .cp-tl-marker {
    border-color: #c1d82f;
    background: #c1d82f;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(193, 216, 47, 0.6);
}


.cp-tl-right {
    padding-left: 10px;
}

.cp-tl-node-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.cp-tl-node-desc {
    margin: 0;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    max-width: 680px;
}




.cp-tl-marker-tech {
    border-color: #020617;
}


.cp-tl-row-launch {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px 20px;
    margin-left: -20px;
    margin-right: -20px;
    border: 1px solid #e2e8f0;
}

.launch-badge {
    background: #c1d82f;
    color: #020617;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.cp-tl-marker-launch {
    width: 16px;
    height: 16px;
    background: #c1d82f;
    border: 4px solid #020617;
    border-radius: 50%;
}


.pulse-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #c1d82f;
    border-radius: 50%;
    animation: cpPulse 2s infinite;
    opacity: 0;
    margin-top: -8px;
    margin-left: -8px;
}

@keyframes cpPulse {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}


@media (max-width: 768px) {
    .cp-tl-main-title { font-size: 2.4rem; }
    
    .cp-tl-line-v2 {
        left: 16px;
    }
    
    .cp-tl-row {
        grid-template-columns: 1fr;
        padding: 24px 0 24px 40px;
    }
    
    .cp-tl-left {
        text-align: left;
        margin-bottom: 8px;
    }
    
    .cp-tl-node {
        position: absolute;
        left: 0;
        top: 26px;
        width: 32px;
        justify-content: flex-start;
    }

    .cp-tl-row-launch {
        margin: 12px 0;
        padding: 24px 16px 24px 40px;
    }
    .cp-tl-row-launch .cp-tl-node {
        left: 14px;
        top: 26px;
    }
}