/* ============================================
   EXPERIENCE PAGE STYLES
   ============================================ */

.page-header {
  position: relative;
  padding: 140px 24px 60px;
  text-align: center;
  z-index: 2;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan));
  border-radius: 100px;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 15px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--bg-primary);
  border: 3px solid var(--accent-purple);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-purple);
}

.timeline-badge {
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.timeline-role {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-company {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.timeline-achievements {
  list-style: none;
  margin-bottom: 20px;
}

.timeline-achievements li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.timeline-achievements li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-weight: 700;
}

.timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-tech span {
  padding: 6px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Stats Section */
.stats-section {
  text-align: center;
}

.stats-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-plus,
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-purple);
}

.stat-name {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 14px;
  }
  .timeline-item {
    padding-left: 60px;
  }
  .timeline-marker {
    left: 5px;
    width: 16px;
    height: 16px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
