/* =========================================================
   journey.css
   ========================================================= */

.journey {
  background: var(--panel);
  padding: 6rem 0;
}

.journey__head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.journey__title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin: 0 0 1rem;
}

.journey__lede {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.stages {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  counter-reset: stage;
}

.stage {
  flex: 1 1 250px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.stage:hover {
  border-color: rgba(214, 154, 62, 0.35);
  background: rgba(214, 154, 62, 0.03);
  transform: translateY(-2px);
}

.stage__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--think-bg);
  color: var(--think);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.stage__icon svg {
  width: 24px;
  height: 24px;
}

.stage__num {
  font-size: 0.85rem;
  color: var(--cream-dim);
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.stage__title {
  font-size: 1.35rem;
  color: var(--cream);
  margin: 0 0 0.5rem;
}

.stage__body {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
}
