/* ========== EXPERIENCE TIMELINE ========== */
.experience {
  background: linear-gradient(180deg, var(--bg) 0%, #050510 50%, var(--bg) 100%);
}

.timeline {
  position: relative;
  margin-top: 80px;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 60px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -47px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.2);
}

.timeline-date {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.timeline-item .company {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.timeline-item ul {
  list-style: none;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.timeline-item ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

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

@media (max-width: 768px) {
  .timeline {
    padding-left: 30px;
  }

  .timeline-item::before {
    left: -37px;
  }
}
