/* ══════════════════════════════════════════════════════
   开始你的旅程 CTA 模块  .journey(你的节律 从今天开始)
   子组件:__heading 标签 → __title 78px 双行渐变 → __sub 副文
          → __scan 扫码引导 → __qrs(三张二维码瓦片 + 渐隐竖线)
   二维码瓦片为手写玻璃卡(稿内 block_4 给了色值,不用切图);
   码图为占位,资源就绪后替换 __qr-code 背景;
   右侧"联系我们"卡片后续再做,不占位
   设计稿 1920:左栏 580 页面居中,瓦片 148,店标 24 图标 + 18px
   ══════════════════════════════════════════════════════ */

.journey {
  padding: 90px 24px 104px;
  text-align: center;
}

.journey__heading {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3.4px;
  line-height: 40px;
  color: #C5B8ED;
}
.journey__title {
  margin: 32px auto 0;
  width: fit-content;
  font-weight: 400;
  font-size: 78px;
  line-height: 100px;
  color: #FCEEFF; /* 渐变兜底色 */
  background-image: linear-gradient(90deg, #EEEEEE 0%, #D1A1FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.journey__sub {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
  line-height: 40px;
  color: #C5B8ED;
}
.journey__scan {
  margin-top: 86px;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  color: #C5B8ED;
}

/* ── 二维码区 ── */
.journey__qrs {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 42px;
}
.journey__qr-tile {
  width: 148px;
  height: 148px;
  padding: 11px;
  background: rgba(55, 56, 104, 0.5);
  border: 1px solid rgba(197, 184, 237, 0.22);
  border-radius: 14px;
}
.journey__qr-code {
  width: 124px;
  height: 124px;
  border-radius: 10px;
  background: rgba(197, 184, 237, 0.08); /* 二维码占位,资源就绪后换背景图 */
}
/* Android / Harmony 真码(400×400,白底静区已烘焙);App Store 仍占位 */
.journey__qr-code--android {
  background: #FFFFFF url('../../images/journey/qr-android.png') center / contain no-repeat;
}
.journey__qr-code--harmony {
  background: #FFFFFF url('../../images/journey/qr-harmony.png') center / contain no-repeat;
}
.journey__qr-divider {
  width: 1px;
  height: 102px;
  margin-top: 23px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0) 100%);
}
.journey__qr-store {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 18px;
  line-height: 24px;
  color: #C5B8ED;
}
.journey__qr-store img {
  width: 24px;
  height: 24px;
  display: block;
}

/* ── 响应式 ── */
@media (max-width: 960px) {
  .journey { padding: 100px 24px 100px; }
  .journey__title { font-size: clamp(2rem, 8vw, 78px); line-height: 1.4; }
  .journey__sub { font-size: 16px; line-height: 1.9; }
  .journey__scan { margin-top: 48px; }
}
