.timeline {
    position: relative;
    padding-left: 28px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--green), var(--purple), rgba(255, 255, 255, 0.04))
}

.tl-item {
    position: relative;
    padding-bottom: 36px
}

.tl-item:last-child {
    padding-bottom: 0
}

.tl-dot {
    position: absolute;
    left: -37px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center
}

.tl-dot.p {
    border-color: var(--purple)
}

.tl-dot-in {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pdot 2s ease-in-out infinite
}

.tl-dot.p .tl-dot-in {
    background: var(--purple)
}

.exp-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 26px;
    transition: border-color var(--tr), transform var(--tr)
}

.exp-card:hover {
    border-color: rgba(0, 245, 160, 0.15);
    transform: translateX(6px)
}

.exp-role {
    font-family: var(--fd);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px
}

.exp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px
}

.exp-co {
    font-family: var(--fm);
    font-size: 0.76rem;
    color: var(--green);
    letter-spacing: 0.05em
}

.exp-co.p {
    color: var(--purple)
}

.exp-date {
    font-family: var(--fm);
    font-size: 0.7rem;
    color: var(--slate);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 20px
}

.exp-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.exp-list li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6
}

.exp-list li::before {
    content: '→';
    color: var(--green);
    flex-shrink: 0;
    font-family: var(--fm)
}