/* ════════════════════════════════════════
   JOURNEY SECTION
════════════════════════════════════════ */

/* Scroll-reveal animation, scoped to this section */
.journey-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.journey-reveal.journey-delay-1 { transition-delay: 0.1s; }
.journey-reveal.journey-delay-2 { transition-delay: 0.2s; }
.journey-reveal.journey-delay-3 { transition-delay: 0.3s; }
.journey-reveal.journey-in { opacity: 1; transform: none; }

/* Section-heading pattern, scoped to this section */
.journey-s-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 0.75rem;
}
.journey-s-bar { width: 30px; height: 2.5px; background: var(--red); border-radius: 2px; }
.journey-s-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.journey-s-headline {
  font-family: var(--f-display); font-size: clamp(36px, 4vw, 52px);
  font-weight: 800; line-height: 1.1; color: var(--navy-deep);
  margin-bottom: 1.25rem;
}
.journey-s-headline em { font-style: italic; color: var(--purple); }
.journey-s-body {
  font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink-mid);
  max-width: 560px;
}

.journey-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(232,62,49,0.35);
}
.journey-btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,62,49,0.45); }

.journey-wrap { background: var(--navy-deep); }

.journey-inner {
  padding: 7rem 4rem; max-width: 1200px; margin: 0 auto;
}

.journey-top { text-align: center; margin-bottom: 5rem; }
.journey-top .journey-s-label { justify-content: center; }
.journey-top .journey-s-headline { color: var(--white); margin: 0 auto 1rem; }
.journey-top .journey-s-body { color: rgba(255,255,255,0.6); margin: 0 auto; text-align: center; max-width: 620px; }

/* Runway timeline */
.journey-runway {
  position: relative;
  padding: 2rem 0 4rem;
}

/* Central runway line */
.journey-runway-road {
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  width: 3px; height: calc(100% - 80px);
  background: rgba(255,255,255,0.06);
}
.journey-runway-dashes {
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  width: 1px; height: calc(100% - 80px);
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.25) 0px, rgba(255,255,255,0.25) 24px,
    transparent 24px, transparent 48px
  );
}

/* Plane at top of runway */
.journey-runway-plane {
  text-align: center; font-size: 36px; margin-bottom: 2rem;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 24px rgba(232,62,49,0.6));
}

.journey-steps {
  display: flex; flex-direction: column; gap: 3rem;
  position: relative; z-index: 2;
}
.journey-step {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: start;
}
.journey-step:nth-child(even) .journey-step-card { grid-column: 3; }
.journey-step:nth-child(even) .journey-step-empty { grid-column: 1; grid-row: 1; }
.journey-step:nth-child(even) .journey-step-node { grid-column: 2; }

.journey-step-empty {}
.journey-step-node {
  display: flex; flex-direction: column; align-items: center; gap: 0; padding-top: 16px;
}
.journey-step-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 15px; font-weight: 800; color: var(--white);
  box-shadow: 0 0 0 6px rgba(232,62,49,0.2);
  z-index: 2;
}

.journey-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 1.75rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.journey-step-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(232,62,49,0.4); transform: translateY(-4px); }

.journey-step-phase {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.5rem;
}
.journey-step-title {
  font-family: var(--f-head); font-size: 22px; font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.75rem; letter-spacing: 0.04em;
}
.journey-step-body { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); }

.journey-cta { text-align: center; margin-top: 4rem; }
