#journey {
  background: var(--white);
  justify-content: flex-start;
  padding: 0;
  gap: 0;
}

/* ── Header ── */
.journey-header {
  margin-top: 17%;
  text-align: center;
  width: min(86%, 560px);
}

.journey-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 11.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--black);
  white-space: nowrap;
}

.journey-sub {
  margin-top: clamp(8px, 1.6vw, 14px);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 4vw, 28px);
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: center;
}

/* ── Level cards ── */
.journey-list {
  margin-top: 27px;
  width: min(86%, 480px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vh, 22px);
}

.journey-card {
  position: relative;
  width: 100%;
  height: 82px;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  cursor: default;
  transition: transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  padding: 0 clamp(20px, 5vw, 32px);
  text-align: left;
}

.journey-card.is-active,
.journey-card.is-done {
  background: var(--black);
}

.journey-card.is-active { cursor: pointer; }

.journey-card.is-locked {
  background: #DDE3E2;
  cursor: not-allowed;
}

.journey-card .lvl-name {
  font-weight: 800;
  font-size: clamp(22px, 5.6vw, 36px);
  letter-spacing: 0.01em;
  line-height: 1;
}

.journey-card.is-active .lvl-name,
.journey-card.is-done   .lvl-name { color: var(--white); }
.journey-card.is-locked .lvl-name { color: var(--white); }

.journey-card .lvl-cta {
  margin-top: 6px;
  font-weight: 600;
  font-size: clamp(13px, 3.4vw, 18px);
  letter-spacing: 0;
  color: #878F8E;
}

.journey-card.is-locked .lvl-cta,
.journey-card.is-done   .lvl-cta { display: none; }

/* Yellow check badge (only shown on completed cards) */
.journey-card .lvl-check {
  position: absolute;
  right: clamp(20px, 5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(34px, 7.5vw, 48px);
  height: clamp(34px, 7.5vw, 48px);
  background: #EEFF41;
  border-radius: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.journey-card .lvl-check svg {
  width: 64%;
  height: 64%;
  display: block;
}
.journey-card.is-done .lvl-check { display: flex; }

.journey-card.is-active:active {
  transform: scale(0.98);
}

/* ── Brand ── */
.journey-brand {
  position: absolute;
  left: 50%;
  bottom: clamp(70px, 11vh, 130px);
  transform: translateX(-50%);
  width: clamp(110px, 28vw, 180px);
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* ── Intro animations ── */
#journey.active .journey-title  { animation: jTitleIn 0.7s cubic-bezier(0.2, 0.9, 0.25, 1.1) both; }
#journey.active .journey-sub    { animation: jSubIn 0.55s 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
#journey.active .journey-card   { animation: jCardIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
#journey.active .journey-card:nth-child(1) { animation-delay: 0.40s; }
#journey.active .journey-card:nth-child(2) { animation-delay: 0.52s; }
#journey.active .journey-card:nth-child(3) { animation-delay: 0.64s; }
#journey.active .journey-brand  { animation: jBrandIn 0.5s 0.85s cubic-bezier(0.4, 0, 0.2, 1) both; }

@keyframes jTitleIn {
  0%   { transform: translateY(-18px) scale(0.92); opacity: 0; letter-spacing: 0.02em; }
  60%  { transform: translateY(2px)   scale(1.02); opacity: 1; letter-spacing: -0.04em; }
  100% { transform: translateY(0)     scale(1);    opacity: 1; letter-spacing: -0.03em; }
}

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

@keyframes jCardIn {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

@keyframes jBrandIn {
  from { transform: translateX(-50%) translateY(8px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);   opacity: 1; }
}

/* ── Active level card — invites tap (loops after intro).
     No card scaling (keeps text crisp); we pulse a soft shadow + the CTA only. ── */
#journey.active .journey-card.is-active {
  animation:
    jCardIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.40s both,
    jActiveShadow 2.6s ease-in-out 1.10s infinite;
  will-change: box-shadow;
}

#journey.active .journey-card.is-active .lvl-cta {
  animation: jCtaPulse 1.6s ease-in-out 1.10s infinite;
  will-change: opacity;
}

@keyframes jActiveShadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0); }
  50%      { box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.35),
                         0 0 0 4px rgba(0, 0, 0, 0.06); }
}

@keyframes jCtaPulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1;    }
}

@media (prefers-reduced-motion: reduce) {
  #journey.active .journey-title,
  #journey.active .journey-sub,
  #journey.active .journey-card,
  #journey.active .journey-card.is-active,
  #journey.active .journey-card.is-active .lvl-cta,
  #journey.active .journey-brand { animation: none; }
}

/* ── Kiosk 1080×1920 ── */
@media (orientation: portrait) and (min-width: 1000px) and (min-height: 1700px) {
  .journey-header { margin-top: 305px; width: min(80%, 820px); }
  .journey-title  { font-size: clamp(120px, 11vw, 180px); }
  .journey-sub    { font-size: clamp(40px, 3.6vw, 56px); margin-top: 22px; }
  .journey-list   { width: min(80%, 820px); gap: 32px; margin-top: 72px; }
  .journey-card   { height: clamp(180px, 14vw, 240px); border-radius: 0; padding: 0 clamp(48px, 5vw, 72px); }
  .journey-card .lvl-name { font-size: clamp(54px, 4.8vw, 78px); }
  .journey-card .lvl-cta  { font-size: clamp(28px, 2.4vw, 38px); margin-top: 10px; }
  .journey-card .lvl-check { width: clamp(80px, 7.5vw, 110px); height: clamp(80px, 7.5vw, 110px); right: clamp(48px, 5vw, 72px); border-radius: 0; }
  .journey-brand  { width: clamp(220px, 22vw, 320px); bottom: 221px; }
}
