/* ─── STAGES — TIMELINE ─── */
.stages-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.stage-employer-logo {
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  width: 220px;
}

.stage-employer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  .stages-wrapper { flex-direction: column; align-items: flex-start; }
  .stage-employer-logo { width: 160px; align-self: center; }
}

.stages-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
  margin-left: 0.5rem;
}

.stage-card {
  position: relative;
  padding: 0 0 3rem 2.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: none;
}

.stage-card:last-child { padding-bottom: 0; }

/* Dot sur la ligne */
.stage-card::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-bright);
  border: 2px solid var(--bg);
  transition: background 0.22s;
}

.stage-card:hover::before {
  background: var(--blue);
}

/* Supprime le spotlight */
.stage-card::after { display: none; }

.stage-year {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
}

.stage-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
  color: var(--text);
  transition: color 0.22s;
}

.stage-card:hover .stage-title { color: var(--accent); }

.stage-company {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  font-family: 'DM Mono', monospace;
}

.stage-tasks {
  list-style: none;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stage-tasks li {
  font-size: 0.87rem;
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}

.stage-tasks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border-bright);
}

.stage-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.22s, letter-spacing 0.22s;
}

.stage-card:hover .stage-arrow {
  color: var(--accent);
  letter-spacing: 0.1em;
}
