.timeline-section {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 96px 48px 48px;
}

.timeline-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.timeline-header .section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.timeline-header h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: balance;
}

.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}

.timeline-marker {
  position: relative;
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-image: var(--atlas-gradient);
  box-shadow: 0 0 8px rgba(var(--atlas-glow-cool-rgb), 0.3);
  z-index: 1;
}

.timeline-content {
  flex: 1;
}

.timeline-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}

.timeline-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 64px 32px 32px;
  }
  .timeline-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .timeline-section {
    padding: 48px 12px 24px;
  }
  .timeline-header h2 {
    font-size: 26px;
  }
  .timeline-list::before {
    left: 12px;
  }
  .timeline-marker {
    width: 24px;
  }
  .timeline-dot {
    width: 8px;
    height: 8px;
  }
}