/* AI职业优势测试 V1 — 全局样式
   方向：年轻 / 科技 / 可信。简洁双主色（靛蓝→紫），拒绝心理测试网站花哨风。 */

:root {
  --bg: #f5f6fa;
  --card: #ffffff;
  --ink: #171a2e;
  --ink-2: #5c6079;
  --ink-3: #9a9eb5;
  --line: #e8eaf2;
  --primary: #5457f0;
  --primary-2: #8b5cf6;
  --cyan: #35d0e8;
  --grad: linear-gradient(135deg, #5457f0 0%, #8b5cf6 100%);
  --grad-soft: linear-gradient(135deg, #eef0ff 0%, #f5efff 100%);
  --dark: #101226;
  --dark-2: #1b1e3d;
  --ok: #10b981;
  --warn: #f59e0b;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(23, 26, 46, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC",
    "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 0 20px calc(40px + env(safe-area-inset-bottom));
  position: relative;
}

/* ---------- 首页 ---------- */
.hero {
  padding: 76px 0 28px;
  text-align: left;
}
.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary);
  background: #eef0ff;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 600;
}
.hero h1 {
  margin-top: 18px;
  font-size: 34px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.hero h1 .hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16px;
}
.hero .sub b { color: var(--ink); }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 24px rgba(84, 87, 240, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn.ghost {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #dfe1ff;
  box-shadow: none;
}
.btn.plain {
  background: var(--grad-soft);
  color: var(--primary);
  box-shadow: none;
}
.btn[disabled] { opacity: 0.45; pointer-events: none; }
.btn-sm { padding: 11px 0; font-size: 15px; border-radius: 13px; }

.flow {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.flow .step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  box-shadow: var(--shadow);
}
.flow .num {
  width: 34px; height: 34px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--primary);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.flow .t { font-size: 14px; font-weight: 700; }
.flow .d { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

.trust {
  margin-top: 26px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trust .dot {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 7px;
  background: #e7f9f1;
  color: var(--ok);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-top: 2px;
}

.foot-note {
  margin-top: 26px;
  text-align: center;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.8;
}

/* ---------- 测试页 ---------- */
.test-top {
  padding: 26px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.test-top .cat {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 1px;
}
.test-top .count {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.test-top .count b { color: var(--primary); font-size: 18px; }

.bar {
  height: 8px;
  background: #e9ebf5;
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.q-card {
  margin-top: 26px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 22px 18px;
  box-shadow: var(--shadow);
}
.q-card .q-text {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  min-height: 60px;
}
.opts { margin-top: 20px; display: grid; gap: 12px; }
.opt {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--line);
  background: #fbfbfe;
  border-radius: 16px;
  padding: 15px 14px;
  font-size: 15.5px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.16s ease;
  color: var(--ink);
  font-family: inherit;
  text-align: left;
  width: 100%;
}
.opt .key {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 9px;
  background: #eef0ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.16s ease;
}
.opt:active { transform: scale(0.985); }
.opt.picked {
  border-color: var(--primary);
  background: #f4f4ff;
  box-shadow: 0 4px 14px rgba(84, 87, 240, 0.14);
}
.opt.picked .key { background: var(--grad); color: #fff; }

.test-nav {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}
.test-nav .btn { flex: 1; }

/* ---------- 生成中 ---------- */
.generating {
  padding-top: 90px;
  text-align: center;
}
.orb {
  width: 92px; height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--grad);
  position: relative;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(84, 87, 240, 0.35);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(84, 87, 240, 0.35); transform: scale(1); }
  70% { box-shadow: 0 0 0 26px rgba(84, 87, 240, 0); transform: scale(1.04); }
  100% { box-shadow: 0 0 0 0 rgba(84, 87, 240, 0); transform: scale(1); }
}
.generating h2 { margin-top: 30px; font-size: 22px; }
.generating p { margin-top: 8px; color: var(--ink-2); font-size: 14px; }
.gen-steps {
  margin: 26px auto 0;
  max-width: 280px;
  text-align: left;
  display: grid;
  gap: 10px;
}
.gen-step {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-3);
  font-size: 14px;
  transition: color 0.3s;
}
.gen-step .i {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  flex: 0 0 auto;
}
.gen-step.on { color: var(--ink); }
.gen-step.on .i { background: var(--grad); border-color: transparent; color: #fff; }
.gen-step.done { color: var(--ink-2); }
.gen-step.done .i { background: #e7f9f1; color: var(--ok); border-color: transparent; }

/* ---------- 结果页 ---------- */
.result-hero {
  margin: 24px -6px 0;
  border-radius: 26px;
  padding: 26px 22px 22px;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(139, 92, 246, 0.55) 0%, rgba(139, 92, 246, 0) 55%),
    radial-gradient(120% 110% at 0% 0%, rgba(53, 208, 232, 0.28) 0%, rgba(53, 208, 232, 0) 45%),
    var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.result-hero .label {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.65);
}
.result-hero .base {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
}
.result-hero .variant {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #c9d2ff;
}
.result-hero .tagline {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}
.result-hero .ai-badge {
  position: absolute;
  top: 18px; right: 16px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #dfe4ff;
  letter-spacing: 1px;
}
.result-hero .ai-badge.loading { animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.45; } }

.sec { margin-top: 26px; }
.sec-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.sec-title h3 { font-size: 18px; font-weight: 800; }
.sec-title span { font-size: 12px; color: var(--ink-3); }

.radar-wrap {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 12px 6px;
  display: flex;
  justify-content: center;
}
.dim-bars { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 6px 18px; }
.dim-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}
.dim-row:last-child { border-bottom: none; }
.dim-row .nm { flex: 0 0 74px; color: var(--ink-2); white-space: nowrap; }
.dim-row .nm b { color: var(--ink); }
.dim-row .track { flex: 1; height: 7px; background: #eef0f7; border-radius: 99px; overflow: hidden; }
.dim-row .track i {
  display: block; height: 100%;
  background: var(--grad);
  border-radius: 99px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.dim-row .sc { flex: 0 0 30px; text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(23, 26, 46, 0.04);
}

.career-list { display: grid; gap: 11px; }
.career {
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.career .rank {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--primary);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.career .info { flex: 1; min-width: 0; }
.career .nm { font-weight: 800; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.career .nm .cat { font-size: 11px; color: var(--ink-3); font-weight: 500; }
.career .why { font-size: 12.5px; color: var(--ink-2); margin-top: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.career .pct {
  flex: 0 0 auto;
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.career .pct small { display: block; font-size: 10px; color: var(--ink-3); font-weight: 500; }

.lock-card {
  border: 1.5px dashed #cdd0f5;
  background: #fbfbff;
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  color: var(--ink-2);
  font-size: 13.5px;
}
.lock-card b { color: var(--ink); }

.pay-cta {
  margin-top: 28px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
}
.pay-cta h3 { font-size: 19px; font-weight: 800; }
.pay-cta .desc { color: var(--ink-2); font-size: 13.5px; margin-top: 6px; }
.pay-plans { margin-top: 16px; display: grid; gap: 10px; }
.plan {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
  font-family: inherit;
  text-align: left;
  width: 100%;
}
.plan .radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #d5d8ea;
  flex: 0 0 auto;
  position: relative;
}
.plan .txt { flex: 1; }
.plan .txt b { font-size: 15.5px; }
.plan .txt span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.plan .price { font-weight: 900; font-size: 20px; color: var(--ink); }
.plan .price i { font-style: normal; font-size: 12px; font-weight: 600; }
.plan.hot { border-color: var(--primary); background: #f6f6ff; }
.plan.hot .radio { border-color: var(--primary); }
.plan.hot .radio::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--grad);
}
.plan .hot-tag {
  font-size: 10px; color: #fff;
  background: var(--grad);
  border-radius: 99px;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: 2px;
  font-weight: 700;
}
.pay-note { margin-top: 12px; font-size: 11.5px; color: var(--ink-3); text-align: center; }

.btn-row { display: grid; gap: 11px; margin-top: 14px; }

/* ---------- 报告页 ---------- */
.rep-sec {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-top: 16px;
}
.rep-sec h4 {
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.rep-sec h4::before {
  content: "";
  width: 4px; height: 16px;
  border-radius: 99px;
  background: var(--grad);
}
.rep-sec ul { list-style: none; display: grid; gap: 9px; }
.rep-sec li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.rep-sec li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c9c4f7;
}
.rep-sec li b { color: var(--ink); }
.rep-sec .phase {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0 4px;
}

/* ---------- 登录 / 支付页 ---------- */
.form-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-top: 20px;
}
.field { margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--ink-2); font-weight: 600; }
.field .input-row { display: flex; gap: 10px; margin-top: 7px; }
.field input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  font-size: 16px;
  font-family: inherit;
  background: #fbfbfe;
  color: var(--ink);
  outline: none;
  transition: border 0.15s;
  min-width: 0;
}
.field input:focus { border-color: var(--primary); background: #fff; }
.code-btn {
  flex: 0 0 auto;
  border: none;
  border-radius: 13px;
  background: var(--grad-soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
  font-family: inherit;
}
.code-btn[disabled] { color: var(--ink-3); }
.tip {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.7;
}
.tip.hl { color: var(--warn); }
.divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-3); font-size: 12px;
  margin: 18px 0 14px;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.wx-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  border-radius: 13px;
  padding: 13px 0;
  border: 1.5px solid var(--line);
  background: #fbfbfe;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.wx-note { text-align: center; font-size: 11.5px; color: var(--ink-3); margin-top: 10px; }

/* ---------- 弹层 ---------- */
.mask {
  position: fixed; inset: 0;
  background: rgba(12, 14, 30, 0.6);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadein 0.2s ease;
}
@keyframes fadein { from { opacity: 0; } }
.sheet {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 22px 20px calc(24px + env(safe-area-inset-bottom));
  animation: up 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 88vh;
  overflow-y: auto;
}
@keyframes up { from { transform: translateY(40px); opacity: 0.4; } }
.sheet .grab {
  width: 40px; height: 4px;
  background: var(--line);
  border-radius: 99px;
  margin: 0 auto 16px;
}
.sheet h3 { font-size: 18px; font-weight: 800; text-align: center; }
.sheet .sub { text-align: center; color: var(--ink-2); font-size: 13px; margin-top: 4px; }
.share-img {
  width: 100%;
  border-radius: 16px;
  margin-top: 16px;
  box-shadow: var(--shadow);
  display: block;
}

.toast {
  position: fixed;
  left: 50%; bottom: 12%;
  transform: translateX(-50%);
  background: rgba(23, 26, 46, 0.92);
  color: #fff;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 12px;
  z-index: 99;
  animation: fadein 0.2s;
  max-width: 80vw;
  text-align: center;
}

.loading-dots::after {
  content: "…";
  animation: dots 1.2s steps(4, end) infinite;
}
@keyframes dots {
  0% { content: ""; }
  25% { content: "·"; }
  50% { content: "··"; }
  75% { content: "···"; }
}

/* ---------- 传播版新增组件 ---------- */
.stat-line {
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: 1px;
}
.hero .sub.muted { color: var(--ink-3); }

.progress-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-3);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.progress-hint.final {
  color: var(--primary);
  font-weight: 700;
}

.result-hero .hookline {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  color: #ffffff;
}
.result-hero .tagline {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.explore-q {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.friend-banner {
  margin: 20px -6px 0;
  border-radius: 22px;
  padding: 20px 20px 16px;
  background: var(--grad-soft);
  border: 1.5px solid #dfe1ff;
  text-align: center;
}
.friend-banner .t1 { font-size: 13px; color: var(--ink-2); }
.friend-banner .t2 { font-size: 22px; font-weight: 900; margin: 6px 0 14px; }
.friend-banner .t3 { margin-top: 10px; font-size: 11.5px; color: var(--ink-3); }

.howto {
  margin-top: 24px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 15px 18px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
}
.howto summary {
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
}
.howto div { margin-top: 10px; }
.howto b { color: var(--ink); }

/* ---------- V2 展示层组件 ---------- */
.trust-mod {
  margin-top: 30px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 8px;
}
.trust-mod h2 { font-size: 19px; font-weight: 800; }
.trust-block { padding: 14px 0 16px; border-bottom: 1px dashed var(--line); }
.trust-block:last-child { border-bottom: none; }
.trust-block h3 {
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-block h3::before {
  content: "";
  width: 4px; height: 14px;
  border-radius: 99px;
  background: var(--grad);
}
.trust-block p { margin-top: 6px; font-size: 13.5px; color: var(--ink-2); line-height: 1.8; }
.dim-chips { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.dim-chips span {
  background: var(--grad-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
}

.result-hero .mode-line { margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.result-hero .mode-emoji { font-size: 44px; line-height: 1; }
.result-hero .mode-name { font-size: 34px; font-weight: 900; letter-spacing: 1px; }
.result-hero .hero-proof {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.result-hero .hero-proof b { color: #fff; }

.combo-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.combo-main { display: flex; align-items: center; gap: 14px; }
.combo-main .combo-emoji { font-size: 40px; line-height: 1; }
.combo-main b { display: block; font-size: 22px; font-weight: 900; }
.combo-main div span { font-size: 12px; color: var(--ink-3); }
.combo-assist { display: flex; gap: 10px; margin-top: 14px; }
.combo-a {
  flex: 1;
  text-align: center;
  background: var(--grad-soft);
  border-radius: 14px;
  padding: 10px 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-2);
}
.combo-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); text-align: center; }

.scene-row { display: flex; flex-wrap: wrap; gap: 9px; }
.scene-chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(23, 26, 46, 0.04);
}
.scene-chip::before { content: "◆ "; color: var(--primary); font-size: 10px; vertical-align: 2px; }


/* ---------- 职业行可点反馈 ---------- */
.career.tappable { cursor: pointer; transition: transform 0.12s ease, box-shadow 0.12s ease; }
.career.tappable:active { transform: scale(0.985); box-shadow: 0 6px 18px rgba(84,87,240,0.18); }
.career .right { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.career .chev { color: var(--primary); font-size: 16px; font-weight: 900; line-height: 1; }
.career.static { cursor: default; }
