/* Stage */
.stage {
  max-width: 760px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Progress */
.progress {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.progress-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background-color 0.3s;
}

.progress-dot.done {
  background: var(--blue);
}

.progress-dot.current {
  background: var(--orange);
}

/* Screen */
.screen {
  display: none;
  animation: fade 0.4s ease;
}

.screen.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Titres */
.q-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
  text-align: center;
}

.q-title em {
  font-style: italic;
  color: var(--orange);
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Note */
.note {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 560px) {
  nav {
    padding: 1rem 1.25rem;
  }
  
  .stage {
    padding: 6rem 1.25rem 3rem;
  }
  
  .reco {
    padding: 1.5rem;
  }
}
